- Syncing incident data with third-party tools
- Triggering external automations
- Creating integrations that aren’t yet supported natively
How to Set Up the “Send a webhook” Step
- Add the Step: Add a “Send a webhook” step to any workflow. This step can be placed after any condition you define, like when an incident is created or when the status changes.
- Configure the Webhook:
-
Endpoint URL: The destination URL where the webhook should be sent. This must be publicly accessible. Example:
https://eok0t15y9atgyjz.m.pipedream.net -
HTTP Method: Choose from
GET,POST,PUT,PATCH, orDELETE. Most webhook consumers expectPOST. -
Headers (Optional): You can include any number of custom headers using key-value pairs. These might be needed for authentication or content type. Example:
-
Body (Optional): This is the payload that will be sent in the request body. It supports workflow variable interpolation, so you can include values like the incident name or ID dynamically.
- Using the dashboard editor
- Position your cursor where you want the variable inserted
- Click the “Insert variable” button in the body field’s toolbar
-
Select the variable you need (e.g.,
incident → id) The variable will appear as a highlighted badge in the editor, and will be replaced with the actual value when the webhook is sent.
- Using the API
{{variable.path}}syntax in your request body and it will be parsed into interpolatable variables. For example:
Example Use Cases
Here are a few examples of how you might use the “Send a webhook” step:- Notifying an Internal Tool: Send a webhook to a custom in-house dashboard to update a real-time incident feed with the latest incident status or metadata.
- Triggering a Runbook in an External System: Use the webhook to start an automated runbook in systems like RunDeck when an incident enters a particular state (e.g. Critical or Resolved ).
- Syncing with a Ticketing System: Push incident data into a ticketing system to create or update a linked issue whenever an incident is created.
- Logging to an Audit Service: Send a record of key incident lifecycle events (e.g. status changed to Resolved, or lead updated) to a logging service or data warehouse.
- Broadcasting to a Notification Bot: Trigger a message via a custom Slack bot or Discord bot that posts structured incident details in a dedicated alerting channel.
Things to Note
- The request will timeout after 15 seconds if your endpoint doesn’t respond in time.
- Make sure your endpoint can handle incoming requests reliably — use tools like Pipedream or RequestBin for testing.