Payment Success Callback (QRIS)

A process for sending notifications after merchant received payment from QRIS Channel. Payment notifications will sent via URL who previously had been prepared, which is the URL to receive notifications of transactions hit. Netzme will retry send a payment notification 3 times if the first try not get response ok. Endpoint URL Payment Notification

Endpoint URL is used as a feedback URL that will process the data in the notification from Netzme to the merchant system. There are two URLs that needs to be used, namely Production and Development. For the implementation of the testing or UAT can use the URL development.

Parameter

Data Type

Description

merchantUserId

String

buyerUserId

String

buyerFullname

String

netAmount

String

merchantFee

String

issuerName

String

acquirerName

String

customerPan

String

merchantPan

String

merchantName

String

merchantLocation

String

transactionId

String

ts

String

tsLong

String

amount

String

status

String

statusMessage

String

type

String

referenceId

String

Sample JSON Request :

{
   "merchantUserId":"M_czBSCDVY",
   "buyerUserId":"9360081413398781",
   "buyerFullname":"4L4y W4S h3r3_________________",
   "netAmount":"IDR 2085.00",
   "merchantFee":"IDR 15.00",
   "issuerName":"93600814",
   "acquirerName":"Netzme",
   "customerPan":"9360081413398781",
   "merchantPan":"936008140100000002",
   "merchantName":"Gulu Gulu Mall Ambassador",
   "merchantLocation":"Jakarta Selat",
   "transactionId":"9933033931",
   "ts":"2021-03-09 13:21:54.629000+0700",
   "tsLong":1615270914629,
   "amount":"IDR 2100.00",
   "status":"100",
   "statusMessage":"success",
   "type":"pay_qris",
   "referenceId":"306410381877"
}

Last updated