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

idstring uuid required

Unique identifier of the webhook delivery.

type'webhook_delivery' required

Resource type discriminator.

event_idstring uuid required

Identifier of the event this delivery was for.

subscription_idstring uuid required

Identifier of the webhook subscription this delivery targeted.

status'pending' | 'delivered' | 'failed' | 'processing' | 'ignored' required

Current status of the delivery.

created_atstring date-time required

ISO 8601 UTC timestamp when the delivery was created.

updated_atstring date-time required

ISO 8601 UTC timestamp when the delivery was last updated.

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