Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Webhook Deliveries

You can inspect webhook delivery attempts through the API.

List Deliveries for a Webhook

curl https://your-telebugs-instance.com/api/telebugs/v1/projects/PROJECT_ID/webhooks/WEBHOOK_ID/deliveries \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"

Filtering

ParameterDescriptionExample
eventFilter by event type?event=group.resolved
successFilter by success status?success=true

Example:

curl "https://your-telebugs-instance.com/api/telebugs/v1/projects/PROJECT_ID/webhooks/WEBHOOK_ID/deliveries?event=group.resolved&success=false" \
  -H "Authorization: Bearer YOUR_API_KEY"

Deliveries support cursor-based pagination.

Get a Single Delivery

curl https://your-telebugs-instance.com/api/telebugs/v1/projects/PROJECT_ID/webhooks/WEBHOOK_ID/deliveries/DELIVERY_ID \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"