Get Card Filters
GET/api/v2/cards/filters
Retrieve details for a bank card based on the provided card ID.
Request
Responses
- 200
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
- Array [
- MOD1
- MOD2
- ]
statuses BankCardStatus[]required
Possible values: [ACTIVE, FROZEN, BLOCKED]
List of card statuses.
bins object[]required
List of client bins.
code Coderequired
BIN code
countryCode Countrycoderequired
ISO country code
currencyCode Currencycoderequired
ISO currency code
provider object
An enumeration.
billingAddress Billingaddressrequired
Billing address of the bank card.
paymentServices PaymentService[]
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.
merchants string[]
purposes BinPurposeEnum[]
Possible values: [CARDS_VIRTUAL, SHARED_BALANCE_VIRTUAL_CARDS]
fees objectrequired
issue objectrequired
feeAmount Feeamountrequired
unit Unitrequired
authorization object[]
minAmount Minamountrequired
maxAmount Maxamount
feeAmount Feeamountrequired
unit Unit
Default value: USD
decline objectrequired
feeAmount Feeamountrequired
unit Unitrequired
zeroAuth objectrequired
feeAmount Feeamountrequired
unit Unitrequired
users object[]required
List of users.
id object required
Id of the card holder.
anyOf
string
string
nickname Nicknamerequired
Nickname or alias of the card holder.
email Emailrequired
Email of the card holder.
{
"statuses": [
"ACTIVE"
],
"bins": [
{
"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"
}
}
}
],
"users": [
{
"id": "string",
"nickname": "string",
"email": "string"
}
]
}
Loading...