アプリケーションイベントを即座のアラートに変換。EchobellのWebhookシステムは柔軟なデータ処理でGETおよびPOSTリクエストをサポート。
Webhookトリガーの仕組み
各チャンネルは独自のWebhook URLを取得します。アプリケーションがこのURLにデータを送信すると、Echobellはペイロードを処理し、すべての購読者に通知を送信します。
チャンネル設定から独自のWebhook URLをコピー。
アプリケーションからGETまたはPOSTリクエストを送信して通知をトリガー。
テンプレートで変数を使用して動的な通知コンテンツを作成。
統合例
人気のサービスやアプリケーションとEchobell Webhookを統合する方法をご覧ください。
GET https://hook.echobell.one/t/xxx
?amount=100&status=success
POST https://hook.echobell.one/t/xxx
Content-Type: application/json
{
"amount": 100,
"status": "success"
}
Webhook変数
{{amount}}、{{status}}、{{header["content-type"]}}などのテンプレート変数を通じてリクエストデータにアクセス。
Server {{server_name}} alert: {{message}}
This template will use the server_name and message variables from your webhook data.
Server web-01 alert: High CPU usage detected
The final notification sent to all subscribers of this channel.