URL

Environment Value
Staging https://staging.rajasoft.co.id
Production https://rajasoft.co.id

Cara Membuat Signature


$key = '4knbIiM4FrYLJ41y';
$nonce = time();
$secret = 'pIca0VACBDdll6pN1JGcdCd0gsG4j4iZTew9LivNLnxL1MlYHvSMoVi92eN5Qb4S'; // value secret bisa didapatkan dari dashboard partner
$signature = hash_hmac('sha256', $key.':'.$secret, $nonce);

Status dan Kode Error

CODE DESCRIPTION
00 request berhasil diproses.
01 request gagal diproses.
02 request sedang diproses.
97 maintenance sedang berlangsung.
98 autentikasi error.
99 general error (validasi, exception, etc).

 
STATUS DESCRIPTION
SUCCESS transaksi berhasil.
FAILED transaksi gagal.
PROCESS transaksi sedang diproses.

Melakukan Pemesanan

Partner diperlukan untuk menunggu response selama 50 detik sebelum request dinyatakan timeout.

[POST] {{url}}/api/v1/transaction/order

Header Type Value Req.
Accept string application/json Yes
RS-Key string berisi value key dari dashboard partner, cek disini. Yes
RS-Nonce string berisi value unix time (contoh: 1737031481), tidak boleh kurang dari 5 menit lalu. Yes
RS-Signature string berisi value signature. Yes

 

JSON BODY Type Value Req.
product_code string kode produk prepaid, cek disini. Yes
customer_no string nomor pelanggan yang akan di proses. Yes
partner_ref string kode unique milik partner sebagai referensi transaksi, maksimal 255 karakter. Yes

Contoh Response


JSON

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "QUS5JRXTIYFQL4SW",
        "customer_no": "081111111111",
        "product_code": "RSS5",
        "product_name": "Telkomsel 5.000",
        "product_method": "PREPAID",
        "balance": 985993968,
        "price": 5500,
        "partner_ref": "PREPAID027",
        "status": "PROCESS",
        "detail": {}
    }
}

JSON

{
    "success": false,
    "code": "01",
    "message": "Transaksi gagal diproses.",
    "data": {
        "transaction_id": "YJVPRSEXAVOU1QRS",
        "customer_no": "081111111112",
        "product_code": "RSS5",
        "product_name": "Telkomsel 5.000",
        "product_method": "PREPAID",
        "balance": 985994018,
        "price": 5500,
        "partner_ref": "PREPAID029",
        "status": "FAILED",
        "detail": {}
    }
}

JSON

{
    "success": false,
    "code": "99",
    "message": "Nomor referensi sudah terdaftar.",
    "data": {}
}

Melakukan Cek Status Pesanan

[POST] {{url}}/api/v1/transaction/status

Header Type Value Req.
Accept string application/json Yes
RS-Key string berisi value key dari dashboard partner, cek disini. Yes
RS-Nonce string berisi value unix time (contoh: 1737031481), tidak boleh kurang dari 5 menit lalu. Yes
RS-Signature string berisi value signature. Yes

 

JSON BODY Type Value Req.
partner_ref string kode unique milik partner yang digunakan pada saat melakukan pemesanan. Yes

Contoh Response


JSON

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "CJ0UA5GVDARPABI2",
        "customer_no": "081111111111",
        "product_code": "RSS5",
        "product_name": "Telkomsel 5.000",
        "product_method": "PREPAID",
        "balance": 985994018,
        "price": 5500,
        "partner_ref": "PREPAID022",
        "status": "SUCCESS",
        "detail": {}
    }
}

JSON

{
    "success": false,
    "code": "01",
    "message": "Transaksi gagal diproses.",
    "data": {
        "transaction_id": "XQHSQ7YU8GPCUNMN",
        "customer_no": "081111111112",
        "product_code": "RSS5",
        "product_name": "Telkomsel 5.000",
        "product_method": "PREPAID",
        "balance": 985994018,
        "price": 5500,
        "partner_ref": "PREPAID028",
        "status": "FAILED",
        "detail": {}
    }
}

JSON

{
    "success": true,
    "code": "02",
    "message": "Transaksi sedang diproses.",
    "data": {
        "transaction_id": "XDX6AEWEHCRXZSDW",
        "customer_no": "081111111111",
        "product_code": "RSS5",
        "product_name": "Telkomsel 5.000",
        "product_method": "PREPAID",
        "balance": 985994018,
        "price": 5500,
        "partner_ref": "PREPAID021",
        "status": "PROCESS",
        "detail": {}
    }
}

JSON

{
    "success": false,
    "code": "99",
    "message": "Transaksi tidak ditemukan.",
    "data": {}
}

Mendapatkan Layanan

[GET] {{url}}/api/v1/product/list/prepaid

Header Type Value Req.
Accept string application/json Yes
RS-Key string berisi value key dari dashboard partner, cek disini. Yes
RS-Nonce string berisi value unix time (contoh: 1737031481), tidak boleh kurang dari 5 menit lalu. Yes
RS-Signature string berisi value signature. Yes

Contoh Response


JSON

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": [
        {
            "code": "RSS10",
            "name": "Indosat 10.000",
            "price": 10265,
            "commission": 50,
            "status": "Lancar",
            "type": "Pulsa",
            "provider": "Indosat",
            "category": "Promo"
        },
        {
            "code": "RSS5",
            "name": "Telkomsel 5.000",
            "price": 5500,
            "commission": 50,
            "status": "Lancar",
            "type": "Pulsa",
            "provider": "Telkomsel",
            "category": "Reguler"
        }
    ]
}

Webhook

[POST] urlcallback.com

Header Type Value
Accept string application/json
Content-Type string application/json
RS-Nonce string berisi value unix time.
RS-Signature string berisi value signature.

 

