v6

OpenAPI 3.1.0raw.githubusercontent.com2026-08-0161197504.7 KB
webhooks

Retrieve webhook delivery

Retrieve a webhook delivery by ID.

get/webhook-deliveries/{delivery_id}

Path parameters

delivery_idstring required

The ID of the webhook delivery to retrieve.

The ID of the webhook delivery to retrieve.

Response

OK

created_atstring date-time required

The timestamp (in ISO-8601 format) of when the resource was created.

eventstring nullable required

ID of the event being delivered; null for test deliveries.

failed_atstring date-time nullable required

Time the delivery permanently failed.

idstring required

Unique resource identifier.

modified_atstring date-time required

The timestamp (in ISO-8601 format) of when the resource was last modified.

next_attempt_atstring date-time nullable required

Time the next delivery attempt is scheduled.

payloadobject required

Delivery payload.

status'pending' | 'in_progress' | 'succeeded' | 'failed' required
succeeded_atstring date-time nullable required

Time the delivery succeeded.

webhookstring required

ID of the webhook this delivery targets.

Example response

{
  "attempts": [
    {
      "response": {
        "duration": 125,
        "status": 200
      }
    }
  ],
  "failed_at": "2026-07-14T09:30:00Z",
  "next_attempt_at": "2026-07-14T09:35:00Z",
  "succeeded_at": "2026-07-14T09:30:00Z"
}