Webhook Deliveries
Redeliver webhook
Triggers a fresh delivery attempt of the event to the same webhook subscription.
post/v1/webhook_deliveries/{id}/redeliver
Path parameters
idstring uuid required
Example:550e8400-e29b-41d4-a716-44665544000a
Unique identifier of the webhook delivery.
Headers
Idempotency-Keystring required
Idempotency key for safe retries. Reusing a key with an identical request body returns the cached response. Reusing a key with a different body returns 409.
Response
The new webhook delivery resource
Example response
{
"id": "550e8400-e29b-41d4-a716-44665544000a",
"event_id": "550e8400-e29b-41d4-a716-446655440008",
"subscription_id": "550e8400-e29b-41d4-a716-446655440009",
"attempts": [
{
"attempted_at": "2026-01-15T10:30:05Z",
"status_code": 200
}
],
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-01-15T10:35:00Z"
}Changes
Changed in 2 of the 38 revisions of this API.11
- ▲
the
headerrequest parameterIdempotency-Keybecame requiredrequest-parameter-became-required
- ▲
- ○
endpoint added
endpoint-added
- ○