JSON BODY Type Value
success boolean true jika transaksi sukses atau false jika gagal.
code string 00 (sukses) atau 01 (gagal).
message string pesan status transaksi.
data object data mandatory yang selalu ada pada setiap jenis transaksi
data.transaction_id string transaksi ID RajaSoft.
data.customer_no string nomor pelanggan yang diproses.
data.product_code string kode produk prepaid.
data.product_name string nama produk prepaid.
data.product_method string jenis transaksi
data.balance string sisa deposit saat ini.
data.price string harga produk.
data.partner_ref string kode unique milik partner yang digunakan pada saat melakukan pemesanan.
data.status string status transaksi (SUCCESS / FAILED)
data.detail object info detail transaksi, pada transaksi prepaid akan selalu kosong.

Contoh Request


JSON

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "CJ0UA5GVDARPABI2",
        "customer_no": "081111111111",
        "product_code": "RSS5",
        "product_name": "Telkomsel 5.000",
        "product_method": "PREPAID",
        "balance": 985994018,
        "price": 5500,
        "partner_ref": "PREPAID022",
        "status": "SUCCESS",
        "detail": {}
    }
}

JSON

{
    "success": false,
    "code": "01",
    "message": "Transaksi gagal diproses.",
    "data": {
        "transaction_id": "XQHSQ7YU8GPCUNMN",
        "customer_no": "081111111112",
        "product_code": "RSS5",
        "product_name": "Telkomsel 5.000",
        "product_method": "PREPAID",
        "balance": 985994018,
        "price": 5500,
        "partner_ref": "PREPAID028",
        "status": "FAILED",
        "detail": {}
    }
}

Response


Partner perlu mengirimkan response sebagai berikut untuk menandakan bahwa callback berhasil diterima.
Jika tidak memberikan response seperti dibawah ini maka callback secara otomatis akan diulangi sebanyak 3x yang akan dikirim setiap menit 1x.

JSON

{
  "result": "OK"
}

Nomor Customer Testing

Sukses Gagal Timeout dengan callback sukses Timeout dengan callback gagal
081111111111 081111111112 081111111113 081111111114

Melakukan Pengecekan

Partner diperlukan untuk menunggu response selama 50 detik sebelum request dinyatakan timeout.

[POST] {{url}}/api/v1/transaction/check

Header Type Value Req.
Accept string application/json Yes
RS-Key string berisi value key dari dashboard partner, cek disini. Yes
RS-Nonce string berisi value unix time (contoh: 1737031481), tidak boleh kurang dari 5 menit lalu. Yes
RS-Signature string berisi value signature. Yes

 

JSON BODY Type Value Req.
product_code string kode produk postpaid, cek disini. Yes
customer_no string nomor pelanggan yang akan di proses. Yes

Contoh Response


JSON

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "",
        "customer_no": "114676170021",
        "product_code": "RSPLN",
        "product_name": "PLN Pascabayar",
        "product_method": "POSTPAID",
        "balance": 985994018,
        "price": 103280,
        "partner_ref": "",
        "status": "SUCCESS",
        "detail": {
            "name": "MOCH EFENDI",
            "power_tariff": "R1 450",
            "month_year": "AGS 24,SEP 24,OKT 24",
            "st_meter": "11863-12055",
            "basic_cost": 76280,
            "fine": 18000,
            "remaining_arrears": 3,
            "month_count": 3,
            "fee_count": 3,
            "bill": 94280,
            "admin_fee": 9000,
            "total_bill": 103280,
            "ref": "2BMS210ZCA36077B6B9247463A40486D"
        }
    }
}

JSON

{
    "success": false,
    "code": "99",
    "message": "Request tidak valid atau data inquiry tidak ditemukan.",
    "data": {}
}

Melakukan Pemesanan

Partner diperlukan untuk menunggu response selama 50 detik sebelum request dinyatakan timeout.

[POST] {{url}}/api/v1/transaction/order

Header Type Value Req.
Accept string application/json Yes
RS-Key string berisi value key dari dashboard partner, cek disini. Yes
RS-Nonce string berisi value unix time (contoh: 1737031481), tidak boleh kurang dari 5 menit lalu. Yes
RS-Signature string berisi value signature. Yes

 

JSON BODY Type Value Req.
product_code string kode produk psotpaid, cek disini. Yes
customer_no string nomor pelanggan yang akan di proses. Yes
partner_ref string kode unique milik partner sebagai referensi transaksi, maksimal 255 karakter. Yes

Contoh Response


JSON

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "KGOOA6T2CHOJOZU2",
        "customer_no": "114676170021",
        "product_code": "RSPLN",
        "product_name": "PLN Pascabayar",
        "product_method": "POSTPAID",
        "balance": 985890738,
        "price": 103280,
        "partner_ref": "PLNPASCA020",
        "status": "PROCESS",
        "detail": {
            "name": "MOCH EFENDI",
            "power_tariff": "R1 450",
            "month_year": "AGS 24,SEP 24,OKT 24",
            "st_meter": "11863-12055",
            "basic_cost": 76280,
            "fine": 18000,
            "remaining_arrears": 3,
            "month_count": 3,
            "fee_count": 3,
            "bill": 94280,
            "admin_fee": 9000,
            "total_bill": 103280,
            "ref": "2BMS210ZCA36077B6B9247463A40486D"
        }
    }
}

JSON

{
    "success": false,
    "code": "99",
    "message": "Request tidak valid atau data inquiry tidak ditemukan.",
    "data": {}
}

Melakukan Cek Status Pesanan

[POST] {{url}}/api/v1/transaction/status

Header Type Value Req.
Accept string application/json Yes
RS-Key string berisi value key dari dashboard partner, cek disini. Yes
RS-Nonce string berisi value unix time (contoh: 1737031481), tidak boleh kurang dari 5 menit lalu. Yes
RS-Signature string berisi value signature. Yes

 

JSON BODY Type Value Req.
partner_ref string kode unique milik partner yang digunakan pada saat melakukan pemesanan. Yes

Contoh Response


