SupportedCountriesResponseV2
countries object[]
Contains the supported countries along with their corresponding payment options
Array [
codestring
ISO-3 Alpha Code
Example:
BGRalpha2Codestring
ISO-2 Alpha Code
Example:
BGnamestring
The name of the country
Example:
BulgariapaymentOptions object[]
List of supported payment options for a country
Array [
namestring
Name of the supported payment option
Example:
VISApaymentMethodPaymentMethod (string)
The payment method used by the customer
Possible values: [CARD, BALANCE]
Example:
CARDdescriptionstring
Description of the payment option
Example:
Credit / Debit cardlimits object[]
Min and max limits for the supported payment option
Array [
currencystring
The currency of the limit amounts
Example:
EURminAmountnumber
The minimum amount required for the payment
Example:
20maxAmountnumber
The maximum amount allowed for the payment
Example:
1000]
sourceCurrenciesstring[]
List of supported source currencies for a country
Example:
["BGN","EUR"]]
]
SupportedCountriesResponseV2
{
"countries": [
{
"code": "BGR",
"alpha2Code": "BG",
"name": "Bulgaria",
"paymentOptions": [
{
"name": "MASTERCARD",
"paymentMethod": "CARD",
"description": "Credit / Debit card",
"limits": [
{
"minAmount": 20,
"maxAmount": 2000,
"currency": "EUR"
}
],
"sourceCurrencies": [
"EUR",
"BGN"
]
}
]
},
{
"code": "AUT",
"alpha2Code": "AT",
"name": "Austria",
"paymentOptions": [
{
"name": "VISA",
"paymentMethod": "CARD",
"description": "Credit / Debit card",
"limits": [
{
"minAmount": 20,
"maxAmount": 20000,
"currency": "EUR"
}
],
"sourceCurrencies": [
"EUR",
"BGN"
]
}
]
}
]
}