v1
latestOpenAPI 3.0.02026-07-242035712.0 MBAccount
Get Balance
Token or account number can be passed in. In the case where token is passed, the balance of the account to which the token is related to by default, is returned.
Provision is made for four balances to be returned :
- Total blocked amount (bal_blk_amt)
- Total Settled amount (bal_act_amt)
- Total pending amount (bal_pnd_amt)
- Total Available amount (bal_avail_amt)
Note: Pending amounts are amounts that may be ‘in progress’ to the account but not cleared for use (eg a chaps transfer, or chargeback refund).
post/pws/pws_get_balance/
Request body
Example request
{
"api_call_unique_identifier": "438574845790657485",
"client_id": 760131,
"input_id": 520872406,
"input_type": "t"
}Response
Successful Response
Example response
{
"header": {
"error_desc": "success"
},
"body": {
"bal_pnd_amt": 100,
"bal_blk_amt": 100,
"bal_act_amt": 10000,
"bal_ccy": "826",
"bal_avail_amt": 9900
}
}