Skip to main content
POST
https://checkout.dintero.com/v1
/
admin
/
terminals
/
operations
admin_terminals_operations_post
curl --request POST \
  --url https://checkout.dintero.com/v1/admin/terminals/operations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "parameters": {
    "operator_id": "<string>"
  }
}
'
{
  "parameters": {
    "operator_id": "<string>"
  },
  "result": {
    "outcome": "accepted",
    "batch_id": "<string>",
    "start_of_day_at": "2023-11-07T05:31:56Z",
    "last_end_of_day_at": "2023-11-07T05:31:56Z",
    "purchases_count": 123,
    "purchases_amount": 123,
    "reversals_count": 123,
    "reversals_amount": 123,
    "sale_amount": 123,
    "tip_amount": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.dintero.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication (token authentication) should be used for accessing the API.

Use Get Token to get an access token for client credentials. Pass the token in the request header:

Authorization: Bearer {access_token}

where the access_token is JSON Web Tokens (JWT).

Headers

Idempotency-Key
string<uuid>

Optional idempotency key to ensure the operation is only executed once.

Body

application/json
parameters
object

Response

Terminal operation created

Terminal operation. The shape depends on the operation field.

parameters
object

Parameters of the operation.

result
object

Present when status is COMPLETED.

Last modified on May 12, 2026