JSON

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "KGOOA6T2CHOJOZU2",
        "customer_no": "114676170021",
        "product_code": "RSPLN",
        "product_name": "PLN Pascabayar",
        "product_method": "POSTPAID",
        "balance": 985896738,
        "price": 103280,
        "partner_ref": "PLNPASCA020",
        "status": "SUCCESS",
        "detail": {
            "name": "MOCH EFENDI",
            "power_tariff": "R1 450",
            "month_year": "AGS 24,SEP 24,OKT 24",
            "st_meter": "11863-12055",
            "basic_cost": 76280,
            "fine": 18000,
            "remaining_arrears": 3,
            "month_count": 3,
            "fee_count": 3,
            "bill": 94280,
            "admin_fee": 9000,
            "total_bill": 103280,
            "ref": "2BMS210ZCA36077B6B9247463A40486D"
        }
    }
}

JSON

{
    "success": false,
    "code": "01",
    "message": "Transaksi gagal diproses.",
    "data": {
        "transaction_id": "YOR8Z8YDFU3C2H5U",
        "customer_no": "114676170021",
        "product_code": "RSPLN",
        "product_name": "PLN Pascabayar",
        "product_method": "POSTPAID",
        "balance": 985896738,
        "price": 72674,
        "partner_ref": "PLNPASCA031",
        "status": "FAILED",
        "detail": {
            "name": "",
            "power_tariff": " ",
            "month_year": "",
            "st_meter": "0-0",
            "basic_cost": 0,
            "fine": 0,
            "remaining_arrears": 0,
            "month_count": 0,
            "fee_count": 0,
            "bill": 69674,
            "admin_fee": 3000,
            "total_bill": 72674,
            "ref": ""
        }
    }
}

JSON

{
    "success": true,
    "code": "02",
    "message": "Transaksi sedang diproses.",
    "data": {
        "transaction_id": "7HFKWSINFT4ALB4B",
        "customer_no": "114676170021",
        "product_code": "RSPLN",
        "product_name": "PLN Pascabayar",
        "product_method": "POSTPAID",
        "balance": 985896738,
        "price": 81674,
        "partner_ref": "PLNPASCA030",
        "status": "PROCESS",
        "detail": {
            "name": "TG11~!@#$^``}?-&+D4Ta-#o00",
            "power_tariff": "S2 450",
            "month_year": "JUL 18,AGS 18,SEP 18,OKT 18",
            "st_meter": "2294-2400",
            "basic_cost": 33674,
            "fine": 36000,
            "remaining_arrears": 11,
            "month_count": 4,
            "fee_count": 4,
            "bill": 69674,
            "admin_fee": 12000,
            "total_bill": 81674,
            "ref": "2008140Z93000589EF03741FCDA82ED3"
        }
    }
}

JSON

{
    "success": false,
    "code": "99",
    "message": "Transaksi tidak ditemukan.",
    "data": {}
}

Mendapatkan Layanan

[GET] {{url}}/api/v1/product/list/postpaid

Header Type Value Req.
Accept string application/json Yes
RS-Key string berisi value key dari dashboard partner, cek disini. Yes
RS-Nonce string berisi value unix time (contoh: 1737031481), tidak boleh kurang dari 5 menit lalu. Yes
RS-Signature string berisi value signature. Yes

Contoh Response


JSON

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": [
        {
            "code": "RSBPJSKES",
            "name": "BPJS Kesehatan",
            "price": 0,
            "commission": 1000,
            "status": "Lancar",
            "type": "BPJS Kesehatan",
            "provider": "",
            "category": ""
        },
        {
            "code": "RSPLN",
            "name": "PLN Pascabayar",
            "price": 0,
            "commission": 2000,
            "status": "Lancar",
            "type": "PLN",
            "provider": "",
            "category": ""
        }
    ]
}

Webhook

[POST] urlcallback.com

Header Type Value
Accept string application/json
Content-Type string application/json
RS-Nonce string berisi value unix time.
RS-Signature string berisi value signature.

 

JSON BODY Type Value
success boolean true jika transaksi sukses atau false jika gagal.
code string 00 (sukses) atau 01 (gagal).
message string pesan status transaksi.
data object data mandatory yang selalu ada pada setiap jenis transaksi
data.transaction_id string transaksi ID RajaSoft.
data.customer_no string nomor pelanggan yang diproses.
data.product_code string kode produk prepaid.
data.product_name string nama produk prepaid.
data.product_method string jenis transaksi
data.balance string sisa deposit saat ini.
data.price string harga produk.
data.partner_ref string kode unique milik partner yang digunakan pada saat melakukan pemesanan.
data.status string status transaksi (SUCCESS / FAILED)
data.detail object info detail transaksi postpaid bervariasi sesuai dengan tipe layanan yang dipilih.

Contoh Request


JSON

{
  "success": true,
  "code": "00",
  "message": "Transaksi berhasil diproses.",
  "data": {
    "transaction_id": "KGOOA6T2CHOJOZU2",
    "customer_no": "114676170021",
    "product_code": "RSPLN",
    "product_name": "PLN Pascabayar",
    "product_method": "POSTPAID",
    "balance": 985896738,
    "price": 103280,
    "partner_ref": "PLNPASCA020",
    "status": "SUCCESS",
    "detail": {
      "name": "MOCH EFENDI",
      "power_tariff": "R1 450",
      "month_year": "AGS 24,SEP 24,OKT 24",
      "st_meter": "11863-12055",
      "basic_cost": 76280,
      "fine": 18000,
      "remaining_arrears": 3,
      "month_count": 3,
      "fee_count": 3,
      "bill": 94280,
      "admin_fee": 9000,
      "total_bill": 103280,
      "ref": "2BMS210ZCA36077B6B9247463A40486D"
    }
  }
}

JSON

