v47

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-012382333.4 MB

Retrieve a Card Token

get/card_tokens/{card_token_id}

Path parameters

card_token_idstring required

The identifier of the Card Token.

Response

Card Token

created_atstring date-time required

The ISO 8601 date and time at which the card token was created.

expiration_datestring date required

The ISO 8601 date when the card expires.

idstring required

The Card Token's identifier.

last4string required

The last 4 digits of the card number.

lengthinteger required

The length of the card number.

prefixstring required

The prefix of the card number, usually 8 digits.

type'card_token' required

A constant representing the object's type. For this resource it will always be card_token.

Example response

{
  "created_at": "2020-01-31T23:59:59Z",
  "expiration_date": "2020-01-31",
  "id": "outbound_card_token_zlt0ml6youq3q7vcdlg0",
  "last4": "1234",
  "length": 16,
  "prefix": "46637100",
  "type": "card_token"
}