Topup Inquiry Status
Specification
The Following tabel is spesification for this API :
API Name | Inquiry Status |
---|---|
Function | This API is used for merchant to do inquiry status topup customer account via Paydia Bisnis |
Service Code | 39 |
Method | POST |
URL | /snap/v1.0/emoney/topup-status |
Accept | application/json |
Content Type | application/json |
Related Service | Customer Topup |
Request
The following part will be describe about parameter of request in this API:
Request Parameter
The following table is a list of request parameter in this API:
Header
The following table is Header of Request Parameters :
No | Name | Type | Length | Required | Condition | Remarks |
---|---|---|---|---|---|---|
1 | Content-Type | String | Variable, 127 max | Mandatory | - | Content type, value always application/json |
2 | Authorization | String | Variable | Mandatory | - | Contains B2B Bearer JWT Token, you've got it from Access Token B2B |
3 | X-TIMESTAMP | String | Fixed, 25 max | Mandatory | - | Transaction date time, in format YYYY-MM-DDTHH:mm:ss+07:00. Time must be in GMT+7 (Jakarta time) |
4 | X-PARTNER-ID | String | Variable, 36 max | Mandatory | - | ID for partner was generated by Paydia. Unique ID for a partner |
5 | X-EXTERNAL-ID | String | Variable, 36 max | Mandatory | - | Unique messaging reference ID generated by merchant. Numeric String. Reference number that should be unique in the same day |
6 | CHANNEL-ID | String | Variable, 5 max | Mandatory | - | Device identification on which the API services is currently being accessed by the end user (customer) |
7 | X-SIGNATURE | String | Variable | Mandatory | - | Signature need to be generated with Symmetric Signature method |
Body
The following table is a body of request parameter:
No | Name | Type | Length | Required | Condition | Remarks |
---|---|---|---|---|---|---|
1 | originalPartnerReferenceNo | String | Variable, 64 max | Mandatory | - | Original transaction identifier on service consumer system |
2 | originalReferenceNo | String | Variable, 64 max | Optional | - | Original transaction identifier on service consumer system |
3 | originalExternalId | String | Variable, 32 max | Optional | - | Original External-ID on header message |
4 | serviceCode | String | Variable, 2 max | Optional | - | Transaction type indicator (service code of the original transaction request) |
Request Sample
The following script is a request sample of this API:
POST /snap/v1.0/emoney/topup-status
X-TIMESTAMP: 2024-08-03T16:26:29+07:00
X-PARTNER-ID: 4abbcb6ce30229994c76169006e0dc9c
X-SIGNATURE: 5zN3rYCum3jcNrv/jUeJpofs3rpngIQjxGzpp0hrJa6oAsPG0GW/kfoOGIVDL6LXFdpryzYnQEbunfN+ZlcW8Q==
X-EXTERNAL-ID: 1722677262
CHANNEL-ID: 412
Content-Type: application/json
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJQYXlkaWEiLCJpYXQiOjE3MjI2NzM0NzksImV4cCI6MTcyMjc1OTg3OSwiZGF0YSI6eyJlbnYiOiJwcm9kdWN0aW9uIn19.S6vpO_TFlsIgbUN3H3Hq7yDjhka1g3unLnOrDbDvWF0
{
"originalPartnerReferenceNo": "ef31dae0-168a-4005-92d3-67b6363e03f9",
"originalReferenceNo": "1c0c8fab-f3a9-49eb-9664-a66f4c9fc7ee",
"serviceCode": "38"
}
Response
The following part will be describe about parameter of response in this API:
Response Parameter
The following table is a list of response parameter in this API:
Body
The following table is a body of response parameter:
No | Name | Type | Length | Required | Condition | Remarks |
---|---|---|---|---|---|---|
1 | responseCode | String | Fixed, 7 max | Mandatory | - | Refer to response code list |
2 | responseMessage | String | Variable, 150 max | Mandatory | - | Refer to response code list |
3 | originalReferenceNo | String | Variable, 64 max | Optional | - | Transaction identifier on Paydia system |
4 | originalPartnerReferenceNo | String | Variable, 64 max | Mandatory | - | Transaction identifier on partner system |
5 | originalExternalId | String | Variable, 32 max | Mandatory | - | Original External-ID on header message |
6 | serviceCode | String | Variable, 2 max | Mandatory | - | Transaction type indicator (service code of the original transaction request) |
7 | transactionDate | String | Variable, 25 max | Mandatory | - | Transaction date, in format YYYY-MM-DDTHH:mm:ss+07:00. Time must be in GMT+7 (Jakarta time) |
8 | amount | Money | Variable | Mandatory | - | Amount. Contains two sub-fields:
|
9 | latestTransactionStatus | String | Fixed, 2 max | Mandatory | - | Transaction status. Contains values:
|
10 | transactionStatusDesc | String | Variable, 32 max | Mandatory | - | Transaction status description. Contains values:
|
11 | additionalInfo | JSON Object | Variable | Mandatory | - | Additional information |
Response Sample
The following script is a response sample of this API:
{
"responseCode": "2003900",
"responseMessage": "Successful",
"originalReferenceNo": "1c0c8fab-f3a9-49eb-9664-a66f4c9fc7ee",
"originalPartnerReferenceNo": "ef31dae0-168a-4005-92d3-67b6363e03f9",
"originalExternalId": "1722677179",
"serviceCode": "38",
"transactionDate": "2024-08-03T16:26:21+07:00",
"amount": {
"value": "20000.00",
"currency": "IDR"
},
"latestTransactionStatus": "00",
"transactionStatusDesc": "Success",
"additionalInfo": []
}
Response Code and Message
The following table is the list response code and message of Account Inquiry API:
No | Response Code | Response Message | Remarks |
---|---|---|---|
1 | 2003900 | Successful | Success to be processed |
2 | 4003901 | Invalid Field Format | Invalid format for certain field |
3 | 4003902 | Invalid Mandatory Field | Missing or invalid format on mandatory field |
4 | 4013900 | Unauthorized. [reason] | General unauthorized error |
5 | 4013901 | Invalid Token (B2B) | Invalid or Expired Access Token |
6 | 4043901 | Transaction Not Found | Transaction not found |
7 | 5003902 | Backend system failure | 500 internal server error |