---
title: "eWallet Notification"
method: POST
path: "/v1.0/debit/notify"
tags: ["default"]
---

# eWallet Notification

`POST /v1.0/debit/notify`

Durianpay triggers events whenever a status change occurs on your SNAP eWallet transaction. These events are sent to your configured webhook URL via HTTP POST.

- If your server does not respond with 200 OK, we retry delivery after 2, 5, 10, 90, and 210 minutes.
- Each request includes a signature header that must be verified before processing the payload.

## Headers

- `X-TIMESTAMP` string
- `X-SIGNATURE` string
- `X-PARTNER-ID` string
- `X-EXTERNAL-ID` string
- `CHANNEL-ID` string
- `Content-Type` string
- `Accept` string

## Request body

- object
  - `originalReferenceNo` string, required — Durianpay’s unique transaction reference.
  - `latestTransactionStatus` string, required — Latest transaction status code (e.g., “02”).
  - `transactionStatusDesc` string, required — Description of transaction status.
  - `createdTime` string — Time the transaction was created.
  - `amount` object, required
    - `value` string, required — Transaction amount with 2 decimal places.
    - `currency` string, required — Currency format in ISO 4217. Only "IDR" accepted.
  - `additionalInfo` object, required
    - `isLive` boolean, required — Indicates if transaction is live or test.
    - `updatedTime` string, required — Time the transaction was last updated.
    - `paidTime` string — Time the transaction was paid (present only if completed).
    - `failureReason` object
      - `code` integer — Error code (present only if failed)
      - `message` string — Error message (present only if failed)
    - `customerInfo` object
      - `customer_id` string — Durianpay's internal customer reference ID.
      - `customer_ref_id` string — Merchant's internal customer reference ID.
      - `given_name` string — Customer name.
      - `email` string — Customer email address.
      - `mobile` string — Customer phone number.

## Response `200`

OK

- object
  - `responseCode` string — Response code indicating the result of the operation.
  - `responseMessage` string — Message explaining the responseCode.

---

[API](https://skmtc.net/durianpay/apis/durianpay-api.md) · [All operations](https://skmtc.net/durianpay/apis/durianpay-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/durianpay/durianpay-api/versions/ffc0e7e8a227/schema)
