Appearance
JomPAY Full Biller List
DANGER
This API is only applicable if the product code is “JOMPAY”

Handling Biller Codes:
Your application should allow users to provide the Jompay Biller Code in one of two ways:
Manual Input: Users can directly type the Biller Code into a designated field.
Searchable Dropdown List: Users can search for and select the Biller Code from a comprehensive list of available Jompay billers. This list can be retrieved from the api below.
The Biller Code is a requisite parameter and must be passed correctly when making a Jompay payment via the Step 5: Make Payment.
API Endpoint
http
GET https://api.iimmpact.com/v2/subproductsRequest Headers
| Header | Description | Required |
|---|---|---|
Authorization | ID Token | No |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
product_code | String | No | |
limit | string | No | Leave blank to return all |
Response 200
| Field | Type | Description |
|---|---|---|
message | string | |
data | array | |
data[].subproduct_code | string | JomPAY biller code |
data[].display_name | string | JomPAY biller name |
data[].denomination | string | Not applicable |
data[].face_value | string | Not applicable |
data[].validity | string | Not applicable |
data[].description | string | Not applicable |
data[].account_number | string | Not applicable |
data[].additional_description | array | |
data[].min | string | Minimum amount (-1 for no limit) |
data[].max | string | Maximum amount (-1 for no limit) |
links | object | |
links.first | string | |
links.last | string | |
links.prev | string | |
links.next | string | |
meta | object | |
meta.current_page | number | |
meta.from | number | |
meta.last_page | number | |
meta.path | string | |
meta.per_page | number | |
meta.to | number | |
meta.total | number |
Example Response:
json
{
"message": "success",
"data": [
{
"subproduct_code": "818625",
"display_name": "TADIKA DIDIKAN SOLEH PLT.",
"denomination": null,
"face_value": null,
"validity": null,
"description": null,
"account_number": null,
"additional_description": [],
"min": "1.00",
"max": "30000.00"
}
],
"links": {
"first": "/subproducts?page=1&limit=5",
"last": "/subproducts?page=4054&limit=5",
"prev": null,
"next": "/subproducts?page=2&limit=5"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 4054,
"path": "/subproducts",
"per_page": 5,
"to": 5,
"total": 20266
}
}