Payment
API to pay PLN Non Taglist Postpaid.
Path
Method | Path |
---|---|
POST | api/v1/bill/check |
Request Body
Attributes | Type | Description | Mandatory |
---|---|---|---|
commands | String | Value: pay-pasca | Yes |
username | String | Your registered phone number | Yes |
tr_id | String | IAK inquiry ID | Yes |
sign | String | Signature. Value: md5(username+api_key+tr_id) | Yes |
{
"commands" : "pay-pasca",
"username" : "123123123",
"tr_id" : "219346108",
"sign" : "e4fe9e9c8ba737d6897e7f15bb1380a0"
}
Response
Attributes | Type | Description | Mandatory |
---|---|---|---|
tr_id | Integer | IAK inquiry ID | Yes |
code | String | Product code | Yes |
datetime | String | Transaction Date | Yes |
hp | String | PLN Non Taglist 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 |
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 |
balance | Integer | Current balance | Yes |
noref | String | Partner transaction id (if available) | Yes |
ref_id | String | Your order number / reference ID ( must unique ) | Yes |
desc | Object | Product description | Yes |
desc.transaksi | String | Transaction information | Yes |
desc.no_registrasi | String | Registration number | Yes |
desc.tanggal_registrasi | String | Registration date | Yes |
{
"data": {
"tr_id": 219346108,
"code": "PLNNONTAG",
"datetime": "20230103171240",
"hp": "3225030000000",
"tr_name": "JAYUSMAN",
"period": "",
"nominal": 696400,
"admin": 1600,
"response_code": "00",
"message": "PAYMENT SUCCESS",
"price": 698000,
"selling_price": 696200,
"balance": 726424608,
"noref": "18147159",
"ref_id": "09128374655",
"desc": {
"transaksi": "PENYAMBUNGAN BARU",
"no_registrasi": "5392112011703",
"tanggal_registrasi": "20120524"
}
},
"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 payment code explanation using Laravel.

Or you can see this video for payment code explanation using PHP.

Table of Contents