How to Set Up a Webhook
- Log in to Webhook Dashboard.
- Click Create Webhook and fill in:
Name
– A descriptive label.URL
– Your endpoint (HTTP, Slack, Telegram, etc.).Payload Template
– Customize JSON fields.
- Use variables in payload:
$EVENT_MSG
,$EVENT_TITLE
,$DATE
,$ID
,$ERROR_MSG
. - Save and test your webhook.
Example Payload
{
"body": "$EVENT_MSG",
"title": "$EVENT_TITLE",
"date": "$DATE",
"id": "$ID",
"err": "$ERROR_MSG"
}
Webhook Features
Custom Endpoints
Forward events to any HTTP endpoint of your choice.
Telegram
Send alerts directly to Telegram chats via bots.
Slack
Integrate with Slack channels and notify your team.
Secure Retries
Built-in retry logic with exponential backoff on failures.
Delivery Reports
Monitor webhook success/failure rates and latencies.