v1

latestOpenAPI 3.0.22026-07-26123510445.2 KB
Card Secure Data

Retrieve Sensitive Card Details

Retrieves the secure information for a specific card identified by card_id. This information includes details such as expire_date and cvv.

Note: This endpoint is exclusively available to organizations that hold a valid PCI DSS certification. If your organization is not PCI-certified, please use the Secure iFrame integration to retrieve sensitive card information.

get/v1/issuing/cards/{id}/secure

Path parameters

idstring uuid required
Example:b3d9d2d5-4c12-4946-a09d-953e82sed2b0

Universally unique identifier (UUID v4) of a resource.

Headers

x-on-behalf-ofstring

Specifies the sub-account on whose behalf the request is made. This should be set to the account_id, which can be retrieved via the List Connected Accounts API. If omitted or empty, the request is executed using the master account. More information at Connected Accounts.

Response

OK - Successfully retrieved a card.

cvvstring required

Card Verification Value, 3-digit CVV for the card.

expire_datestring required

The expiry date of the card in MM/YY format.

card_numberstring required

Primary Account Number, 16 digit card number

Example response

{
  "cvv": "268",
  "expire_date": "08/27",
  "card_number": "4937240100009999"
}