Skip to main content

History List

This is one of the services providing user e-money transaction history in list format, where partners are able to query the date range for transaction history information. Response may vary depending on the transaction history owned by the user, where partners need to maintain its UI and UX in paginating.

Technical Specification

Body Request

NoNameTypeMandatoryMin LengthMax LengthDescription
1 fromDateTimeStringM125Starting time range. Default: NOW (DESC) or NOW - 3 months (ASC)
2 toDateTimeStringM125Ending time range. Default: NOW - 3 months (DESC) or NOW (ASC)
3 pageSizeIntegerM12Maximum number of transactions returned in one pagination. Default: 10
4 pageNumberIntegerM12Current page number. Default: 0

Sample Request

{
"fromDateTime": "2019-07-03T12:08:56+07:00",
"toDateTime": "2019-07-03T12:08:56+07:00",
"pageSize": 10,
"pageNumber": 2
}

Body Response

NoNameTypeMandatoryMin LengthMax LengthDescription
1 responseCodeEnumM17BI SNAP Response Code.
2 responseMessageStringM1150BI SNAP Response Message.
3 detailDataObjectO17Datail Data

Sample Response

{
"responseCode": "2001200",
"responseMessage": "Request has been processed successfully",
"detailData": [
{
"dateTime": "2022-12-02T08:18:13+00:00",
"amount": {
"value": "10000.00",
"currency": "IDR"
},
"remark": "Pulsa Rp. 10000",
"status": "SUCCESS",
"type": "TEST",
"additionalInfo": {
"partnerReferenceNo": "78912343452347003",
"referenceNo": "2212020005597959",
"trxcode": "WS_TRX_TRANSFER",
"id": "16109172",
"sum_in": "0",
"sum_out": "10000",
"channel_id": "140",
"source": "+6281977817902",
"destination": "+628198765432112",
"name": "Testing"
}
},
{
"dateTime": "2022-12-02T13:15:18+00:00",
"amount": {
"value": "1000.00",
"currency": "IDR"
},
"remark": "pulsa 1000",
"status": "SUCCESS",
"type": "TEST",
"additionalInfo": {
"partnerReferenceNo": "7891234345230001",
"referenceNo": "2212020005599921",
"trxcode": "WS_TRX_TRANSFER",
"id": "16109272",
"sum_in": "0",
"sum_out": "1000",
"channel_id": "140",
"source": "+6281977817902",
"destination": "+628198765432112",
"name": "Testing"
}
}
]
}