Skip to main content
GET
/
api
/
webhooks
List webhook subscriptions
curl --request GET \
  --url https://your-production-domain.com/api/webhooks \
  --cookie connect.sid=
{
  "subscriptions": [
    {
      "id": 123,
      "orgId": 123,
      "name": "<string>",
      "url": "<string>",
      "events": [
        "<string>"
      ],
      "isActive": true,
      "facilityId": 123,
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

connect.sid
string
cookie
required

Session-based authentication cookie

Query Parameters

orgUnitId
integer

Target organization unit (team) id. Internal operators with cross-org access use this for webhook CRUD; facility-scoped sessions omit it and the org is resolved from context.

Response

200 - application/json

List of subscriptions (signing secret masked)

subscriptions
object[]