List Scoring

List scoring is a service used to obtain detailed scoring lists from Sijitu.

Flow

Mitra -> Sijitu

You request by sending the required parameters, and SIJITU will respond in JSON.

API URL

Environment URL
Sandbox
Port of HTTPS (443)
https://sandbox-api.espay.id/cdd/sijitu/listscoring
Production
Port of HTTPS (443)
https://api.espay.id/cdd/sijitu/listscoring

Authorization

Every request sent must require authentication using Basic Authentication. Make sure to add the Authorization in the header. Learn more about Authorization.

Headers

Key Value
Method
POST
HTTP Version
HTTP/1.1
Accept
*/*
Content-Type
application/x-www-form-urlencoded
Content-Length
<dynamic>
Authorization
Basic base64(username:password)

Request Parameters

Parameter Type Mandatory Description
rq_uuid
String (64)
Y
Request identifier. A unique ID used to identify messages.
rq_datetime
String (19)
Y
Date and time of the transaction request from the merchant's server.

Format:
yyyy-MM-dd hh:mi:ss

Example: :
2024-03-14 07:49:28
sender_id
String (32)
Y
Partner identity code is registered in the Sijitu application.
user_id
String (64)
Y
Email already registered in Sijitu.
organization_id
String (32)
Y
Company identification code is registered in Sijitu.
signature
String (64)
Y
Code used to validate transactions. Learn Signature
Y: Yes, O: Optional, C: Conditional

Response Parameters

Parameter Type Mandatory Description
rq_uuid
String (64)
Y
Request identifier. A unique ID used to identify messages.
rs_datetime
String (32)
Y
Date and time of the transaction response from the Sijitu server.

Format:
yyyy-MM-dd hh:mi:ss

Example: :
2024-03-14 07:49:28
error_code
String (4)
Y
Response code.
error_message
String (32)
Y
Response code.
data
Array of Object
Y
Data results.
  id
String (5)
Y
Identity code for scoring questions.
  title
String (33)
Y
Question title.
Y: Yes, O: Optional, C: Conditional

Try It!

Anda bisa coba masukkan data sesuai dengan input yang telah disediakan. Setelah itu Anda submit dan lihat hasilnya!


























Sample Request

POST /cdd/sijitu/listscoring 
HTTP/1.1
Content-Length: 240
Host: sandbox-api.espay.id
Accept: */*
Content-Type: application/x-www-form-urlencoded

rq_uuid=LISTSCORINGTESTDEV0101002&
rq_datetime=2022-07-20 10:12:35&sender_id=SALDOMU&
user_id=test@sgo.co.id&
organization_id=SSB001&
signature=62615a2066b0d9e614371db4d63c6532cca3d12baf4240343dea3901e31ed061
             
















Sample Positive Response

{
    "rq_uuid": "LISTSCORINGTESTDEV0101002",
    "rs-datetime": "2022-07-20 14:06:57",
    "error_code": "0000",
    "error_message": "Success",
    "data": [
        {
            "id": 1,
            "title": "Risk Scoring for Funder 10"
        },
        {
            "id": 5,
            "title": "test scoring 1"
        },
        {
            "id": 8,
            "title": "Ricky Jaya p2p"
        },
        {
            "id": 10,
            "title": "POC Wallex"
        }
    ]
}
              




CURL

.....
              
Scroll to Top