SeatBuilderSeatBuilder Docs

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.

GET/api/v1/webhooks

Response Body

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