Ask something in the search bar to get a quick answer from our AI model

Tokenized cards by users (and optional merchant)

Obtains all tokenized cards (tokens) by an user and a merchant

GET {BASE_URL}/token/get-tokens

Headers

Name
Value

Content-Type

application/json

X-Api-Key

API Key <xxx>


Sample URL (Including optional fields)

{BASE_URL}/token/get-tokens?userId=userExample&merchantId=123456789&paginationToken=eyJvcGVyYXRpb25UeXBlU3RhdHVzUmVxdWVzdERhdGUiOiJTOlRPS0VOI1ZBTElEIzIwMjUtMDUtMjBUMTg6NTM6MDMuMDI2MjY4NDgyafwRIjoiUzo5ODtNTY2NzViN2YtMzA1ZS00ZTFmLWIzMWYtYjgzMzZlZjM3MjZlIiwiUEsiOiJTOjk4MDAwMjM3Mi0yNSJ9

Query Params

Type
Name
Description
Conditions

string

userId

Unique user identifier

Required

string

merchantId

Unique merchant identifier

Optional

string

paginationToken

Pagination token to continue querying on next page

Optional

Response

{
	"items": [
		{
			"id": "980000012-25-f63113b3-cd31-4d08-88e0-2ad15d51b9f7",
			"userId": "user2",
			"merchantId": "980000012",
			"processor": "GPS_PROCESADOR_CKB",
			"expirationDate": "2025-12-31T18:31:16.936Z",
			"token": "123456789658165678",
			"tokenType": "RECURRENT_PAYMENT",
			"validToken": false
		},
		{
			"id": "980000012-25-f5529a98-660a-41aa-8dda-3b39d7990e65",
			"userId": "user2",
			"merchantId": "980000012",
			"processor": "GPS_PROCESADOR_CKB",
			"expirationDate": "2025-12-31T18:31:16.936Z",
			"token": "123456789658165678",
			"tokenType": "RECURRENT_PAYMENT",
			"validToken": false
		}
	],
	"paginationToken": null,
	"paginationSize": 50,
	"totalItems": 2
}

Last updated