Skip to content

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/balance

Request Headers

HeaderDescriptionRequired
AuthorizationID Token From AuthorizationNo

Response 200

FieldTypeDescription
dataobjectThe data parameter contains the requested data associated with the user. It provides information such as account details, transaction history, or other relevant data.
data.accountstringUser's account number
data.namestringUser's name
data.balancenumberUser's current balance
data.levelstringUser's unique pricing group within the system
data.accessnumber0 = 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"
  }
}

IIMMPACT API Documentation