Appearance
Network Status
When a user clicks on a specific product, query the API in the background using its product code to check if that particular biller/product is experiencing interruptions or intermittent downtime.
Sample Error Message: Interruption! Your top-up might be slow or not go through. We are fixing it!
WARNING
IMPORTANT: Users should still have the ability to checkout and pay even with the interruption error

API Endpoint
http
GET https://api.iimmpact.com/v2/networkstatusRequest Headers
| Header | Description | Required |
|---|---|---|
Authorization | ID Token | No |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
product | String | No | Product Code |
Response 200
| Field | Type | Description |
|---|---|---|
data | object | |
data.product_code | string | Product Code |
data.product_name | string | Product Name |
data.product_img | string | Product Image |
data.network_status | string | Status (Interruption, Healthy) |
metadata | object | |
metadata.status_code | number | |
metadata.last_updated | string |
Example Response:
json
{
"data": {
"product_code": "TNB",
"product_name": "Tenaga Nasional Berhad",
"product_img": "https://dashboard.iimmpact.com/img/TNB.png",
"network_status": "Interruption"
},
"metadata": {
"status_code": 200,
"last_updated": "19-05-2025 14:49:03"
}
}