# <a id="bitdrift.public.webhook.v1.AlertNotification"></a>AlertNotification

**Source definition:** [`src/bitdrift/public/webhook/v1/notification.proto#L74-L95`](<https://github.com/bitdriftlabs/api/blob/main/src/bitdrift/public/webhook/v1/notification.proto#L74-L95>)

Describes a webhook notification for a workflow alert.

<section class="proto-fields-table" markdown>
| Field | Type | Description |
|---|---|---|
| alert_name | <span class="proto-type proto-type-primitive">string</span> | Alert name. |
| alert_url | <span class="proto-type proto-type-primitive">string</span> | Alert URL. |
| workflow_name | <span class="proto-type proto-type-primitive">string</span> | Workflow name. |
| workflow_url | <span class="proto-type proto-type-primitive">string</span> | Workflow URL |
| exploration_name | <span class="proto-type proto-type-primitive">string</span> | Exploration name. |
| custom_notification_text | <span class="proto-type proto-type-primitive">string</span> | Custom notification text. |
| labels | <span class="proto-type proto-type-primitive">map<string, string></span> | Additional labels attached to the alert. |

</section>
<p class="h4">Example</p>
```json
{
  "alert_name": "High Crash Rate",
  "alert_url": "https://app.bitdrift.io/alerts/al_123",
  "custom_notification_text": "Crash rate exceeded the configured threshold.",
  "exploration_name": "Crash Reports",
  "labels": {
    "key": ""
  },
  "workflow_name": "Crash Escalation",
  "workflow_url": "https://app.bitdrift.io/workflows/wf_456"
}
```

