Use feedback
Webhooks and routing
Send selected feedback to Slack, Discord, GitHub Issues, or a generic HTTP endpoint.
Routing uses the selected project
Choose the project at the top of the dashboard sidebar, then open Integrations. Endpoints, rules, delivery logs, retries, and digests belong to that project.
Choose immediate or digest delivery
| Mode | Use it for |
|---|---|
| Immediate | Urgent bugs, high-priority signal, or low-volume channels |
| Daily digest | Higher-volume feedback that a team reviews in batches |
Generic webhook contract
Immediate eventjson
{
"event": "feedback.created",
"version": 1,
"project": { "id": "...", "name": "Acme" },
"feedback": { "id": "...", "message": "...", "status": "new" }
}- Return a 2xx response quickly.
- Verify optional HMAC signature headers against the raw body.
- Treat repeated delivery as possible and make handlers idempotent.
- Use delivery history to inspect status, response details, attempts, and replay results.