Enkash Developer Portal
Home
Home
Login
  1. Webhook
  • Back to home
  • Payout APIs
  • Encryption & Decryption Guide
    • Generate Authentication Token
      POST
  • Beneficiary
    • Add Beneficiary
      POST
    • Search Beneficiary
      POST
    • Delete Beneficiary
      DELETE
  • Transfer
    • Initiate Transfer
      POST
    • Initiate Batch Transfer
      POST
    • Search Payout Transfers
      POST
  • Bank Details
    • Retrieve Account Balance
      GET
    • Retrieve Bank Account Details
      GET
    • Add Funds to EnKash
      POST
    • Fetch Statement
      POST
  • 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