Skip to main content

SupportedCountryV2

Contains information for a supported country

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"]
  • ]
  • SupportedCountryV2
    {
    "code": "BGR",
    "alpha2Code": "BG",
    "name": "Bulgaria",
    "paymentOptions": [
    {
    "name": "VISA"
    },
    {
    "paymentMethod": "CARD"
    },
    {
    "description": "Credit / Debit card",
    "limits": [
    {
    "minAmount": 20,
    "maxAmount": 2000,
    "currency": "EUR"
    }
    ]
    }
    ]
    }