---
title: "Send alert notifications by webhook | Grafana OnCall documentation"
description: "Send alert group notifications by webhook You can configure outgoing webhooks to send alerts to destination. Once a webhook is created, you can choose the webhook as a notification method in escalation steps."
---

> For a curated documentation index, see [llms.txt](/llms.txt). For the complete documentation index, see [llms-full.txt](/llms-full.txt).

# Send alert group notifications by webhook

You can configure outgoing webhooks to send alerts to destination. Once a webhook is created, you can choose the webhook as a notification method in escalation steps.

1. In Grafana OnCall, navigate to **Outgoing Webhooks** and click **+ Create**. This is also the place to edit and delete existing webhooks.
2. Name your webhook and enter the destination URL.
3. If the destination requires authentication, enter your credentials. You can enter a username and password (HTTP) or an authorization header formatted in JSON.
4. Configure the webhook payload in the **Data** field. You can use four variables to automate the body of your webhook. The format you use to call the variables must match the structure of how the fields are nested in your alert payload. The **Data** field can use the following four variables to auto-populate the webhook payload with information about the first alert in the alert group:
   
   - `{{ alert_title }}`
   - `{{ alert_message }}`
   - `{{ alert_url }}`
   - `{{ alert_payload }}`
   
   `alert_payload` is always the first level of any variable you want to call.
   
   The following is an example of an entry in the **Data** field that might return an alert name and description.
   
   JSON ![Copy code to clipboard](/media/images/icons/icon-copy-small-2.svg) Copy
   
   ```json
   {
   "name": "{{ alert_payload.labels.alertname }}",
   "message": "{{ alert_payload.annotations.description }}"
   }
   ```
   
   > **NOTE:** If you get an error message and cannot create a webhook, make sure your JSON is formatted correctly.
5. Click **Create Webhook**.
