Balance
Query your account balance
Paste this query to the GraphQL Playground
Query
Response
{
balances(currencies: AUD) {
currency
cleared
pending
}
}
{
"data": {
"balances": [
{
"currency": "AUD",
"cleared": 3860,
"pending": 0
}
]
}
}
The
cleared
is the Primary balance you see on the Flash Connect website.The
pending
balance is typically not shown on the Flash Connect interface because it's rather short lived. If your Pending balance is not 0 then you can see it right next to the Primary balance.If you need to increase your development account balance please sign in to the Flash Connect website, open Deposits page, and click Send Test Deposit.
Last modified 2mo ago