List recent webhook deliveries for a specific webhook.
GET /webhooks/{webhook_id}/events
Returns a list of recent webhook delivery attempts for the specified webhook. Results are sorted by most recent first.
Parameter | Type | Required | Description |
---|---|---|---|
webhook_id | string | Yes | The ID of the webhook to list deliveries for. |
Field | Type | Description |
---|---|---|
id | string | Unique identifier for the delivery event. |
event_type | string | The type of event delivered. |
timestamp | string | ISO timestamp of when the delivery occurred. |
status_code | number | HTTP status code returned by the webhook endpoint. |
request | object | The request payload sent to the webhook. |
response | object | The response returned by the webhook endpoint. |
Content-Type
: Always application/json
User-Agent
: Sender identifierX-Webhook-Id
: Webhook unique IDX-Event-Id
: Event unique IDX-Customer-Id
: Authenticated customer IDX-Target-type
: Always CDD
X-Event-Name
: Specific CDD event (e.g., CDD_COMPLETED
)X-Signature
: HMAC signature for authenticityX-Target-type
as ALERT
and X-Event-Name
as MONITORING_ALERT_FIRED
.Webhook ID to filter deliveries.
List of recent webhook delivery events.
The response is of type object[]
.