Get Tariff Details
GET/api/v2/tariff
Returns tariff information, specific to the current user
Request
Responses
- 200
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
name Namerequired
Name of the tariff
rates objectrequired
virtual_cards objectrequired
bins object[]required
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
api objectrequired
call objectrequired
feeAmount Feeamountrequired
unit Unitrequired
wallet objectrequired
topUp objectrequired
wire objectrequired
feeAmount Feeamountrequired
unit Unitrequired
crypto objectrequired
feeAmount Feeamountrequired
unit Unitrequired
sepa objectrequired
feeAmount Feeamountrequired
unit Unitrequired
{
"name": "string",
"rates": {
"virtual_cards": {
"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"
}
}
}
]
},
"api": {
"call": {
"feeAmount": 0,
"unit": "string"
}
},
"wallet": {
"topUp": {
"wire": {
"feeAmount": 0,
"unit": "string"
},
"crypto": {
"feeAmount": 0,
"unit": "string"
},
"sepa": {
"feeAmount": 0,
"unit": "string"
}
}
}
}
}
Loading...