Skip to content

Low Balance Threshold

Set the balance threshold at which you receive low balance alerts. When your account balance drops below this amount, notifications are sent to team members who have alerts enabled.

TIP

You can also configure this from the Dashboard UI.

API Endpoint

http
POST https://api.iimmpact.com/v2/low-balance-threshold

Request Headers

HeaderDescriptionRequired
X-Api-KeyYour API keyYes
X-TimestampUnix timestamp in secondsYes
X-NonceUnique request identifierYes
X-SignatureHMAC-SHA256 signature (v1=...)Yes

See API Key Authentication for how to sign your requests.

Request Parameters (Query String)

INFO

This endpoint accepts parameters as query string parameters, not a JSON request body.

Example: POST /v2/low-balance-threshold?amount=1000

ParameterTypeRequiredDescription
amountstringYesThreshold amount in RM (minimum 1)

Response 200

FieldTypeDescription
dataobjectResponse data
data.StatusstringOperation result
data.EmailstringEmail address registered to the account
data.BalanceThresholdnumberThe threshold amount that was set
data.NotestringConfirmation message
@metadataobjectResponse metadata
@metadata.status_codenumberHTTP status code
@metadata.last_updatedstringTimestamp of the update (GMT+8). Format: yyyy-MM-dd HH:mm:ss

Example Response:

json
{
  "data": {
    "Status": "Success",
    "Email": "your_email@gmail.com",
    "BalanceThreshold": 1000,
    "Note": "You will receive email notification when your balance drop below 1000"
  },
  "@metadata": {
    "status_code": 200,
    "last_updated": "2025-05-16 18:49:32"
  }
}

IIMMPACT API Documentation