Appearance
Balance
Retrieve real-time account balances. This API endpoint is used to retrieve the current balance of the account. It provides access to crucial financial information that helps in tracking and managing wallet effectively.
API Endpoint
http
GET https://api.iimmpact.com/v2/balanceRequest Headers
| Header | Description | Required |
|---|---|---|
Authorization | ID Token From Authorization | No |
Response 200
| Field | Type | Description |
|---|---|---|
data | object | The data parameter contains the requested data associated with the user. It provides information such as account details, transaction history, or other relevant data. |
data.account | string | User's account number |
data.name | string | User's name |
data.balance | number | User's current balance |
data.level | string | User's unique pricing group within the system |
data.access | number | 0 = full access, 50 = read only access . Only full access user can perform and execute payments (e.g: v2/topup). |
Example Response:
json
{
"data": {
"account": "00000",
"name": "Demo",
"balance": "48.6333",
"level": "12",
"access": "0"
}
}