Get Deduct Deposit Transaction Status
GET
https://tokoapi-stg.netzme.com/public/api/v1/payment/notif/trx?type={value}&requestId={value}
request_id*
String
id of transaction.
type*
String
type of id transaction. Option requestId for netzme request id, partnerId for partner netzme id.
requestId
String
UUID request Id from netzme
status
Integer
Request status
statusMessage
String
Request status message
body.requestId
String
Id transaction on netzme
body.transactionId
String
Id transaction on partner netzme
body.merchantId
String
Merchant id
body.sku
String
Code of product
body.trxStatus
String
Transaction status
body.paidAmount
String
Paid amount of transaction
body.paidTs
String
Paid time
body.settlementTs
String
Settlement time
body.mdrFeeAmount
String
Mdr fee
body.productName
String
Product Name
E.g curl with type requestId :
curl --location 'https://tokoapi-stg.netzme.com/public/api/v1/payment/notif/trx?request_id=bebbeb1f-cfce-442f-a60e-89a9867dc8f2&type=requestId' \
--header 'Content-Type: application/json' \
--header 'Signature: bef68aa98384a6c4f04a5f7f40074f4151280c960f4b1a21bab782f1749360f2' \
--header 'Request-time: 1678089153664' \
--header 'Authorization: Bearer 9ca4728b3d93c5e6f557404536cf8ab825710ea36a19ff3d49a3832ae4c618b1' \
--header 'Client-Id: aggregator-1'
Response :
{
"requestId": "147f43b2-6433-4efb-ad15-2bc067130800",
"status": 100,
"statusMessage": "success",
"body": {
"requestId": "bebbeb1f-cfce-442f-a60e-89a9867dc8f2",
"transactionId": "CBAHWcbTOk",
"merchantId": "M_czBSCDVY",
"sku": "TIKET-OL-SPD-1",
"trxStatus": "settled",
"paidAmount": "IDR 750000.00",
"paidTs": "2022-11-02T06:18:16.924+07:00",
"settlementTs": "2022-11-02T06:21:00.178+07:00",
"mdrFeeAmount": "IDR 0.00",
"productName": "Tiket spiderman kelas 1"
}
}
E.g curl with type partnerId :
curl --location 'https://tokoapi-stg.netzme.com/public/api/v1/payment/notif/trx?request_id=CBAHWcbTOk&type=partnerId' \
--header 'Content-Type: application/json' \
--header 'Signature: 9b85b54085a047ab38dd9f4833217cecd733a5a643367d57aa10c1634c7e740b' \
--header 'Request-time: 1678091272889' \
--header 'Authorization: Bearer 9ca4728b3d93c5e6f557404536cf8ab825710ea36a19ff3d49a3832ae4c618b1' \
--header 'Client-Id: aggregator-1'
Response :
{
"requestId": "147f43b2-6433-4efb-ad15-2bc067130800",
"status": 100,
"statusMessage": "success",
"body": {
"requestId": "bebbeb1f-cfce-442f-a60e-89a9867dc8f2",
"transactionId": "CBAHWcbTOk",
"merchantId": "M_czBSCDVY",
"sku": "TIKET-OL-SPD-1",
"trxStatus": "settled",
"paidAmount": "IDR 750000.00",
"paidTs": "2022-11-02T06:18:16.924+07:00",
"settlementTs": "2022-11-02T06:21:00.178+07:00",
"mdrFeeAmount": "IDR 0.00",
"productName": "Tiket spiderman kelas 1"
}
}
Last updated
Was this helpful?