Skip to main content
GET
List delivery log for a webhook

Authorizations

Authorization
string
header
required

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

Query Parameters

webhook_id
string<uuid>
required
limit
integer
default:50
Required range: 1 <= x <= 200

Response

Successful Response

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.