v1
latestOpenAPI 3.1.02026-07-242325051.4 MBTokens
Token:Browse
Get all vault tokens for the authenticated merchant
get/tokenization/tokens
Query parameters
A unique identifier for a tokenized record.
{
"eq": "VY-1234-1234-1234",
"neq": "VY-1234-1234-1234"
}The date at which this entity was created presented in the correct ISO-8601 (a.k.a. ATOM) notation.
{
"eq": "1999-02-15",
"neq": "1999-02-15",
"gt": "1999-02-15",
"gte": "1999-02-15",
"lt": "1999-02-15",
"lte": "1999-02-15"
}The date at which the token was last used.
{
"eq": "1999-02-15",
"neq": "1999-02-15",
"gt": "1999-02-15",
"gte": "1999-02-15",
"lt": "1999-02-15",
"lte": "1999-02-15"
}The name of the customer that started the transaction.
{
"eq": "John Doe",
"neq": "John Doe",
"like": "John Doe",
"nlike": "John Doe"
}The code of the merchant for which the transaction was started.
{
"eq": "M-####-####",
"neq": "M-####-####"
}Response
Ok.
Example response
{
"total": 5,
"count": 5,
"pages": 1,
"tokens": [
{
"code": "VY-1234-1234-1234",
"token": "97f32429bb6828b98023e38d6498d76a9386d",
"numberOfTransactions": 12,
"payer": {
"consumerName": "John Doe",
"maskedPAN": "54594*****95969",
"customerKey": "abdcdk9394952dkf"
},
"expiryDate": "2029-09-05",
"paymentMethod": {
"id": 10,
"name": "Visa Mastercard"
},
"merchant": {
"code": "M-1234-1234",
"name": "Great Cookies Inc.",
"status": "ACTIVE"
},
"lastUsedAt": "2023-11-22T00:00:00+00:00",
"createdAt": "2023-11-22T00:00:00+00:00",
"createdBy": "AT-1234-1234"
}
],
"_links": [
{
"href": "/tokenization",
"rel": "self",
"type": "GET"
}
]
}