{
  "success": false,
  "code": "01",
  "message": "Transaksi gagal diproses.",
  "data": {
    "transaction_id": "COW9XOJC4UNFCTTD",
    "customer_no": "114676170024",
    "product_code": "RSPLN",
    "product_name": "PLN Pascabayar",
    "product_method": "POSTPAID",
    "balance": 992703210,
    "price": 103280,
    "partner_ref": "PLNPASCA019",
    "status": "FAILED",
    "detail": {
      "name": "MOCH EFENDI",
      "power_tariff": "R1 450",
      "month_year": "AGS 24,SEP 24,OKT 24",
      "st_meter": "11863-12055",
      "basic_cost": 76280,
      "fine": 18000,
      "remaining_arrears": 3,
      "month_count": 3,
      "fee_count": 3,
      "bill": 94280,
      "admin_fee": 9000,
      "total_bill": 103280,
      "ref": "2BMS210ZCA36077B6B9247463A40486D"
    }
  }
}

Response


Partner perlu mengirimkan response sebagai berikut untuk menandakan bahwa callback berhasil diterima.
Jika tidak memberikan response seperti dibawah ini maka callback secara otomatis akan diulangi sebanyak 3x yang akan dikirim setiap menit 1x.

JSON

{
  "result": "OK"
}

Nomor Customer Testing

Tipe Sukses Gagal Timeout dengan callback sukses Timeout dengan callback gagal
PLN 114676170021 114676170022 114676170023 114676170024
PLN Non Tag 4218031000628 4218031000627 4218031000626 4218031000625
PDAM 07027017 07027016 07027015 07027014
BPSJ Kesehatan 8888802379205901 8888802379205902 8888802379205903 8888802379205904
BPSJ Ketenagakerjaan 421021041000 421021041001 421021041002 421021041003
Asuransi 2377711010671745 2377711010671746 2377711010671747 2377711010671748
TV Kabel 11632498 11632497 11632496 11632495
Telkom 161203215159 161203215158 161203215157 161203215156
Selular 081130525558 081130525557 081130525556 081130525555
Multifinance 547010008701 547010008702 547010008703 547010008704
PGN 00121216 00121217 00121218 00121219
PBB 331305000600302790 331305000600302791 331305000600302792 331305000600302793
PKB Jatim M2047BB M2047BC M2047BD M2047BE
PKB Non Jatim A4450NR A4450NS A4450NT A4450NU
Kartu Kredit 4260980000493825 4260980000493826 4260980000493827 4260980000493828

Contoh Request dan Response

JSON - Request Pengecekan PLN

{
    "product_code": "RSPLN",
    "customer_no": "114676170021
}

JSON - Request Pemesanan PLN

{
    "product_code": "RSPLN",
    "customer_no": "114676170021",
    "partner_ref": "PLNPASCA022"
}

JSON - Response PLN

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "FOSAZEATA2SZN7T9",
        "customer_no": "114676170021",
        "product_code": "RSPLN",
        "product_name": "PLN Pascabayar",
        "product_method": "POSTPAID",
        "balance": 985793458,
        "price": 103280,
        "partner_ref": "PLNPASCA022",
        "status": "PROCESS",
        "detail": {
            "name": "MOCH EFENDI",
            "power_tariff": "R1 450",
            "month_year": "AGS 24,SEP 24,OKT 24",
            "st_meter": "11863-12055",
            "basic_cost": 76280,
            "fine": 18000,
            "remaining_arrears": 3,
            "month_count": 3,
            "fee_count": 3,
            "bill": 94280,
            "admin_fee": 9000,
            "total_bill": 103280,
            "ref": "2BMS210ZCA36077B6B9247463A40486D"
        }
    }
}

JSON - Request Pengecekan PLN Non Tag

{
    "product_code": "RSPLNNT",
    "customer_no": "4218031000628"
}

JSON - Request Pemesanan PLN Non Tag

{
    "product_code": "RSPLNNT",
    "customer_no": "4218031000628"
    "partner_ref": "PLNNONTAG006"
}

JSON - Response PLN Non Tag

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "ZITCKKF8JQIOL9Q5",
        "customer_no": "4218031000628",
        "product_code": "RSPLNNT",
        "product_name": "PLN Non Taglist",
        "product_method": "POSTPAID",
        "balance": 985759788,
        "price": 39670,
        "partner_ref": "PLNNONTAG006",
        "status": "PROCESS",
        "detail": {
            "name": "MESJID NURUL IMAN",
            "sub_number": "421000041637",
            "payment_type": "PELUNASAN ANGSURAN",
            "reg_date": "2024-03-05",
            "fee_count": 1,
            "admin_fee": 5000,
            "total_bill": 39670,
            "ref": "0BMS210ZF0AF56A3C93A"
        }
    }
}

JSON - Request Pengecekan PDAM

{
    "product_code": "RSPAMSID",
    "customer_no": "07027017"
}

JSON - Request Pemesanan PDAM

{
    "product_code": "RSPAMSID",
    "customer_no": "07027017",
    "partner_ref": "PDAM009"
}

JSON - Response PDAM

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "88ITUNDRJPRQWOTQ",
        "customer_no": "07027017",
        "product_code": "RSPAMSID",
        "product_name": "PDAM Kab. Sidoarjo (JATIM)",
        "product_method": "POSTPAID",
        "balance": 985086688,
        "price": 340800,
        "partner_ref": "PDAM009",
        "status": "PROCESS",
        "detail": {
            "name": "SAMINI",
            "address": "CITRA PADOVA E-3116",
            "month_year": "SEP 23,OKT 23,NOP 23,DES 23,JAN 24,PEB 24",
            "st_meter": "0-0",
            "basic_cost": 285000,
            "fine": 45000,
            "non_water": 0,
            "month_count": 6,
            "fee_count": 6,
            "bill": 330000,
            "admin_fee": 10800,
            "total_bill": 340800,
            "ref": ""
        }
    }
}

JSON - Request Pengecekan BPSJ Kesehatan

{
    "product_code": "RSBPJSKES",
    "customer_no": "8888802379205901"
    "period": 1
}

JSON - Request Pemesanan BPSJ Kesehatan

{
    "product_code": "RSBPJSKES",
    "customer_no": "8888802379205901",
    "period": 1,
    "phone_number": "08123123123",
    "partner_ref": "BPJSKES028"
}

