Skip to content

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-threshold

Request Headers

HeaderDescriptionRequired
AuthorizationID Token from AuthorizationNo

Query Parameters

ParameterTypeRequiredDescription
amountStringNo

Response 200

FieldTypeDescription
dataobject
data.Statusstring
data.Emailstring
data.BalanceThresholdnumber
data.Notestring
@metadataobject
@metadata.status_codenumber
@metadata.last_updatedstring

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"
  }
}

IIMMPACT API Documentation