Produk Biller

Pulsa Pascabayar

Espay menyediakan API untuk memproses pembayaran Pulsa Pascabayar. Mekanisme yang digunakan adalah Inquiry-Based Payment, di mana Anda harus melakukan Bill Inquiry sebelum melakukan pembayaran.

Pertama, kirim permintaan ke layanan Bill Inquiry dengan menyertakan nomor handphone pascabayar. Sistem akan menampilkan detail transaksi Anda. Setelah itu, untuk melanjutkan pembayaran, kirim permintaan ke layanan Bill Payment dengan menyertakan data yang diperoleh dari Bill Inquiry.

Unduh koleksi Postman – Pulsa Pascabayar di sini

Kode Produk

Data Pendukung - Bill Inquiry

Parmeter Permintaan

Tidak ada data tambahan.

Parameter Respons

Postman error.

Data Pendukung - Bill Payment

Parmeter Permintaan

Parameter Tipe Mandatory Keterangan
data
...
...
....
  phone_no
...
...
...
  bill_total
...
...
...
  bill_ref
...
...
...
  bill_amount
...
...
...
  customer_name
...
...
...
  region_code
...
...
...

Parmeter Respons

Postman error.

















































Bill Inquiry - Contoh Permintaan

POST /rest/biller/inquirytransaction HTTP/1.1
Host: sandbox-api.espay.id
Content-Type: application/x-www-form-urlencoded
Authorization: ••••••
Content-Length: 220

rq_uuid=SANDBOXINQUIRYBILLER0101031&
rq_datetime=2019-10-10%2011%3A01%3A30&
sender_id=SANDBOX&
password=test&
order_id=0888666777&
product_code=SPBFRE&
signature=9d6eede295d8865adc9eefa3fc48c059d22773338b01284eb42ab688671a7c9c
             


Bill Inquiry - Contoh Respons Positif

Postman error
             


Bill Inquiry - Contoh Respons Negaif

{
    "rq_uuid": "SANDBOXINQUIRYBILLER0101031",
    "rs_datetime": "2025-02-14 13:52:28",
    "error_code": "EX",
    "error_desc": "Timeout while execution"
}
             




Bill Payment - Contoh Permintaan

POST /rest/biller/paymentreport HTTP/1.1
Host: sandbox-api.espay.id
Content-Type: application/x-www-form-urlencoded
Authorization: ••••••
Content-Length: 490

rq_uuid=SANDBOXPAYMENTBILLERPULSAPOSTPAID010102&
rq_datetime=2019-10-10%2011%3A02%3A30&
sender_id=SANDBOX&
password=test&
order_id=0888666777&
product_code=SPBFRE&
amount=128900&
signature=f46a2c34884c3d9194140f5ab595cae393749a0c5c25f23d2ebcfec3865196d1&
data={
    "phone_no": "0888666777",
    "bill_total": "1",
    "bill_ref": "108A000000",
    "bill_amount": "000000125400",
    "customer_name": "SMARTFREN CUSTOMER POSTPAID",
    "region_code": "00"
}
              


Bill Payment - Contoh Respons Positif

Postman error
              


Bill Payment - Contoh Respons Negatif

{
    "rq_uuid": "SANDBOXPAYMENTBILLERPULSAPOSTPAID010102",
    "rs_datetime": "2025-02-14 14:02:23",
    "error_code": 801,
    "error_desc": "Transaction error, inquiry data not found"
}
              




CURL


...


           








































Scroll to Top