JSON - Response BPSJ Kesehatan

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "EATW3GYISDIUEYZL",
        "customer_no": "8888802379205901",
        "product_code": "RSBPJSKES",
        "product_name": "BPJS Kesehatan",
        "product_method": "POSTPAID",
        "balance": 985020188,
        "price": 72500,
        "partner_ref": "BPJSKES028",
        "status": "PROCESS",
        "detail": {
            "name": "KAYAH",
            "period": 1,
            "va": "8888802379205901",
            "family_count": 2,
            "fee_count": 1,
            "bill": 70000,
            "admin_fee": 2500,
            "total_bill": 72500,
            "ref": "751D80733AB3F7DF"
        }
    }
}

JSON - Request Pengecekan BPSJ Ketenagakerjaan

{
    "product_code": "RSBPJSTK",
    "customer_no": "421021041000"
}

JSON - Request Pemesanan BPSJ Ketenagakerjaan

{
    "product_code": "RSBPJSTK",
    "customer_no": "421021041000",
    "partner_ref": "BPJSTK018"
}

JSON - Response BPSJ Ketenagakerjaan

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "9A8LTVT6IYGPBGAR",
        "customer_no": "421021041000",
        "product_code": "RSBPJSTK",
        "product_name": "BPJS Ketenagakerjaan",
        "product_method": "POSTPAID",
        "balance": 984934688,
        "price": 86500,
        "partner_ref": "BPJSTK018",
        "status": "PROCESS",
        "detail": {
            "name": "PESERTA O2SN SMAN 1 LBJ",
            "birthdate": "01-01-1970",
            "address": "JL JENDRAL SUDIRMAN NO 04",
            "branch_office_address": "JL. SULTAN NO. 68 RENGAT",
            "salary": "0.00",
            "program": "JKK,JKM",
            "fee_count": 1,
            "bill": 84000,
            "admin_fee": 2500,
            "total_bill": 86500,
            "ref": ""
        }
    }
}

JSON - Request Pengecekan Asuransi

{
    "product_code": "RSINSCAR",
    "customer_no": "2377711010671745"
}

JSON - Request Pemesanan Asuransi

{
    "product_code": "RSINSCAR",
    "customer_no": "2377711010671745",
    "partner_ref": "INSURANCE006"
}

JSON - Response Asuransi

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "7OTYWFIZUYLEA5O8",
        "customer_no": "2377711010671745",
        "product_code": "RSINSCAR",
        "product_name": "Asuransi CAR",
        "product_method": "POSTPAID",
        "balance": 984585688,
        "price": 350000,
        "partner_ref": "INSURANCE006",
        "status": "PROCESS",
        "detail": {
            "name": "MUHAMMAD FAISHOL ANSYORI",
            "fee_count": 1,
            "bill": 350000,
            "admin_fee": 0,
            "total_bill": 350000,
            "ref": ""
        }
    }
}

JSON - Request Pengecekan TV Kabel

{
    "product_code": "RSTVFIRST",
    "customer_no": "11632498"
}

JSON - Request Pemesanan TV Kabel

{
    "product_code": "RSTVFIRST",
    "customer_no": "11632498",
    "partner_ref": "TVCABLE012"
}

JSON - Response TV Kabel

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "PT1HPOEPNSSFEQV7",
        "customer_no": "11632498",
        "product_code": "RSTVFIRST",
        "product_name": "First Media",
        "product_method": "POSTPAID",
        "balance": 984312258,
        "price": 273930,
        "partner_ref": "TVCABLE012",
        "status": "PROCESS",
        "detail": {
            "name": "DIAN SAPUTRA",
            "fee_count": 1,
            "bill": 270930,
            "admin_fee": 3000,
            "total_bill": 273930,
            "ref": ""
        }
    }
}

JSON - Request Pengencekan Telkom

{
    "product_code": "RSTELKOM",
    "customer_no": "161203215159"
}

JSON - Request Pemesanan Telkom

{
    "product_code": "RSTELKOM",
    "customer_no": "161203215159",
    "partner_ref": "TELKOM006"
}

JSON - Response Telkom

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "ZPF8TLS7M2S8SQ0T",
        "customer_no": "161203215159",
        "product_code": "RSTELKOM",
        "product_name": "Telkom",
        "product_method": "POSTPAID",
        "balance": 984228258,
        "price": 85500,
        "partner_ref": "TELKOM006",
        "status": "PROCESS",
        "detail": {
            "name": "ANDRI SATRIA",
            "month_count": 2,
            "month_year": "PEB 24,JAN 24",
            "fee_count": 2,
            "bill": 80500,
            "admin_fee": 5000,
            "total_bill": 85500,
            "ref": "402A,401A"
        }
    }
}

JSON - Request Pengecekan Selular

{
    "product_code": "RSCELL",
    "customer_no": "081130525558"
}

JSON - Request Pemesanan Selular

{
    "product_code": "RSCELL",
    "customer_no": "081130525558",
    "partner_ref": "CELLULAR009"
}

JSON - Response Selular

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "DDFOEJBEWVMHK02Y",
        "customer_no": "081130525558",
        "product_code": "RSCELL",
        "product_name": "Ponsel Pascabayar",
        "product_method": "POSTPAID",
        "balance": 984103138,
        "price": 128120,
        "partner_ref": "CELLULAR009",
        "status": "PROCESS",
        "detail": {
            "name": "YUXXXXXXXXXXAYA",
            "sn": "BMS20240305112956",
            "fee_count": 1,
            "bill": 125620,
            "admin_fee": 2500,
            "total_bill": 128120,
            "ref": "0008122962721100010140361310305000000124320YUXXXXXXXXXXAYA"
        }
    }
}

JSON - Request Pengecekan Multifinance

{
    "product_code": "RSMF",
    "customer_no": "547010008701"
}

JSON - Request Pemesanan Multifinance

{
    "product_code": "RSMF",
    "customer_no": "547010008701"
    "partner_ref": "MULTIFIN008"
}

