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. Toko Netzme
  3. Payment Success Callback V2

Payment Success Callback QRIS

POST https://tokoapisnap-stg.netzme.com/api/v1.0/snap/qr/qr-mpm-notify

Parameter
Data Type
Description

originalReferenceNo

String

RRN

amount

Object

Amount

value

String

Value Amount

currency

String

Currency amount

netAmount

Object

nett amount

feeAmount

Object

Fee merchant

latestTransactionStatus

String

Status

transactionStatusDesc

String

Status description

additionalInfo

Object

Additional info

invoiceNumber

String

Invoice Id

custIdMerchant

String

Merchant id

buyerUserId

String

Buyer Id

buyerFullname

String

Full name buyer

customerPan

String

Customer pan

acquirerName

String

Aquire name

issuerName

String

Issuer name

merchantPan

String

Merchant Pan

merchantName

String

merchant name

merchantLocation

String

Merchant location

type

String

type of QRIS transaction

rrn

String

RRN

localTrasactionDate

Int

Transaction date with format YYYYMMDD, Example : 20240422

issuerId

String

Issuer ID

Parameter
Data Type
Description

responseCode

String

(HTTP status code + service code + case code)

responseMessage

String

description of response_code

originalReferenceNo

String

originalReferenceNo from request

Response

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

x-callback-token

token from Netzme

Content-Type

application/json

curl --location --request POST 'localhost:9009/v1.0/snap/qr/qr-mpm-notify' \
--header 'Content-Type: application/json' \
--header 'x-callback-token: wPdsP4e3kXcXwZoogNulEanpDyNuO6cKLI8URGtdMTs=' \
--data-raw '{
  "originalReferenceNo": "2401410810572024042293600814",
  "latestTransactionStatus": "00",
  "transactionStatusDesc": "Success",
  "feeAmount": {
    "value": "0.00",
    "currency": "IDR"
  },
  "amount": {
    "value": "20000.00",
    "currency": "IDR"
  },
  "netAmount": {
    "value": "20000.00",
    "currency": "IDR"
  },
  "additionalInfo": {
    "custIdMerchant": "M_TB1NMLig",
    "ts": "2024-04-22 11:17:45.214000+0700",
    "type": "pay_qris",
    "issuerName": "Netzme",
    "terminalId": "A01",
    "buyerUserId": "9360081456202571",
    "customerPan": "9360081456202571",
    "merchantPan": "936008140100000184",
    "acquirerName": "Netzme",
    "merchantName": "Toko Bu Inem             ",
    "productPrice": {
      "value": "20000.00",
      "currency": "IDR"
    },
    "buyerFullname": "Testing 2023__________________",
    "merchantLocation": "SIMEULUE",
    "tsLong": 1713759465214,
    "invoiceNumber": "24042211171653247445",
    "rrn": "240141081057",
    "localTrasactionDate": 20240422,
    "issuerId": "93600814"
  }
}
'
PreviousPayment Success Callback V2NextSNAP Payment Success Callback QRIS

Last updated 12 months ago