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

# Incoming webhooks

> Post into one board with one URL.

Board admins create incoming webhooks in board settings. The URL is
the credential — POST JSON to it:

```bash theme={null}
curl -X POST "$WEBHOOK_URL" \
  -H "Content-Type: application/json" \
  -d '{"content": "deploy finished", "embeds": [{"title": "v1.2.0"}]}'
```

Webhook messages render with the webhook's name. Revoking the webhook
kills the URL immediately.
