Skip to main content
GET
/
customers
/
{uuid}
/
cards
List customer cards
curl --request GET \
  --url https://api.truust.io/2.0/customers/{uuid}/cards \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "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

Customer UUID.

Response

200 - application/json

List of tokenized cards

data
object[]