List all credit cards

Returns a list of credit cards. The credit cards are returned sorted by creation date in ascending order.

GET/v3/billing/payment-methods/cards
JWT
paymentMethod:read

Parameters

NameTypeInDescription
pageintegerqueryThe page number.
limitintegerqueryThe number of records per page. Must be a number between 1 and 100.
sortstringqueryThe sort string to sort the returned records e.g. "-createdAt"

Responses

200 OK
[
  {
    "id": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z",
    "brand": "string",
    "last4": "string",
    "addressZip": "string",
    "expirationYear": 0,
    "expirationMonth": 0,
    "updateUrl": "string",
    "cardholderName": "string"
  }
]