Returns information about payment methods
GET
/v3/terminalsReturns information about all available payment channels on particular terminal, such as: name, min. amount, max amount, currency, logo, country etc. It is possible to fetch one channel only, specific channels or all payment channels (including those for which the Merchant does not have a signed agreement).
Request
Type of transaction. TRT_AUTH is used for recurring.
Amount
Currency
Authorization currency
country code from dictionary CTR_COUNTRY_CODE
PaymentMethod
PaymentChannel
sort type, Currently only rank
Get all paywall methods even if merchant did not enabled them
Direction of order
Limit of results
offset of results
A unique identifier generated by requesting client
A customer identifier
A customer identifier from merchant system
A customer IP Addres for feature use
Request samples
Responses
Payment method name from dictionary PME_PAYMENT_METHOD
Payment method logo URL. Option 3 from PME_PAYMENT_METHOD
Customer country code from dictionary CTR_COUNTRY_CODE
{
"meta": {
"limit": 10,
"offset": 0,
"direction": "desc",
"hasMore": false,
"currencies": [
"PLN"
]
},
"data": [
{
"paymentMethod": "PME_CARD",
"methodLogoUrl": "string",
"customerCountry": "PL",
"paymentChannels": [
{
"paymentChannel": "PCL_CARD",
"currencies": [
"PLN",
"EUR",
"USD",
"GBP"
],
"cryptoCurrencies": [
{
"walletCurrency": "BTC",
"currencyName": "Bitcoin",
"currencyCode": "BTC_LIGHTNING",
"network": "Lightning Network",
"networkLogoUrl": "https://www.zen.com/hubfs/Assets/Top-up/Lightning%20Network.png",
"networkCode": "LIGHTNING",
"minAmount": "12.03",
"maxAmount": "123.04"
}
],
"cardOrganizations": [
{
"organization": "COR_VISA",
"logoUrl": "string"
}
],
"channelLogoUrl": "string",
"lastUsed": true,
"hasAuthorizationFee": true,
"hasCashback": true
}
]
}
]
}