Get Transaction List
The available version for this api is v2.0.
POST
https://tokoapisnap-stg.netzme.com/api-qris/
{version}
/transaction/history-list
pageNumber
String
Page number
partnerReferenceNo
String
API request identifier from the user's system, unique for each request
fromDateTime
String
Start time range
toDateTime
String
The end time range, cannot be the same day as the fromDateTime
additionalInfo
Object
custIdMerchant
String
User ID provided by Netzme
{
"pageNumber": "1",
"partnerReferenceNo": "testing012398120312",
"fromDateTime": "2022-10-27T12:08:56-07:00",
"toDateTime": "2022-10-27T12:08:56-07:00",
{
"custIdMerchant": "M_11t8YAEM"
}
}
responseCode
String
(HTTP status code + service code + case code)
responseMessage
String
Description of responseCode
partnerReferenceNo
String
API request identifier from the user's system
referenceNo
String
API request identifier from the provider system
additionalInfo
Object
type
String
Type of request
detailData
Array Object
amount
Object
Amount of the transaction
value
String
Value of the amount
currency
String
Currency of the amount
status
String
Transaction status
type
String
Transactions type (PAYMENT, TOP_UP)
additionalInfo
Object
createdTs
String
Transaction creation time
desc
String
description of the transaction
feeAmount
Object
Fees charged on transactions
value
String
Amount of the fee
currency
String
Currency of the fee
invoiceId
String
ID of the invoice paid with the transaction
invoiceType
String
Type of the invoice paid with the transaction
merchantId
String
User ID
paidTs
String
Time the invoice is paid
paymentMethod
String
Payment method that has been used to pay
serviceCharge
Object
Service fees for transactions
value
String
Amount of the serviceCharged
currency
String
Currency of the serviceCharged
totalAmount
Object
Total amount paid by customers
transactionId
String
Transactions ID
ts
String
Transactions timestamp
tsLong
Long
Transactions timestamp in long/unix time
urlInvoice
String
url of the invoice paid with the transaction
Response Body
{
"responseCode": "2001200",
"responseMessage": "Successful",
"partnerReferenceNo": "testing012398120312",
"referenceNo": "afc02bdc-83cb-4072-8eb9-c590035b5fa4",
"additionalInfo": {
"type": "list_transaction"
},
"detailData": [
{
"amount": {
"value": "4450.00",
"currency": "IDR"
},
"status": "SUCCESS",
"type": "PAYMENT",
"additionalInfo":{
"createdTs": "2022-10-05T15:14:44.335+07:00",
"desc": "desc",
"feeAmount": {
"value": "5550.00",
"currency": "IDR"
},
"invoiceId": "NETZ-INV-M_TB1NMLig16649576831506ZV",
"invoiceType": "single",
"merchantId": "M_TB1NMLig",
"paidTs": "2022-10-05T15:14:52.57+07:00",
"paymentMethod": "Bank Transfer",
"serviceCharge": {
"value": "0.00",
"currency": "IDR"
},
"totalAmount": {
"value": "10000.00",
"currency": "IDR"
},
"transactionId": "417507d8-0ea1-4c4b-bcd8-9175dc583786",
"ts": "2022-10-05T15:14:52.57+07:00",
"tsLong": 1664957692570,
"urlInvoice": "https://pay-stg.netzme.id/TokoBuInem/NETZ-INV-M_TB1NMLig16649576831506ZV"
}
}
]
}
curl --location --request POST 'https://tokoapisnap-stg.netzme.com/api/v1.0/transaction/history-list' \
--header 'X-TIMESTAMP: 2022-08-10T00:00:00+07:00' \
--header 'X-SIGNATURE: 62dbada364b2dcf44f83ee479d49ffba644c2742baa388c382de710c00f360570f209d2ecf22198cca9306180820daed37d01438887be8a43c46c8ab8077ab6e' \
--header 'Content-Type: application/json' \
--header 'Authorization: eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2NjY3ODUwNDEsImlhdCI6MTY2Njc4NDE0MSwiaXNzIjoiYml0ZG5hLXRva28ifQ.xlWs_Gp9X3mf-0bOukt49qIO1ZJ7sH_CUZRH5fQMq09xXXWi7KTT8dVNnJY4r8QfHev-_DlGhcTOb-dcLRfD3A' \
--header 'X-PARTNER-ID: TokoNetmeClientId' \
--header 'X-EXTERNAL-ID: 41807553358950093184162180797837' \
--header 'CHANNEL-ID: 95221' \
--data-raw '{
"pageNumber": "1",
"custIdMerchant": "M_VWXPXk6t",
"partnerReferenceNo": "testing012398120312",
"fromDateTime": "2022-09-27T12:08:56-07:00",
"toDateTime": "2022-10-27T12:08:56-07:00"
}'
Last updated