List webhook endpoints
Returns a paginated list of webhook endpoints in the calling workspace and environment. Signing secrets are omitted; use `/rotate-secret` to obtain a new one if lost.
curl -X GET "http://localhost:3000/api/v1/webhooks"{
"items": [
{
"id": "wh_2a8f1d",
"url": "https://api.brooklynmusichall.example/seats-webhook",
"events": [
"seat.held",
"seat.booked",
"seat.released"
],
"description": "Production order pipeline",
"enabled": true,
"createdAt": "2026-09-12T14:22:01.044Z",
"updatedAt": "2026-09-12T14:22:01.044Z"
}
],
"total": 1,
"page": 1,
"limit": 20
}{
"statusCode": 0,
"message": "string",
"errors": {
"property1": [
"string"
],
"property2": [
"string"
]
}
}{
"statusCode": 0,
"message": "string",
"errors": {
"property1": [
"string"
],
"property2": [
"string"
]
}
}Webhooks
register subscribers, rotate signing secrets, and replay failed deliveries.
List webhook deliveries GET
Returns a paginated list of past delivery attempts for an endpoint (last 30 days). Each entry includes the delivery `status`, response code, latency, and any retry history. Page with `?page` and `?limit` (1-100, default 50).