Retry schedule
Hookdrop uses exponential backoff, spacing retries further apart with each failure:The first attempt happens immediately when the event is received. The schedule above applies to each subsequent retry after a failure.
Dead letter queue
After 4 failed retry attempts (5 total attempts including the first), Hookdrop moves the event to the dead letter queue and stops retrying. When this happens:- You receive an email alert with a link to the affected event.
- The event stays in the queue — it is not discarded and its full payload is preserved.
- You replay it manually once your server is back up and accepting requests.
Replay a dead-letter event
- Dashboard
- API
1
Find the event
Open the endpoint in the dashboard and filter the event list by Status: dead_letter.
2
Open the event
Click the event to open its detail view.
3
Replay
Click Replay event. Hookdrop re-enqueues the event and attempts delivery to all configured destinations immediately.
Related
- Destinations — configure where events are forwarded and set delivery timeouts
- Events API reference — replay events and retrieve delivery logs programmatically
