Inquiry
API to inquiry Gas Negara.
Path
Method | Path |
---|---|
POST | api/v1/bill/check |
Test Case
Code | Number | Response |
---|---|---|
PGAS | 0110010000 | Success |
PGAS | 0110010001 | Inquiry - Invoice Has Been Paid |
PGAS | 0110010014 | Inquiry - Incorrect Destination Number |
PGAS | 0110010103 | Inquiry - Time Out |
PGAS | 0110011037 | Payment - Payment Failed |
PGAS | 0110011039 | Payment - Pending / transaction in process |
PGAS | 0110011105 | Payment - MISC Error / Biller System Error |
PGAS | 011001XXXX | Test other response scenarios in the test case menu. |
Request Body
Attributes | Type | Description | Mandatory |
---|---|---|---|
commands | String | Value: inq-pasca | Yes |
username | String | Your registered phone number | Yes |
code | String | Product Code. You can get list of product code in pricelist api or from pricelist here | Yes |
hp | String | Gas negara customer number | Yes |
ref_id | String | Your order number / reference ID ( must unique ) | Yes |
sign | String | Signature. Value: md5(username+api_key+ref_id) | Yes |
{
"commands" : "inq-pasca",
"username" : "123123123",
"code" : "PGAS",
"hp" : "0110010000",
"ref_id" : "151270689512",
"sign" : "12fe359b0638d81d70ea1d278f400ab1"
}
Response
Attributes | Type | Description | Mandatory |
---|---|---|---|
tr_id | Integer | IAK inquiry ID | Yes |
code | String | Product code | Yes |
hp | String | Gas negara customer number | Yes |
tr_name | String | Bill account name | Yes |
period | String | Bill period | Yes |
nominal | Double | Bill nominal | Yes |
admin | Double | Admin fee | Yes |
ref_id | String | Your order number / reference ID ( must unique ) | Yes |
response_code | String | Response code. See response code list | Yes |
message | String | Message | Yes |
price | Double | Total price that must be paid (nominal + admin fee) | Yes |
selling_price | Double | Deducted balance (price - commission) | Yes |
desc | Object | Product description | Yes |
desc.address | String | Customer address | Yes |
desc.first_meter | String | Initial meter | Yes |
desc.last_meter | String | Final meter | Yes |
desc.usage | Integer | Number of usage | Yes |
{
"data": {
"tr_id": 9732788,
"code": "PGAS",
"hp": "0110010000",
"tr_name": "NGATIMUN",
"period": "0917",
"nominal": 322002,
"admin": 2500,
"ref_id": "151270689512",
"response_code": "00",
"message": "INQUIRY SUCCESS",
"price": 324502,
"selling_price": 323902,
"desc": {
"address": "-",
"first_meter": "006538",
"last_meter": "006573",
"usage": 35
}
},
"meta": []
}
Live Testing
Request URL
https://testpostpaid.mobilepulsa.net/api/v1/bill/check
Request Method
Request Header
Content-Type: application/json
Body
Result
Tutorial Video
You can see this video for inquiry code explanation using Laravel.
Or you can see this video for inquiry code explanation using PHP.
Table of Contents