JSON - Response Multifinance

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "SFESPZKODTOJ5HLF",
        "customer_no": "547010008701",
        "product_code": "RSMF",
        "product_name": "Multifinance BAF",
        "product_method": "POSTPAID",
        "balance": 982626638,
        "price": 1477500,
        "partner_ref": "MULTIFIN008",
        "status": "PROCESS",
        "detail": {
            "name": "ISLAINI",
            "installment": "005",
            "due_date": "2024-04-01",
            "type": "YAMAHA",
            "tenor": "011",
            "license_plate": "BA 5924 GA",
            "fee_count": 1,
            "bill": 1477500,
            "admin_fee": 0,
            "total_bill": 1477500,
            "ref": ""
        }
    }
}

JSON - Request Pengecekan PGN

{
    "product_code": "RSPGN",
    "customer_no": "00121216"
}

JSON - Request Pemesanan PGN

{
    "product_code": "RSPGN",
    "customer_no": "00121216",
    "partner_ref": "PGN008"
}

JSON - Response PGN

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "AV5YB5NAICX5O5HO",
        "customer_no": "00121216",
        "product_code": "RSPGN",
        "product_name": "PGN",
        "product_method": "POSTPAID",
        "balance": 982596638,
        "price": 31500,
        "partner_ref": "PGN008",
        "status": "PROCESS",
        "detail": {
            "name": "RUDI HARTONO",
            "period": "0424",
            "used_volume": "0000000006",
            "st_meter": "000000-000265",
            "fee_count": 1,
            "bill": 28500,
            "admin_fee": 3000,
            "total_bill": 31500,
            "ref": ""
        }
    }
}

JSON - Request Pengecekan Pertagas

{
    "product_code": "RSGAS",
    "customer_no": "2771090003"
}

JSON - Request Pemesanan Pertagas

{
    "product_code": "RSGAS",
    "customer_no": "2771090003",
    "partner_ref": "GAS007"
}

JSON - Response Pertagas

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "JVUQ0H4YKNPXMYNL",
        "customer_no": "2771090003",
        "product_code": "RSGAS",
        "product_name": "Pertagas",
        "product_method": "POSTPAID",
        "balance": 982575850,
        "price": 21788,
        "partner_ref": "GAS007",
        "status": "PROCESS",
        "detail": {
            "name": "SD NEGERI 005",
            "month_count": 1,
            "month_year": "PEB 24",
            "st_meter": "67,0 - 67,0",
            "address": "Jl. BINTARA",
            "tariff": "R1",
            "fee_count": 1,
            "bill": 21788,
            "admin_fee": 0,
            "total_bill": 21788,
            "ref": ""
        }
    }
}

JSON - Request Pengecekan PBB

{
    "product_code": "RSPBBJTNG",
    "customer_no": "331305000600302790"
    "year": "2000"
}

JSON - Request Pemesanan PBB

{
    "product_code": "RSPBBJTNG",
    "customer_no": "331305000600302790",
    "year": "2024",
    "partner_ref": "PBB007"
}

JSON - Response PBB

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "B9Y2Y4KK1OVKXYIQ",
        "customer_no": "331305000600302790",
        "product_code": "RSPBBJTNG",
        "product_name": "Pajak Bumi & Bangunan",
        "product_method": "POSTPAID",
        "balance": 982556908,
        "price": 19942,
        "partner_ref": "PBB007",
        "status": "PROCESS",
        "detail": {
            "name": "SUNARDI",
            "address": "GIRILAYU MATESIH KARANGANYAR JAWA TENGAH",
            "year": "2024",
            "fee_count": 1,
            "bill": 16442,
            "admin_fee": 3500,
            "total_bill": 19942,
            "ref": ""
        }
    }
}

JSON - Request Pengecekan PKB Jatim

{
    "product_code": "RSPKBJATIM",
    "customer_no": "M2047BB",
    "id_number": "3328040502620002",
    "engine_no": "JFH1E1257492",
    "phone_number": "08123123123",
    "email": "email@gmail.com"
}

JSON - Request Pemesanan PKB Jatim

{
    "product_code": "RSPKBJATIM",
    "customer_no": "M2047BB",
    "id_number": "3328040502620002",
    "engine_no": "JFH1E1257492",
    "phone_number": "08123123123",
    "email": "email@gmail.com",
    "partner_ref": "PKBJATIM005"
}

JSON - Response PKB Jatim

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "3UWSDPFAY2UGKQ3D",
        "customer_no": "M2047BB",
        "product_code": "RSPKBJATIM",
        "product_name": "Pajak Kendaraan Bermotor (JATIM)",
        "product_method": "POSTPAID",
        "balance": 982366908,
        "price": 191000,
        "partner_ref": "PKBJATIM005",
        "status": "PROCESS",
        "detail": {
            "name": "NURUL AZIZAH CANDRA R A",
            "kind": "SEPEDA MOTOR",
            "merk": "SUZUKI",
            "type": "UD110EE",
            "assembly_year": "2012",
            "frame_no": "",
            "engine_no": "AE51ID135502",
            "color": "HIJAU",
            "bpkb_no": "60811202506091",
            "period": "2025-06-09",
            "address": "",
            "authorization_no": "345412686",
            "fee_count": 1,
            "bill": 188500,
            "admin_fee": 2500,
            "total_bill": 191000,
            "ref": ""
        }
    }
}

JSON - Request Pengecekan PKB Non Jatim

{
    "product_code": "RSPKBBANTEN",
    "customer_no": "A4450NR"
}

JSON - Request Pemesanan PKB Non Jatim

{
    "product_code": "RSPKBBANTEN",
    "customer_no": "A4450NR",
    "partner_ref": "PKB006"
}

