コンテンツにスキップ

Get Delivery.

GET
/api/admin/webhooks/{id}/deliveries/{deliveryId}
Code sample: Shell / cURL
curl --request GET \
--url https://auth.example.com/api/admin/webhooks/example/deliveries/example \
--header 'Authorization: Bearer <token>'

Get Delivery in the Webhooks area. Use this operation to retrieve delivery data without mutating tenant state.

id
required
string
deliveryId
required
string

Successful JSON response.

Media type application/json
object
delivery
required
object
delivery_id
string
webhook_id
string
event_type
string
event_id
string
status
string
status_code
integer
request_headers
object
key
additional properties
string
request_body
response_body
error_message
string
attempts
integer
next_retry_at
string format: date-time
created_at
string format: date-time
completed_at
string format: date-time
duration_ms
integer
has_detail
boolean
detail_artifact_id
string
key
additional properties
webhook
required
object
id
required
string
name
required
string
url
required
string format: uri
key
additional properties
key
additional properties
Example
{
"delivery": {
"delivery_id": "delivery_123",
"webhook_id": "wh_123",
"event_type": "user.created",
"event_id": "evt_123",
"status": "success",
"status_code": 200,
"request_headers": {
"content-type": "application/json"
},
"request_body": {
"id": "evt_123"
},
"response_body": "ok",
"error_message": null,
"attempts": 1,
"next_retry_at": null,
"created_at": "2026-02-02T10:00:00.000Z",
"completed_at": "2026-02-02T10:00:00.000Z",
"duration_ms": 120,
"has_detail": true,
"detail_artifact_id": "artifact_123"
},
"webhook": {
"id": "wh_123",
"name": "CRM sync",
"url": "https://example.com/webhook"
}
}

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"
}

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"
}

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"
}