Documentation Index
Fetch the complete documentation index at: https://docs.atollhq.com/llms.txt
Use this file to discover all available pages before exploring further.
Outbound webhooks let Atoll notify external systems when work changes.
Use cases
- Notify a deployment system when an issue is marked done.
- Send task changes into a data warehouse.
- Trigger internal automation on assignment or priority changes.
- Mirror updates into Slack, Discord, or another project system.
Create a webhook
atoll webhook create --url https://example.com/atoll-webhook --events issue.created,issue.updated
Or use the API:
{
"url": "https://example.com/atoll-webhook",
"events": ["issue.created", "issue.updated"],
"enabled": true
}
Inspect deliveries
GET /api/webhooks/{id}/deliveries
Delivery history keeps the recent payloads and outcomes needed for debugging.
Redeliver
POST /api/webhooks/{id}/redeliver/{deliveryId}
Use redelivery after the receiving endpoint has been fixed.
Test
POST /api/webhooks/{id}/test
The test route sends a ping event to confirm the receiver is reachable.
Webhook URLs must use HTTPS.