v1
latestOpenAPI 3.0.02026-07-2640301.0 MBClient Account Management Endpoints
account/client-accounts/balance
This endpoint returns details on the current account balance and available funds for the given Client account.
get/account/client-accounts/balance
Query parameters
AccountIDstring required
Your account ID
Keystring required
API key for the account
Signaturestring required
Hashed signature for the request
ClientAccountIDstring required
Client account ID of customer who's balance you want to retrieve
Currencystring
3 character currency code for the currency to fetch transactions for. If this is not specified it will be defaulted to the account's local currency (generally CAD).
Response
Example response
{
"Currency": "CAD",
"Wallets": {
"0": {
"WalletID": "wallet_123",
"WalletName": "Wallet 123",
"WalletBalance": "20000.00",
"WalletPendingBalance": "0.00",
"Reserve": "50000.00",
"RollingReserveNSF": "10000.00",
"RollingReserveReturns": "1000.00",
"OffbookBalance": "1000.00"
}
}
}