Alerts
Why You Would Use This
Section titled “Why You Would Use This”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.
Console Workflow
Section titled “Console Workflow”- Open Alerts.
- Filter by endpoint to narrow blast radius.
- Open failed message IDs to inspect full detail and delivery history.
- Fix downstream cause.
- Replay from message detail once the destination is healthy.
API Workflow
Section titled “API Workflow”# Query failed outbound logscurl "https://api.hookbridge.io/v1/logs?status=failed_permanent&limit=50" \ -H "Authorization: Bearer YOUR_API_KEY"
# Get one messagecurl https://api.hookbridge.io/v1/messages/YOUR_MESSAGE_ID \ -H "Authorization: Bearer YOUR_API_KEY"
# Replay one failed messagecurl -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.