JSON - Response PKB Non Jatim

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "R44LAM9IE8C8OQ1P",
        "customer_no": "A4450NR",
        "product_code": "RSPKBBANTEN",
        "product_name": "Pajak Kendaraan Bermotor",
        "product_method": "POSTPAID",
        "balance": 982110908,
        "price": 257000,
        "partner_ref": "PKB006",
        "status": "PROCESS",
        "detail": {
            "name": "SUHENDAR NUR ARIPIN",
            "kind": "SEPEDA MOTOR R2",
            "merk": "HONDA",
            "type": "H1B02N42LO A T",
            "assembly_year": "2023",
            "frame_no": "MH1JM9128PK792484",
            "engine_no": "JM91E2790094",
            "color": "HITAM",
            "bpkb_no": "T05747797H1",
            "period": "13032024-13032025",
            "address": "KP CIPANCAR RT.RW 001.003 SANGKANMANIK CIMARGA KAB",
            "authorization_no": "4721883450",
            "fee_count": 1,
            "bill": 252000,
            "admin_fee": 5000,
            "total_bill": 257000,
            "ref": ""
        }
    }
}

JSON - Request Pengecekan Kartu Kredit

{
    "product_code": "RSCCBNI",
    "customer_no": "4260980000493825",
    "nominal": 50000
}

JSON - Request Pemesanan Kartu Kredit

{
    "product_code": "RSCCBNI",
    "customer_no": "4260980000493825",
    "nominal": 50000,
    "partner_ref": "CC014"
}

JSON - Response Kartu Kredit

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "CMGKCMVSVSGGPBOZ",
        "customer_no": "4260980000493825",
        "product_code": "RSCCBNI",
        "product_name": "Kartu Kredit",
        "product_method": "POSTPAID",
        "balance": 982055908,
        "price": 56000,
        "partner_ref": "CC014",
        "status": "PROCESS",
        "detail": {
            "name": "YUNITA STIA RAHARJENG",
            "fee_count": 1,
            "bill": 50000,
            "admin_fee": 6000,
            "total_bill": 56000,
            "ref": ""
        }
    }
}

Melakukan Pengecekan

Partner diperlukan untuk menunggu response selama 50 detik sebelum request dinyatakan timeout.

[POST] {{url}}/api/v1/transaction/check

Header Type Value Req.
Accept string application/json Yes
RS-Key string berisi value key dari dashboard partner, cek disini. Yes
RS-Nonce string berisi value unix time (contoh: 1737031481), tidak boleh kurang dari 5 menit lalu. Yes
RS-Signature string berisi value signature. Yes

 

JSON BODY Type Value Req.
product_code string kode produk bank, cek disini. Yes
customer_no string nomor tujuan yang akan di transfer. Yes
nominal integer junlah yang akan di transfer. Yes

Contoh Response


JSON

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "",
        "customer_no": "4124668005",
        "product_code": "RSTFPERMATA",
        "product_name": "Bank Permata",
        "product_method": "BANK",
        "balance": 982056908,
        "price": 53000,
        "partner_ref": "",
        "status": "SUCCESS",
        "detail": {
            "account_name": "STAGING ONLY",
            "account_no": "4124668005",
            "fee_count": 1,
            "bill": 50000,
            "admin_fee": 3000,
            "total_bill": 53000,
            "ref": ""
        }
    }
}

JSON

{
    "success": false,
    "code": "99",
    "message": "Tidak berhasil mendapatkan data rekening penerima.",
    "data": {}
}

Melakukan Pemesanan

Partner diperlukan untuk menunggu response selama 50 detik sebelum request dinyatakan timeout.

[POST] {{url}}/api/v1/transaction/order

Header Type Value Req.
Accept string application/json Yes
RS-Key string berisi value key dari dashboard partner, cek disini. Yes
RS-Nonce string berisi value unix time (contoh: 1737031481), tidak boleh kurang dari 5 menit lalu. Yes
RS-Signature string berisi value signature. Yes

 

JSON BODY Type Value Req.
product_code string kode produk prepaid, cek disini. Yes
customer_no string nomor pelanggan yang akan di proses. Yes
nominal integer junlah yang akan di transfer. Yes
account_name string nama penerima transfer yang didapatkan pada saat melakukan pengecekan. Yes
partner_ref string kode unique milik partner sebagai referensi transaksi, maksimal 255 karakter. Yes

Contoh Response


JSON

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "TTKQF1Q3YNGIESKV",
        "customer_no": "4124668005",
        "product_code": "RSTFPERMATA",
        "product_name": "Bank Permata",
        "product_method": "BANK",
        "balance": 982003908,
        "price": 53000,
        "partner_ref": "BT0020",
        "status": "PROCESS",
        "detail": {
            "account_name": "STAGING ONLY",
            "account_no": "4124668005",
            "fee_count": 1,
            "bill": 50000,
            "admin_fee": 3000,
            "total_bill": 53000,
            "ref": ""
        }
    }
}

JSON

{
    "success": false,
    "code": "01",
    "message": "Transaksi gagal diproses.",
    "data": {
        "transaction_id": "MKRYLYDNDDECGHQI",
        "customer_no": "4124668004",
        "product_code": "RSTFPERMATA",
        "product_name": "Bank Permata",
        "product_method": "BANK",
        "balance": 982004908,
        "price": 53000,
        "partner_ref": "BT0021",
        "status": "FAILED",
        "detail": {
            "account_name": "STAGING ONLY",
            "account_no": "4124668004",
            "fee_count": 1,
            "bill": 50000,
            "admin_fee": 3000,
            "total_bill": 53000,
            "ref": ""
        }
    }
}

JSON

{
    "success": false,
    "code": "99",
    "message": "Nomor referensi sudah terdaftar.",
    "data": {}
}

Melakukan Cek Status Pesanan

[POST] {{url}}/api/v1/transaction/status

Header Type Value Req.
Accept string application/json Yes
RS-Key string berisi value key dari dashboard partner, cek disini. Yes
RS-Nonce string berisi value unix time (contoh: 1737031481), tidak boleh kurang dari 5 menit lalu. Yes
RS-Signature string berisi value signature. Yes

 

