Get Card Details
GET/api/v2/cards/:id
Retrieve details for a bank card based on the provided card ID.
Request
Path Parameters
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
- MOD1
- MOD2
- Array [
- ]
- MOD1
- MOD2
Possible values: [ACTIVE, FROZEN, BLOCKED]
An enumeration.
limits object
single object
The limit amount.
daily object
The limit amount.
monthly object
The limit amount.
autoTopUp object
The balance threshold to trigger an automatic top-up.
The amount to be automatically topped up when the threshold is reached.
id object required
string
string
bin objectrequired
BIN code
ISO country code
ISO currency code
An enumeration.
Billing address of the bank card.
Possible values: [APPLE_PAY, GOOGLE_PAY, SAMSUNG_PAY]
List of supported tokenized payment services. If the list is empty, the BIN doesn't support tokenization.
Possible values: [CARDS_VIRTUAL, SHARED_BALANCE_VIRTUAL_CARDS]
fees objectrequired
issue objectrequired
authorization object[]
Default value: USD
decline objectrequired
zeroAuth objectrequired
balance object
user objectrequired
id object required
Id of the card holder.
string
string
Nickname or alias of the card holder.
Email of the card holder.
{
"status": "ACTIVE",
"cardName": "string",
"limits": {
"single": {
"amount": 1000
},
"daily": {
"amount": 1000
},
"monthly": {
"amount": 1000
}
},
"autoTopUp": {
"thresholdAmount": 1000,
"topUpAmount": 1000
},
"isFavorite": true,
"wallet_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"id": "string",
"maskedPan": "string",
"bin": {
"code": "string",
"countryCode": "string",
"currencyCode": "string",
"billingAddress": "string",
"paymentServices": [
"APPLE_PAY"
],
"merchants": [
"string"
],
"purposes": [
"CARDS_VIRTUAL"
],
"fees": {
"issue": {
"feeAmount": 0,
"unit": "string"
},
"authorization": [
{
"minAmount": 0,
"maxAmount": 0,
"feeAmount": 0,
"unit": "USD"
}
],
"decline": {
"feeAmount": 0,
"unit": "string"
},
"zeroAuth": {
"feeAmount": 0,
"unit": "string"
}
}
},
"createdAt": "2024-05-09T10:22:47.717Z",
"balance": {
"available": 0,
"spent": 0,
"pending": 0
},
"user": {
"id": "string",
"nickname": "string",
"email": "string"
}
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- MOD1
- MOD2
- ]
- ]
detail object[]
loc object[]required
string
integer
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}