> ## Documentation Index
> Fetch the complete documentation index at: https://proxylink.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Alert Channels

> Configure where ProxyLink sends monitoring alerts — email, Slack, Teams, or custom webhooks.

## Slack

1. Create an Incoming Webhook in your Slack workspace
2. Paste the webhook URL in the proxy link's monitoring settings

## Microsoft Teams

Microsoft **retired the Office 365 Incoming Webhook connector** — use a **Workflow** instead:

1. In Teams, open the target channel → **⋯** → **Workflows**
2. Choose the **"Post to a channel when a webhook request is received"** template
3. Finish the setup and copy the generated URL (it ends in `logic.azure.com`)
4. Paste that URL in the proxy link's monitoring settings

<Note>
  The old connector-based webhooks (`*.webhook.office.com`) stopped delivering when Microsoft retired connectors. If your Teams alerts went silent, recreate the webhook via **Workflows** as above and update the URL.
</Note>

## Custom webhook

ProxyLink sends a POST request with a JSON body to your URL:

```json theme={null}
{
  "status": "down",
  "label": "Hotel Anna — NVR",
  "target": "192.168.20.10:80",
  "time": "2026-05-11 20:00:00 EEST"
}
```

`status` is `"down"` or `"up"`.
