Skip to content

Alerts

The Alerts page is a focused queue of outbound messages that reached failed_permanent after retry attempts were exhausted.

Use it for rapid triage and escalation without scanning all message history.

  1. Open Alerts.
  2. Filter by endpoint to narrow blast radius.
  3. Open failed message IDs to inspect full detail and delivery history.
  4. Fix downstream cause.
  5. Replay from message detail once the destination is healthy.
Terminal window
# Query failed outbound logs
curl "https://api.hookbridge.io/v1/logs?status=failed_permanent&limit=50" \
-H "Authorization: Bearer YOUR_API_KEY"
# Get one message
curl https://api.hookbridge.io/v1/messages/YOUR_MESSAGE_ID \
-H "Authorization: Bearer YOUR_API_KEY"
# Replay one failed message
curl -X POST https://api.hookbridge.io/v1/messages/YOUR_MESSAGE_ID/replay \
-H "Authorization: Bearer YOUR_API_KEY"
Personalize Examples

Enter your credentials to populate code examples throughout the docs.