Enkash Developer Portal
Home
Home
Login
  1. Webhook
  • Back to home
  • Payout APIs
  • Encryption & Decryption Guide
    • Generate Authentication Token
  • Beneficiary
    • Add Beneficiary
    • Search Beneficiary
    • Delete Beneficiary
  • Transfer
    • Initiate Transfer
    • Initiate Batch Transfer
    • Search Payout Transfers
  • Bank Details
    • Retrieve Account Balance
    • Retrieve Bank Account Details
    • Add Funds to EnKash
    • Fetch Statement
  • Webhook
    • Create Webhook Configuration
      POST
    • Retrieve Webhook Data
      GET
  1. Webhook

Retrieve Webhook Data

GET
/api/v0/webhook-data
📌
Use this API to fetch webhook data sent by EnKash to your configured endpoint.
This is helpful for reviewing event notifications - such as transaction status updates or payout confirmations, especially if you need to reconcile data or troubleshoot webhook deliveries.

Request

Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://test.your-api-server.com/api/v0/webhook-data?companyId'

Responses

🟢200OK
*/*
OK
Body

Example
{
    "response_code": 0,
    "response_message": "string",
    "payload": [
        {
            "companyId": "string",
            "headers": {
                "property1": "string",
                "property2": "string"
            },
            "webhookUrl": "string",
            "sslCertificate": "string",
            "events": [
                "PAYOUT_SUCCESS"
            ],
            "enabled": true
        }
    ]
}
Modified at 2025-07-08 19:03:55
Previous
Create Webhook Configuration
Built with