v50

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-08-0342108400.9 KB
Customers

List payment instruments

Lists all payment instrument resources that are saved for an identified customer.

get/v0.1/customers/{customer_id}/payment-instruments

Response

Returns the list of saved payment instruments for the customer.

tokenstring

Unique token identifying the saved payment card for a customer.

activeboolean

Indicates whether the payment instrument is active and can be used for payments. To deactivate it, send a DELETE request to the resource endpoint.

type'card'

Type of the payment instrument.

created_atstring date-time

Creation date of payment instrument. Response format expressed according to ISO8601 code.

Example response

[
  {
    "token": "bcfc8e5f-3b47-4cb9-854b-3b7a4cce7be3",
    "active": true,
    "type": "card",
    "mandate": {
      "type": "recurrent",
      "status": "active",
      "merchant_code": "MH4H92C7"
    },
    "card": {
      "last_4_digits": "0001",
      "type": "VISA"
    },
    "created_at": "2021-03-30T10:06:07.000+00:00"
  }
]