Appearance
Low balance notification
The Low Balance Notification feature allows you to receive an WhatsApp and Email notification when your account balance drops below a certain threshold. By setting a balance threshold, you can ensure that you are promptly alerted when your balance reaches a level that requires attention. The email notification will be sent to the email address that is registered with your account. This feature is particularly useful for monitoring your account balance and taking necessary actions to avoid any disruptions in service.
INFO
To access the feature , login to Dashboard and navigate to Report. Under Report select Balance Statement. Alternatively you can invoke this via API
To enable the feature, toggle the Allow Low Balance Warning and set the threshold. In this example, we set the the reminder to RM1000 , when the account balance reaches the threshold , it will send an alert.

Sample Notifications

API Endpoint
http
POST https://api.iimmpact.com/v2/low-balance-thresholdRequest Headers
| Header | Description | Required |
|---|---|---|
Authorization | ID Token from Authorization | No |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
amount | String | No |
Response 200
| Field | Type | Description |
|---|---|---|
data | object | |
data.Status | string | |
data.Email | string | |
data.BalanceThreshold | number | |
data.Note | string | |
@metadata | object | |
@metadata.status_code | number | |
@metadata.last_updated | string |
Example Response:
json
{
"data": {
"Status": "Success",
"Email": "your_email@gmail.com",
"BalanceThreshold": 10,
"Note": "You will receive email notification when your balance drop below 10"
},
"@metadata": {
"status_code": 200,
"last_updated": "2025-05-16 18:49:32"
}
}