Get info about advanced balance by its id
Last updated 1 year ago
Advance balance identifier
"f9565f73-eb15-4246-9954-169eeb9475fc"
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": "f9565f73-eb15-4246-9954-169eeb9475fc" }), }); const data = await response.json();
{ "success": false, "response": { "advancedBalanceId": "f9565f73-eb15-4246-9954-169eeb9475fc", "currency": "USD", "blocked": false, "blockReason": null, "balance": "4711.33", "availableCurrenciesForDeposit": [ "USDT" ], "tariffs": [ { "id": "64eee155-2494-4477-b323-7fb1df649a01", "action": "EXCHANGE_AUTO", "amount": "0.03", "type": "PERCENT", "minAmount": "0.1", "maxAmount": "3000", "invoiceAdditionalFee": false } ] } }