Webhooks
Deliveries
Returns the webhook's most recent delivery attempts (up to 50, newest first) with status code, duration and a truncated error snippet; the log is kept for 30 days.
GET
/api/{tenant:minlength(2)}/v{version:apiVersion}/webhooks/{id}/deliveries
Request arguments
| Name | Type | Source |
|---|---|---|
| id | Int32 |
Request body example
Response
Response body example
DTO_webhook_delivery
| Name | Type | ReadOnly | Description |
|---|---|---|---|
| event_type | String | Event type | |
| url | String | Url | |
| attempt_number | Int32 | 1 = first send, 2-3 = automatic retries | |
| http_status_code | Int32 (nullable) | Null when the request never completed (timeout, connection error, rejected URL) | |
| ok | Boolean | Ok | |
| error | String | Error | |
| duration_ms | Int64 | Duration ms | |
| created | DateTime | Created |
Generated Aug 31, 2026 16:21