Get list of advanced balances of user
Last updated 11 months ago
Request success indicator
Response body when requesting a list of advance balances
const response = await fetch('https://app.apollopayment.io/api-gateway/advanced-balances', { method: 'POST', headers: { "Content-Type": "application/json" }, }); const data = await response.json();
{ "success": false, "response": [ { "advancedBalanceId": "0535cf62-7de6-460b-a0ad-45ac93dfa915", "currency": "USD", "blocked": false, "blockReason": null, "balance": "4711.33", "availableCurrenciesForDeposit": [ "USDT" ], "tariffs": [ { "id": "bda69862-e6fb-4941-82aa-8fdea7ae2022", "action": "EXCHANGE_AUTO", "amount": "0.03", "type": "PERCENT", "minAmount": "0.1", "maxAmount": "3000", "invoiceAdditionalFee": false } ] } ] }