Dead-letter Queue API
Inspect and replay dead-lettered deliveries.
See the Dead-letter queue concept for background.
List dead-lettered deliveries
Section titled “List dead-lettered deliveries”GET /v1/dlq
Paginated. Same filter shape as list-deliveries.
Parameters
Section titled “Parameters”| Name | Type | Required | Description |
|---|---|---|---|
destination_id | string | no | |
since | string | no | |
cursor | string | no |
Returns
Section titled “Returns”A page of dead deliveries.
Example
Section titled “Example”curl -X GET https://api.harbor.example/v1/dlq \ -H "Authorization: Bearer hk_live_your_api_key"Replay a dead-lettered delivery
Section titled “Replay a dead-lettered delivery”POST /v1/dlq/{delivery_id}/replay
Re-enter the delivery into the retry pipeline. Retries start fresh.
Returns
Section titled “Returns”The delivery, now ‘retrying’.
Example
Section titled “Example”curl -X POST https://api.harbor.example/v1/dlq/del_01ABC/replay \ -H "Authorization: Bearer hk_live_your_api_key" \ -H "Content-Type: application/json"Errors
Section titled “Errors”delivery_not_founddelivery_too_old