Estaci.one Integration API
  1. Ticket
Estaci.one Integration API
  • Fluxo de uso da API de Integração
  • OAuth
    • Recuperar token
      POST
  • Ticket
    • Emissão de ticket
      POST
    • Parse QrCode
      POST
    • Validação do ticket para uma loja
      POST
    • Adicionar transação ao ticket
      POST
  • Schemas
    • Money
    • Vehicle Details
    • Ticket Details
    • Provider Basic
    • Totem Basic
    • Transaction Details
    • 422
    • 400
  1. Ticket

Adicionar transação ao ticket

POST
/v1/tickets/{ticketNumber}/transactions
Adiciona uma transação ao ticket.

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Path Params

Header Params

Body Params application/json

Example
{
    "amount": 1000,
    "type": "payment",
    "method": "credit-card",
    "reference": "7618627AJKQ"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://partner-api.staging.estaci.one/v1/tickets//transactions' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "amount": 1000,
    "type": "payment",
    "method": "credit-card",
    "reference": "7618627AJKQ"
}'

Responses

🟠401Unauthorized
application/json
Body

Example
{"code":"unauthenticated","message":"Unauthenticated."}
🟠400Bad Request
🟢200Success
🟠422Parameter Error
Modified at 2025-07-07 20:38:41
Previous
Validação do ticket para uma loja
Next
Money
Built with