Retrieve card
| Time | Status | User Agent | |
|---|---|---|---|
| Make a request to see history. |
URL Expired
The URL for this request expired after 30 days.
cardId
uuid
required
accept
string
enum
Defaults to application/hal+json
Generated from available response content types
application/hal+jsonapplication/problem+json
Allowed:
application/hal+json``application/problem+json
`200 Successful operation
object
_links
object
required
self
object
required
self object
cardholder
object
cardholder object
id
uuid
required
The unique identifier of this card entity.
subaccountId
uuid
required
The unique identifier of the subaccount related to this entity.
expiryMonth
integer
required
1 to 12
The month that the card will expire in MM format.
expiryYear
integer
required
The year that the card will expire in YYYY format.
first6digits
string | null
The first 6 digits of the card number (PAN). Nullable for bank-derived cards
(created from a bank connection, where the full PAN is never seen) — populated when
known (e.g. the SDK captured the BIN before pivoting to the bank flow) and attached
when the card is later PAN-enrolled (upgrade-in-place keeps the same card id).
last4digits
string
required
The last 4 digits of the card number (PAN).
network
string | null
enum
The card network that processes payments for this card. amex and null occur only
on bank-derived cards: Amex-institution connections mint amex; other institutions
cannot reveal the network from bank data, so it stays null until the card is
PAN-enrolled (upgrade-in-place).
visa``mastercard``amex
country
string
enum
required
The country of issuance for this card following ISO 3166 alpha-3.
USA``CAN``GBR``SWE``ITA``AUS``NZL``PRT``BEL
createdAt
date-time
required
Date and time when this resource was created, in UTC, following ISO 8601 format.
updatedAt
date-time
required
Date and time when this resource was last updated, in UTC, following ISO 8601 format.
`400 The server cannot or will not process the request due to something that is perceived to be a client error
`401 Authentication credentials were either missing or incorrect
`403 Authentication credentials used do not have permissions to perform the request
`404 The requested resource was not found on the server
`500 The server encountered an unexpected condition that prevented it from fulfilling the request
{
"_links": {
"self": {
"href": "/cards/f744b691-bf05-4f2a-ab89-bb1afe4eb840"
}
},
"id": "f744b691-bf05-4f2a-ab89-bb1afe4eb840",
"expiryMonth": 11,
"expiryYear": 2028,
"network": "mastercard",
"country": "USA",
"createdAt": "2024-02-04T18:41:16.142Z",
"updatedAt": "2024-02-04T18:41:16.142Z",
"first6digits": "434343",
"last4digits": "4343",
"subaccountId": "da6649a8-f0ea-4af0-b342-c0b5c3e024dd"
}