Webhooks API
Manage webhooks for your applications to receive real-time event notifications.
Base URL
https://api.reeng.xyz/api/webhooks
Authentication
All webhook endpoints require API key authentication. Include your API key in the request headers:
X-API-Key: your-api-key
Response Format
Success:
{
"status": true,
"message": "Success message",
"data": { }
}
Error:
{
"status": false,
"message": "Error message",
"errors": [ ]
}
Webhook ID Format
Webhook IDs follow the format: wh_ followed by 32 hexadecimal characters.
Example: wh_a1b2c3d4e5f6789012345678901234ab
Signing Keys
When you create a webhook, a signing key is generated and returned in the response. Store this signing key securely - it will not be shown again and is required to verify webhook payloads.