v1

latestOpenAPI 3.1.02026-07-241210356.3 KB
Tokens

List

This endpoint returns a list of tokens for a specific terminal.

post/Token/List

Headers

api-keystring required

API Key

secret-keystring required

Secret Key

Request body

terminal_uidstring required

Terminal unique identifier

customer_uidstring

Filter by customer unique identifier. If provided, the endpoint will return only tokens associated with this customer.

skipstring

Optional, from where you want to start take records.

takestring

Optional, required if skip have some value. Max 500. This means that you want take 5 records.

Example request

{
  "skip": "0",
  "take": "5"
}

Response

200

Example response

{
  "results": {
    "status": "success",
    "description": "cards list"
  },
  "data": [
    {
      "card_date_mmyy": "0424",
      "last_4_digits": "1234",
      "token": "78623420-706e-46a0-bb2b-95c5605325051812",
      "customer_uid": "03a5734e-668a-444f-beef-a9376d4d922e"
    }
  ]
}