List webhook deliveries
The delivery attempts for one webhook, newest first.
/v1/webhooks/{id}/deliveriesAPI keyEach delivery is one event sent to this webhook. A delivery stays pending while it is being retried, and ends as success (your endpoint answered with a 2xx status) or failed. Results are ordered by creation time, newest first, and paginated with a cursor.
Path parameters
The webhook ID.
Query parameters
How many deliveries to return, from 1 to 100.
The nextCursor from the previous page.
Response
The deliveries.
Show delivery propertiesHide delivery properties
The delivery ID, whd_…. Sent to your endpoint in the Flaresend-Delivery-Id header.
The webhook ID.
The event ID, evt_…. Sent in the Flaresend-Event-Id header and as id in the payload. Test events start with evt_test_.
For example email.delivered.
How many times the delivery has been tried. 0 before the first try.
pending while waiting or retrying.
The HTTP status of the last try. null when there was no response (timeout or network error).
The first 1,024 characters of the last response body, or the error, for example timeout after 10s.
When the next retry is due. null once the delivery is finished.
ISO 8601 timestamp.
When it ended as success or failed.
Pass it as cursor to get the next page. null on the last page.
Errors
| Status | Code | When |
|---|---|---|
| 404 | webhook_not_found | No webhook with this ID in the project. |