Skip to main content
GET
/
cards
/
{uuid}
Get card
curl --request GET \
  --url https://api.truust.io/2.0/cards/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "self": "<string>",
  "uuid": "<string>",
  "type": "<string>",
  "cardholder": "<string>",
  "alias": "<string>",
  "expiration": "12/26",
  "issuing_country": "<string>",
  "issuing_bank": "<string>",
  "is_3d_secure": true,
  "confirmed": true,
  "payin_type": "<string>",
  "tokenization_link": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "connections": {}
}

Authorizations

Authorization
string
header
required

Use your account's Secret Key as the Bearer token.

Path Parameters

uuid
string
required

Response

Card details

id
integer
self
string
uuid
string
type
string | null

Card brand (e.g. VISA, MASTERCARD).

cardholder
string | null
alias
string | null

Masked card number alias (e.g. 4242XXXXXXXX4242).

expiration
string | null
Example:

"12/26"

issuing_country
string | null
issuing_bank
string | null
is_3d_secure
boolean | null
confirmed
boolean

Whether the card has been successfully tokenized and confirmed.

payin_type
string | null

Payment type this card is associated with.

URL to complete card tokenization. Only present immediately after creation.

created_at
string<date-time> | null
connections
object

Hypermedia links to related resources.