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.readList webhook endpoints.
POST
/webhook-endpointswebhooks.writeCreate an endpoint. The signing secret is returned once.
{
"url": "https://example.com/hooks/mytabulon",
"events": ["invoice.paid", "client.created", "file.uploaded"],
"description": "Production billing sync"
}PATCH
/webhook-endpoints/{id}webhooks.writeUpdate URL or events, or pause with is_active: false.
DELETE
/webhook-endpoints/{id}webhooks.writeDelete an endpoint.
GET
/webhook-deliverieswebhooks.readList recent deliveries. Filter: endpoint_id.