Skip to main content

SupportedCountriesResponseV2

countries object[]

Contains the supported countries along with their corresponding payment options

  • Array [
  • codestring

    ISO-3 Alpha Code

    Example: BGR
    alpha2Codestring

    ISO-2 Alpha Code

    Example: BG
    namestring

    The name of the country

    Example: Bulgaria
    paymentOptions object[]

    List of supported payment options for a country

  • Array [
  • namestring

    Name of the supported payment option

    Example: VISA
    paymentMethodPaymentMethod (string)

    The payment method used by the customer

    Possible values: [CARD, BALANCE]

    Example: CARD
    descriptionstring

    Description of the payment option

    Example: Credit / Debit card
    limits object[]

    Min and max limits for the supported payment option

  • Array [
  • currencystring

    The currency of the limit amounts

    Example: EUR
    minAmountnumber

    The minimum amount required for the payment

    Example: 20
    maxAmountnumber

    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"
    ]
    }
    ]
    }
    ]
    }