v1

latestOpenAPI 3.0.12026-07-2679100267.2 KB
Online Checkout

List tokenized cards

Fetch list of merchant's tokenized cards

get/v1/checkout/tokenized-card-data

Query parameters

customerEmailstring

Merchant's email address

startDatestring

Start date, based on the date the token was created

endDatestring

end date, based on the date the token was created

pageinteger

Specifies the page number to start retriving data from. For first request, this can be ommited or set to 0

Headers

accountIdstring uuid required
Example:890022ce-bae0-45c1-9b9d-ee7872e6ca27

The parent accountId of the business.

Response

OK - your request was successful.

codestring

Response Code

descriptionstring

response description

Example response

{
  "code": "00",
  "description": "Success",
  "data": {
    "nextPage": "2",
    "tokenizedCardDataList": [
      {
        "tokenKey": "e890bd1a9f0d",
        "customerEmail": "email@email.com",
        "cardType": "Verve",
        "cardPan": "234818********7580",
        "tokenExpirationDate": "20/20"
      }
    ]
  }
}