Saki Docs
Webhook

List webhooks

Returns all webhooks configured for the given space.

Base URLhttps://app.usesaki.com/api
get/spaces/{space}/webhooks

List webhooks

Returns all webhooks configured for the given space.

AuthorizationBearer <token>

Path Parameters

spacerequiredinteger

The space ID

Response

curl -X GET "https://app.usesaki.com/api/spaces/{space}/webhooks" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "data": [
    {
      "id": 0,
      "url": "string",
      "events": [
        {}
      ],
      "is_active": true,
      "created_at": "2024-01-01T00:00:00Z",
      "updated_at": "2024-01-01T00:00:00Z"
    }
  ]
}