Get_Balance
Corporate Customers can use this method to check wallet balance.
Definition
GET/api/wallets/{Account_ID}/balance
Sample Request
| curl -X POST \ -H "Authorization: Bearer <JWT-token>" \ -d '{ "Account_ID": "123456789012345" }' |
Request Description
| Parameter Name | Required | Min/Max Length | Type | Remark |
| Authorization | M | Bearer <jwt-token> | String | |
| Account_ID | M | 15/15 | String | Corporate Customer's Wallet Account ID. |
Sample Response
| HTTP 200 OK { "Account_ID": "123456789012345", "Currency": "USD", "Balance": 1000366.99 } |
Response Description
| Parameter | Data Type | Required | Description |
| Account_ID | String | M | Unique identifier for the customer account wallet. |
| Currency | Char | M | Currency of the customer wallet in ISO 4217 format. |
| Balance | Numeric | M | The latest balance of customer wallet. |
M = Mandatory, C = Conditional, O = Optional