🔢Payment Methods
Each available operation (Deposit, Withdrawal), currency, method, blockchain(for crypto) is represented as separate payment method It is recommended to fetch available payment methods first to ensure availability, limits, fees and required/optional fields
Example API Response
[
{
"blockchain": "BITCOIN",
"currency": "BTC",
"fixed": 0.0001,
"hasNetworkFee": true,
"id": "PMD-2eb51bd4-6117-437b-b933-502538a9662a",
"maxLimit": 10,
"methodKey": "CRYPTOCOIN",
"minFeeAmount": 1,
"minFeeCurrency": "EUR",
"minLimit": 0.0001,
"name": "bitcoin payin",
"orderType": "PAYIN",
"percent": 0.1,
"productType": "PAYMENT",
"properties": {
"optional": [
"email"
],
"required": [
"firstName",
"lastName"
]
},
"scale": 6,
"verificationLevel": 3
}
]
Last updated