Webhook
List webhooks
Returns all webhooks configured for the given space.
Base URL
https://app.usesaki.com/apiget
/spaces/{space}/webhooksList webhooks
Returns all webhooks configured for the given space.
Authorization
Bearer <token>Path Parameters
spacerequiredintegerThe 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"
}
]
}