Webhooks
List webhook deliveries
List the most recent webhook delivery attempts (up to 100) for the tenant, newest first. Pass the optional endpoint query parameter to filter to a single endpoint.
get/v1/webhooks/deliveries
Query parameters
endpointstring uuid
Optional webhook endpoint UUID to filter deliveries by.
Response
A bare JSON array of webhook delivery objects.
Example response
[
{
"id": "c9a1b2c3-d4e5-6f70-8192-a3b4c5d6e7f8",
"endpoint_id": "b8f0f4a2-2b1e-4b3a-9d0e-4a1c2d3e4f50",
"endpoint_label": "Production events",
"event_type": "credential.issued",
"event_id": "evt_9f3c1a20b7",
"request_url": "https://api.acme.example/webhooks/didit",
"response_status": 200,
"response_time_ms": 142,
"status": "delivered",
"created_at": "2026-07-02T23:51:58.746686+00:00"
}
]