Netzme vSNAP
  • Introducing
  • Getting Started
  • API Reference
    • Toko Netzme
      • Credentials & Signature
      • Authentication
      • Create pin
      • Forgot pin
      • Get Balance Detail
      • Get Transaction List
      • Get Merchant Detail
      • Withdraw Inquiry
      • Get Information Withdraw
      • Get QRIS Acquire Transaction
      • Create Invoice
      • Create Invoice Transaction
      • Create Invoice QR MPM
      • Get Invoice Transaction
      • Payment Success Callback (Invoice)
      • Payment Success Callback (QRIS Non Invoice )
      • Payment Success Callback V2
        • Payment Success Callback QRIS
        • SNAP Payment Success Callback QRIS
      • Withdraw Status Notification
      • Deduct Deposit and Split Fee
      • Deposit
        • Create Invoice Transaction Topup Deposit
        • Inquiry Withdraw Deposit
        • Withdraw Deposit
        • Get Information Withdraw Deposit
        • Get Deposit Transaction
        • Get Balance Deposit
      • Withdraw Process
      • SNAP Asymmetric Signature
    • Netzme
      • Connect to Netzme
      • Credentials & Signature
      • Authentication
      • Get Account Status
      • Get Balance
      • Get History
      • Get Fixed Topup VA
      • Get Detail Qris
        • QRIS Static
        • QRIS Static With Amount & Percentage Fee
        • QRIS Dynamic
        • QRIS Dynamic with Fee
      • QRIS Payment
      • QRIS Payment Notification
      • Payment Bill
      • Payment Bill Notification
      • Payment Netzme Seamless
      • Upgrade Account Notification
      • Upgrade Account
Powered by GitBook
On this page
  1. API Reference
  2. Netzme

QRIS Payment Notification

POST /v1.0/snap/qr/qr-notify

Parameter
Data Type
Description

transactionStatusDesc

String

Success / Failed

latestTransactionStatus

String

00 / 07

originalReferenceNo

String

amount

Object

value

String

payment will reduce amount balance, e.g: "5000"

currency

String

e.g: IDR

additionalInfo

Object

custId

String

id user, e.g: TImdVCFo

type

String

qr_invoice

refId

String

Reference ID

qrType

String

Type of QR e.g: qr_type_qris_static_amount, qr_dynamic

qrContent

String

e.g: 00020101021126570016ID.CO.SHOPEE.WWW0118936009180000001402020413500303UME51440014ID.CO.QRIS.WWW0215ID10190045322970303UME5204581253033605802ID5925Gulu Gulu Mall Ambassador6015Jakarta Selatan61051294062070703A01630494FA

feeAmount

String

Transaction Fee

balance

String

User balance

Request Body

{
    "latestTransactionStatus": "00",
    "transactionStatusDesc": "Success",
    "originalReferenceNo": "906614943107",
    "amount": {
        "value": "5001.00",
        "currency": "IDR"
    },
    "additionalInfo": {
        "custId": "TImdVCFo",
        "type": "qr_invoice",
        "refId": "daf141b4-b1e0-44b0-a1eb-475485c7328a",
        "qrType": "qr_type_qris_static_amount",
        "qrContent": "00020101021126610014COM.GO-JEK.WWW01189360081401000005130210G4362512730303UMI51440014ID.CO.QRIS.WWW0215ID20220000019810303UMI5204799653033605802ID5913Toko Purba V16013JAKARTA PUSAT61051045062070703A01630402A9",
        "feeAmount": "0.00",
        "balance": "2337399.00"
    }
}
Parameter
Data Type
Description

responseCode

String

(HTTP status code + service code + case code)

responseMessage

String

Description of responseCode

originalReferenceNo

String

originalReferenceNo from request

Response Body

{
  "responseCode": "2000000",
  "responseMessage": "Successful",
  "additionalInfo": {
    "originalReferenceNo": "6972a819-3b39-11ed-8497-00ff4cecd6c7"
  }
}
Header
Value

x-callback-token

Content-Type

application/json

curl --location --request POST \
  http://127.0.0.1:8081/v1.0/snap/qr/qr-notify \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'x-callback-token: Z3kwaFV5bTZnSTNjSmhlNDhDa2d0UjRORk1abW5NSmVZbTJpbldtbFhUczlnWVBXbG9xdU1mS2d4cWxwUkhJVEcycWx5d0lLRmxsNW8yYURKQlc4YVJYNzE3c0lqVXk1a0Rxdg==' \
  --data-raw '{
    "latestTransactionStatus": "00",
    "transactionStatusDesc": "Success",
    "originalReferenceNo": "906614943107",
    "amount": {
        "value": "5001.00",
        "currency": "IDR"
    },
    "additionalInfo": {
        "custId": "TImdVCFo",
        "type": "qr_invoice",
        "refId": "daf141b4-b1e0-44b0-a1eb-475485c7328a",
        "qrType": "qr_type_qris_static_amount",
        "qrContent": "00020101021126610014COM.GO-JEK.WWW01189360081401000005130210G4362512730303UMI51440014ID.CO.QRIS.WWW0215ID20220000019810303UMI5204799653033605802ID5913Toko Purba V16013JAKARTA PUSAT61051045062070703A01630402A9",
        "feeAmount": "0.00",
        "balance": "2337399.00"
    }
}'

PreviousQRIS PaymentNextPayment Bill

Last updated 1 year ago

Your Netzme unique callback token to verify the origin of the callback, seen on the page

credentials