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

Withdraw Status Notification

POST https://tokoapisnap-stg.netzme.com/api/v1.0/snap/withdraw/notif

Parameter
Data Type
Description

originalReferenceNo

String

Request Id

originalPartnerReferenceNo

String

Customer Ref Number

amount

Object

Amount

value

String

Value Amount

currency

String

Currency amount

latestTransactionStatus

String

Status

transactionStatusDesc

String

Status description

additionalInfo

Object

Additional info

type

String

Type of Withdraw, ex : submit_withdraw, submit_withdraw_deposit

Parameter
Data Type
Description

responseCode

String

(HTTP status code + service code + case code)

responseMessage

String

description of response_code

originalReferenceNo

String

originalReferenceNo from request

originalPartnerReferenceNo

String

originalPartnerReferenceNo from request

Response

{
  "responseCode": "2000000",
  "responseMessage": "Successful",
  "additionalInfo": {
    "originalPartnerReferenceNo": "originalPartnerReferenceNo_from_request",
    "originalReferenceNo": "originalReferenceNo_from_request"
  }
}
HEADERS
VALUE

x-callback-token

token from Netzme

Content-Type

application/json

curl --location --request POST 'localhost:9009/v1.0/snap/withdraw/notif'  \
--header 'Content-Type: application/json' \
--header 'x-callback-token: wPdsP4e3kXcXwZoogNulEanpDyNuO6cKLI8URGtdMTs=' \
--data-raw '{
  "amount": {
    "value": "100000.00",
    "currency": "IDR"
  },
  "latestTransactionStatus": "00",
  "transactionStatusDesc": "success",
  "originalReferenceNo": "5f79801b-d4e2-4463-bde9-e0855b5745e9",
  "originalPartnerReferenceNo": "20210309103858740544",
  "additionalInfo": {
    "type": "submit_withdraw"
  }
}'
PreviousSNAP Payment Success Callback QRISNextDeduct Deposit and Split Fee

Last updated 1 year ago