Webhooks
Configure webhooks to receive real-time notifications.
Available Events
| Event | Description |
|---|---|
report.accessed | Report was accessed |
refresh.failed | Dataset refresh failed |
user.invited | New user invited |
alert.triggered | Alert was triggered |
Configure Webhook
- Go to Settings > Integrations
- Click Add Webhook
- Enter the destination URL
- Select events
- Save
Request Format
POST <your_url>
Content-Type: application/json
{
"event": "report.accessed",
"timestamp": "2026-02-04T12:00:00Z",
"data": {
"report_id": "uuid",
"user_email": "user@company.com"
}
}
Signature Verification
Each request includes a signature header for validation:
X-AtlasData-Signature: sha256=...
Validate by comparing with HMAC-SHA256 of the body using your webhook secret.