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
Webhook Data Apis
📌
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
companyId
string 
required

Request 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
response_code
integer <int32>
optional
response_message
string 
optional
payload
array[object (WebhookDataResponse) {6}] 
optional
companyId
string 
optional
headers
object 
optional
webhookUrl
string 
optional
sslCertificate
string 
optional
events
array[string]
optional
Allowed values:
PAYOUT_SUCCESSPAYOUT_PENDINGPAYOUT_FAILEDUTILITY_BILLPAY_SUCCESSUTILITY_BILLPAY_FAILEDUTILITY_BILLPAY_PENDING
enabled
boolean 
optional
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