Get info about advanced balance by its id
Last updated 1 year ago
Advance balance identifier
"3942b60c-5d49-4bb4-80b6-e88a7b6506eb"
Request success indicator
const response = await fetch('https://app.apollopayment.io/api-gateway/advanced-balance', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "advancedBalanceId": "3942b60c-5d49-4bb4-80b6-e88a7b6506eb" }), }); const data = await response.json();
{ "success": false, "response": { "advancedBalanceId": "3942b60c-5d49-4bb4-80b6-e88a7b6506eb", "currency": "USD", "blocked": false, "blockReason": null, "balance": "4711.33", "availableCurrenciesForDeposit": [ "USDT" ], "tariffs": [ { "id": "e2ec1fe4-4ce8-4eb3-b0c7-324a37bf1ad8", "action": "EXCHANGE_AUTO", "amount": "0.03", "type": "PERCENT", "minAmount": "0.1", "maxAmount": "3000", "invoiceAdditionalFee": false } ] } }