Create Webhook

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Register a webhook URL for payment notifications. Requires Merchant Portal Bearer token.

Flow

sequenceDiagram
    autonumber
    participant A as Portal Admin
    participant D as DigetPay Portal API
    participant M as Your Server

    A->>D: POST /merchant/account/webhooks
    D-->>A: 201 { id, url, secret }
    Note over A: Store signing secret securely
    Note over D,M: On payment events, DigetPay POSTs signed payload to your url
    D->>M: POST webhook (payment.success / payment.failed)
    M-->>D: 200 OK

Responses

{
  "success": {
    "status": 201,
    "body": {
      "id": "wh_abc123",
      "url": "https://yourstore.com/webhooks/digetpay",
      "secret": "whsec_shown_once",
      "active": true
    }
  }
}

Guide →

Body Params
uri
required
events
array of strings
events
boolean
Response

Language
Credentials
Bearer
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json