v1

latestOpenAPI 3.0.22026-07-26128245430.3 KB
Cards

Get all card accounts

Retrieve all card accounts for a customer. Currently, only one account is supported. An empty array will be returned if no card has been provisioned

get/customers/{customerID}/card_accounts

Path parameters

customerIDstring required

A UUID that uniquely identifies a resource

Response

List of all card accounts owned by the customer

countinteger required

The number of card accounts returned

Example response

{
  "data": [
    {
      "card_details": {
        "last_4": "1264",
        "expiry": "10/24",
        "bin": "44325280"
      }
    }
  ]
}