Get Card List
POST/api/v2/cards/list
Get Card List
Request
- application/json
Body
required
- Array [
- MOD1
- MOD2
- ]
- Array [
- MOD1
- MOD2
- ]
Default value: 10
Maximum number of records to return.
The offset from where to start fetching cards.
filters object
Filter criteria for selecting wallets.
Free text search filter by wallet name or code.
userIds object[]
string
string
Possible values: [ACTIVE, FROZEN, BLOCKED]
Default value: 1970-01-01T00:00:00Z
Filter by the starting date (inclusive), filter is applied to createdAt field (Card scheme).
Default value: 2024-05-06T06:27:47Z
Filter by the ending date (inclusive), filter is applied to createdAt field (Card scheme).
walletIds object[]
string
string
Possible values: [CARDS_VIRTUAL, SHARED_BALANCE_VIRTUAL_CARDS]
Possible values: [BALANCE, SPENT, CARD_NAME, BIN_CODE, USER_NICKNAME, CREATED_AT]
Possible values: [ASC, DESC]
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- MOD1
- MOD2
- Array [
- ]
- MOD1
- MOD2
- ]
items object[]required
Array of cards objects.
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.
Total number of cards corresponding to the filters.
{
"items": [
{
"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.714Z",
"balance": {
"available": 0,
"spent": 0,
"pending": 0
},
"user": {
"id": "string",
"nickname": "string",
"email": "string"
}
}
],
"totalCount": 0
}
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"
}
]
}