JSON BODY Type Value Req.
partner_ref string kode unique milik partner yang digunakan pada saat melakukan pemesanan. Yes

Contoh Response


JSON

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": {
        "transaction_id": "TTKQF1Q3YNGIESKV",
        "customer_no": "4124668005",
        "product_code": "RSTFPERMATA",
        "product_name": "Bank Permata",
        "product_method": "BANK",
        "balance": 982004908,
        "price": 53000,
        "partner_ref": "BT0020",
        "status": "SUCCESS",
        "detail": {
            "account_name": "STAGING ONLY",
            "account_no": "4124668005",
            "fee_count": 1,
            "bill": 50000,
            "admin_fee": 3000,
            "total_bill": 53000,
            "ref": ""
        }
    }
}

JSON

{
    "success": false,
    "code": "01",
    "message": "Transaksi gagal diproses.",
    "data": {
        "transaction_id": "MKRYLYDNDDECGHQI",
        "customer_no": "4124668004",
        "product_code": "RSTFPERMATA",
        "product_name": "Bank Permata",
        "product_method": "BANK",
        "balance": 982004908,
        "price": 53000,
        "partner_ref": "BT0021",
        "status": "FAILED",
        "detail": {
            "account_name": "",
            "account_no": "",
            "fee_count": 1,
            "bill": 0,
            "admin_fee": 3000,
            "total_bill": 3000,
            "ref": ""
        }
    }
}

JSON

{
    "success": true,
    "code": "02",
    "message": "Transaksi sedang diproses.",
    "data": {
        "transaction_id": "R6BVALLPX3AYW1B0",
        "customer_no": "4124668004",
        "product_code": "RSTFPERMATA",
        "product_name": "Bank Permata",
        "product_method": "BANK",
        "balance": 982004908,
        "price": 53000,
        "partner_ref": "BT0014",
        "status": "PROCESS",
        "detail": {
            "account_name": "STAGING ONLY",
            "account_no": "4124668005",
            "fee_count": 1,
            "bill": 50000,
            "admin_fee": 3000,
            "total_bill": 53000,
            "ref": ""
        }
    }
}

JSON

{
    "success": false,
    "code": "99",
    "message": "Transaksi tidak ditemukan.",
    "data": {}
}

Mendapatkan Layanan

[GET] {{url}}/api/v1/product/list/bank

Header Type Value Req.
Accept string application/json Yes
RS-Key string berisi value key dari dashboard partner, cek disini. Yes
RS-Nonce string berisi value unix time (contoh: 1737031481), tidak boleh kurang dari 5 menit lalu. Yes
RS-Signature string berisi value signature. Yes

Contoh Response


JSON

{
    "success": true,
    "code": "00",
    "message": "Transaksi berhasil diproses.",
    "data": [
        {
            "code": "RSTFAGRIS",
            "name": "Bank Agris",
            "price": 0,
            "commission": 500,
            "status": "Lancar",
            "type": "TV Kabel",
            "provider": "",
            "category": ""
        },
        {
            "code": "RSTFPERMATA",
            "name": "Bank Permata",
            "price": 0,
            "commission": 1000,
            "status": "Lancar",
            "type": "Bank Transfer",
            "provider": "",
            "category": ""
        }
    ]
}

Webhook

[POST] urlcallback.com

Header Type Value
Accept string application/json
Content-Type string application/json
RS-Nonce string berisi value unix time.
RS-Signature string berisi value signature.

 

JSON BODY Type Value
success boolean true jika transaksi sukses atau false jika gagal.
code string 00 (sukses) atau 01 (gagal).
message string pesan status transaksi.
data object data mandatory yang selalu ada pada setiap jenis transaksi
data.transaction_id string transaksi ID RajaSoft.
data.customer_no string nomor pelanggan yang diproses.
data.product_code string kode produk prepaid.
data.product_name string nama produk prepaid.
data.product_method string jenis transaksi
data.balance string sisa deposit saat ini.
data.price string harga produk.
data.partner_ref string kode unique milik partner yang digunakan pada saat melakukan pemesanan.
data.status string status transaksi (SUCCESS / FAILED)
data.detail object info detail transaksi.

Contoh Request


JSON

{
  "success": true,
  "code": "00",
  "message": "Transaksi berhasil diproses.",
  "data": {
    "transaction_id": "TTKQF1Q3YNGIESKV",
    "customer_no": "4124668005",
    "product_code": "RSTFPERMATA",
    "product_name": "Bank Permata",
    "product_method": "BANK",
    "balance": 982004908,
    "price": 53000,
    "partner_ref": "BT0020",
    "status": "SUCCESS",
    "detail": {
      "account_name": "STAGING ONLY",
      "account_no": "4124668005",
      "fee_count": 1,
      "bill": 50000,
      "admin_fee": 3000,
      "total_bill": 53000,
      "ref": ""
    }
  }
}

JSON

{
  "success": false,
  "code": "01",
  "message": "Transaksi gagal diproses.",
  "data": {
    "transaction_id": "CX3HDJL725JY2NLS",
    "customer_no": "4124668002",
    "product_code": "RSTFPERMATA",
    "product_name": "Bank Permata",
    "product_method": "BANK",
    "balance": 986081142,
    "price": 53000,
    "partner_ref": "BT0019",
    "status": "FAILED",
    "detail": {
      "account_name": "STAGING ONLY",
      "account_no": "4124668002",
      "fee_count": 1,
      "bill": 50000,
      "admin_fee": 3000,
      "total_bill": 53000,
      "ref": ""
    }
  }
}

Response


Partner perlu mengirimkan response sebagai berikut untuk menandakan bahwa callback berhasil diterima.
Jika tidak memberikan response seperti dibawah ini maka callback secara otomatis akan diulangi sebanyak 3x yang akan dikirim setiap menit 1x.

JSON

{
  "result": "OK"
}

Nomor Customer Testing

Sukses Gagal Timeout dengan callback sukses Timeout dengan callback gagal
4124668005 4124668004 4124668003 4124668002