Skip to main content
POST
Retry a delivery

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

delivery_id
string<uuid>
required

Response

Successful Response

Record of one delivery attempt to a webhook endpoint.

id
string
required

Opaque delivery identifier (UUID).

Example:

"ffff0001-eeee-0002-dddd-000300040005"

webhook_id
string
required

The webhook endpoint this delivery targeted.

event_id
string
required

Stable event identifier. Deduplicate on this.

Example:

"evt_01JBAAAA000000000000000000"

event_type
string
required

Event type string, e.g. humanization.completed.

Example:

"humanization.completed"

created_at
string
required

ISO-8601 timestamp when this delivery was created.

object
string
default:webhook_delivery

Polymorphic discriminator. Always webhook_delivery.

request_body
Request Body · object | null

JSON body we sent in the delivery attempt.

response_status
integer | null

HTTP status code returned by the customer endpoint.

Example:

200

response_body
string | null

First 4096 bytes of the response body (for diagnostics).

attempts
integer
default:0

Number of delivery attempts made so far.

Example:

1

delivered_at
string | null

ISO-8601 timestamp when a successful delivery was recorded.