APIWebhooks
Webhook Delivery Retry
Retry a delivery with a fresh set of attempts. Only a `failed` delivery on an `active` webhook can be retried.
POST
/webhooks/{webhook_id}/deliveries/{delivery_id}/retryRetry a delivery with a fresh set of attempts. Only a failed delivery on
an active webhook can be retried.
Path Parameters
webhook_id*string
Format
uuiddelivery_id*string
Format
uuidResponse Body
application/json
application/json
curl -X POST "https://example.com/webhooks/497f6eca-6276-4993-bfeb-53cbbbba6f08/deliveries/497f6eca-6276-4993-bfeb-53cbbbba6f08/retry"{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "webhook_id": "a47606a1-5b39-4a81-9480-c2cb738ff675", "status": "pending", "event_count": 0, "attempt_count": 0, "attempts": [ { "at": "2019-08-24T14:15:22Z", "status_code": 0, "error": "string", "duration_ms": 0, "response_snippet": "string" } ], "next_retry_at": "2019-08-24T14:15:22Z", "retryable": true, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z"}