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

Payment Bill Notification

POST /v1.0/snap/debit/notify

Parameter
Data Type
Description

latestTransactionStatus

String

transactionStatusDesc

originalReferenceNo

String

balance

Object

value

String

Amount of balance, ex : "1299991"

currency

String

ex: "IDR"

additionalInfo

Object

type

String

payment_bill

billId

String

source

String

description

String

refId

String

Request Body

{
    "latestTransactionStatus": "00",
    "transactionStatusDesc": "Success",
    "originalReferenceNo": "586b4a69-31fe-458d-bcc0-e297e509c8a6",
    "balance": {
        "value": "1299991.00",
        "currency": "IDR"
    },
    "additionalInfo": {
        "type": "payment_bill",
        "billId": "21bb73fd-e624-4e2c-b5a0-188ca66fe222",
        "source": "xplorin",
        "description": "tiket kebun raya",
        "refId": "363a01be-7de1-4a54-a694-7e858306664a"
    }
}
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/debit/notify \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'x-callback-token: Z3kwaFV5bTZnSTNjSmhlNDhDa2d0UjRORk1abW5NSmVZbTJpbldtbFhUczlnWVBXbG9xdU1mS2d4cWxwUkhJVEcycWx5d0lLRmxsNW8yYURKQlc4YVJYNzE3c0lqVXk1a0Rxdg==' \
--data-raw '{
  "latestTransactionStatus": "00",
  "transactionStatusDesc": "Success",
  "originalReferenceNo": "586b4a69-31fe-458d-bcc0-e297e509c8a6",
  "balance": {
    "value": "1299991.00",
    "currency": "IDR"
  },
  "additionalInfo": {
    "type": "payment_bill",
    "billId": "21bb73fd-e624-4e2c-b5a0-188ca66fe222",
    "source": "xplorin",
    "description": "tiket kebun raya",
    "refId": "363a01be-7de1-4a54-a694-7e858306664a"
  }
}'

PreviousPayment BillNextPayment Netzme Seamless

Last updated 1 year ago

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

credentials