Skip to main content

SupportedPaymentOptionV2

Contains info for a supported payment option

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"]
    SupportedPaymentOptionV2
    {
    "name": "VISA",
    "paymentMethod": "CARD",
    "description": "Credit / Debit card",
    "limits": [
    {
    "value": [
    {
    "minAmount": 20,
    "maxAmount": 2000,
    "currency": "EUR"
    },
    {
    "minAmount": 39.11,
    "maxAmount": 3911.45,
    "currency": "BGN"
    }
    ]
    }
    ],
    "sourceCurrencies": [
    "BGN",
    "EUR"
    ]
    }