Get list of advanced balances of user
Last updated 4 months ago
Request success indicator
Response body when requesting a list of advance balances
const response = await fetch('https://ocp.payonchain.org/api-gateway/advanced-balances', { method: 'POST', headers: { "Content-Type": "application/json" }, }); const data = await response.json();
{ "success": false, "response": [ { "advancedBalanceId": "ba5716df-58c4-48f8-9401-68f6069fb4ff", "currency": "USD", "blocked": false, "balance": "4711.33", "availableCurrenciesForDeposit": [ "USDT" ], "tariffs": [ { "id": "6ddfae0b-4162-49de-9354-49df2fefdcde", "action": "EXCHANGE_AUTO", "amount": "0.03", "type": "PERCENT", "minAmount": "0.1", "maxAmount": "3000", "invoiceAdditionalFee": false } ] } ] }