List all credit cards registered on this platform

You may have one or multiple credit cards registered on your platform. Use the following endpoint to list all credit cards that are registered on your platform:

EndpointDescription
GET {URI}/creditCardsList all credit cards registered on this Platform.

The following parameters ( 🚧 coming soon) are used with this endpoint. Use paginate below for better payload management:

Query ParamsData typeDescription
paginate booleanWhether to paginate the results or not.
-true: paginate the results.
-false: not to paginate the results. False is the default.
prevCursor stringThe cursor to use for the previous page of results. This will be ignored if paginate is false.
nextCursorstringThe cursor to use for the next page of results. This will be ignored if paginate is false.
maxResults int32The maximum number of results to return. The default is 10, and the maximum is 200. This will be ignored if paginate is false.
showInactivestringShow inactive cards (true or false).
accountNumberstringSpecify the account number to be queried.
accountIdentifierstringGet cards associated with a specific account
customerIdentifierstringSpecify the customer identifier to be queried.
tokenstringCredit card token to be queried.
expirationDatestringSpecify the expiration date of the credit card to be queried.
statusstringGet cards with specific status. When set, this option will override the showInactive parameter. Show the status as active or inactive.
emailAddressstringSpecify the contact email address to be queried.
fullNamestringContact person's full name to be queried.
labelstringLabel for the credit card to be queried.
lastFourDigitsstringThe last four digits of the credit card to be queried.

The following example shows the response using this endpoint:

[
  {
  "prevCursor": null,
  "nextCursor": null,
  "prevPageAvailable": false,
  "nextPageAvailable": false,
  "maxResults": 10,
  {
    "customerIdentifier": "string",
    "accountIdentifier": "string",
    "token": "string",
    "label": "string",
    "lastFourDigits": "string",
    "expirationDate": "string",
    "status": "string",
    "createdDate": "2024-02-09T04:41:08.735Z",
    "activationDate": "2024-02-09T04:41:08.735Z",
    "contactInformation": [
      {
        "fullName": "string",
        "emailAddress": "string"
      }
    ],
    "accountNumber": "string"
  }
]

The possible response codes for this endpoint are:

  • 200 OK
  • 400 Bad request
  • 401 Unauthorized
  • 403 Forbidden

Rewards as a Service™ and the RaaS® API are provided by Tango Card, Inc. © 2024 Tango Card, Inc.