Skip to content

Replay a failed webhook delivery.

POST
/api/admin/webhooks/{id}/replay
Code sample: Shell / cURL
curl --request POST \
--url https://auth.example.com/api/admin/webhooks/example/replay \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "delivery_id": "delivery_123" }'

Replay Webhook in the Webhooks area. The request body is JSON unless the detailed schema for this operation states otherwise.

id
required
string
X-Tenant-Id
string

Tenant selector for multi-tenant admin requests.

Idempotency-Key
string

Idempotency key for state-changing operations that support replay protection.

Media type application/json
object
delivery_id
required
string
key
additional properties
Example
{
"delivery_id": "delivery_123"
}

Webhook delivery replay response.

Media type application/json
object
success
required
boolean
webhook_id
required
string
original_delivery_id
required
string
new_delivery_id
required
string
status_code
integer
>= 100 <= 599
response_body
string | null
error
string
duration_ms
required
integer
timestamp
string format: date-time
key
additional properties
Example generated
{
"success": true,
"webhook_id": "example",
"original_delivery_id": "example",
"new_delivery_id": "example",
"status_code": 1,
"response_body": "example",
"error": "example",
"duration_ms": 1,
"timestamp": "2026-04-15T12:00:00Z"
}

Error response.

Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{
"error": "example",
"message": "example",
"error_description": "example"
}