v1

latestOpenAPI 3.1.02026-07-242325051.4 MB
Tokens

Token:Transactions

Get all transactions for a specific token

get/tokenization/{tokenCode}/transactions

Path parameters

tokenCodestring required
Example:VY-4835-6195-0120

Token code to retrieve transactions for

Response

Ok.

totalinteger
countinteger
pagesinteger

Example response

{
  "total": 1,
  "count": 1,
  "pages": 1,
  "transactions": [
    {
      "code": "VT-1235-5432-1758",
      "transactionCode": "1234567890X1234",
      "type": "recurring",
      "amount": {
        "value": 12,
        "currency": "EUR"
      },
      "consumer": {
        "email": "sandbox@pay.nl",
        "reference": "reference",
        "ipAddress": "192.168.1.1",
        "countryCode": "NL"
      },
      "createdAt": "2023-11-22T00:00:00+00:00"
    }
  ],
  "_links": [
    {
      "href": "/tokenization/tokens",
      "rel": "self",
      "type": "GET"
    }
  ]
}