Webhook Alerts

Send real-time event notifications to any HTTP endpoint, Slack, Telegram, or custom integration via webhooks.

How to Set Up a Webhook

  1. Log in to Webhook Dashboard.
  2. Click Create Webhook and fill in:
    • Name – A descriptive label.
    • URL – Your endpoint (HTTP, Slack, Telegram, etc.).
    • Payload Template – Customize JSON fields.
  3. Use variables in payload:$EVENT_MSG,$EVENT_TITLE,$DATE,$ID,$ERROR_MSG.
  4. 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.

Configure Your First Webhook