API reference

Webhook endpoints

Manage webhook endpoints programmatically. For the event catalog and signature verification, see the Webhooks guide.

https://api.mytabulon.com/v1
GET/webhook-endpointswebhooks.read

List webhook endpoints.

POST/webhook-endpointswebhooks.write

Create an endpoint. The signing secret is returned once.

request
{
  "url": "https://example.com/hooks/mytabulon",
  "events": ["invoice.paid", "client.created", "file.uploaded"],
  "description": "Production billing sync"
}
PATCH/webhook-endpoints/{id}webhooks.write

Update URL or events, or pause with is_active: false.

DELETE/webhook-endpoints/{id}webhooks.write

Delete an endpoint.

GET/webhook-deliverieswebhooks.read

List recent deliveries. Filter: endpoint_id.