Retrieve a delivery attempt
/webhooks/{webhook_id}/deliveries/{webhook_delivery_id}/attempts/{attempt_id}Retrieves a single attempt of a webhook delivery. The response excerpt captured from the receiving endpoint is masked.
Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.
In: header
Path Parameters
Header Parameters
Optional client-generated identifier of the request, up to 64 characters from [A-Za-z0-9._-]. Echoed back in the response and recorded in the request log; it never replaces the server-generated X-Request-Id.
length <= 64Response Body
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/webhooks/string/deliveries/string/attempts/string"{ "data": { "duration_ms": 0, "finished_at": "2019-08-24T14:15:22Z", "http_status": 0, "next_attempt_at": "2019-08-24T14:15:22Z", "number": 0, "object": "webhook_delivery_attempt", "origin": "automatic", "response_excerpt": "string", "started_at": "2019-08-24T14:15:22Z", "transport_error": "string" }}Resend a webhook delivery POST
Manually resends a completed webhook delivery. Only deliveries with status `delivered`, `failed`, or `dead` can be resent. The destination URL is validated again before the delivery is queued. The delivery keeps the same event ID, and the new attempt is recorded when it is actually sent; previous attempts are preserved.
Replay webhook events POST
Resends, in bulk, events that were already delivered to this webhook endpoint. The selection can be narrowed by `event_ids`, by an `occurred_after`/`occurred_before` time range, and by `event_types`. Only events that occurred before the request was received and are still retained are eligible. The replay is processed asynchronously as an operation with one item per event. Use the `Location` header to track its progress and per-event results. A replay adds new attempts to the existing deliveries; it never creates new deliveries. The request is rejected if no eligible events match the selection.