Register a webhook subscription
Registers an outbound endpoint that receives evaluation and decision events (used by the Make.com “Watch verdicts” instant trigger). Events default to approved/rejected/changed when omitted.
https://www.tracira.com/api/subscriptionsAuthorization
webhookToken Workspace webhook token from Settings -> Integrations.
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
curl -X POST "https://example.com/api/subscriptions" \ -H "Content-Type: application/json" \ -d '{ "url": "https://hooks.example.com/tracira", "events": [ "approved", "rejected", "changed" ], "source": "make" }'{ "id": "string", "url": "string", "events": [ "string" ]}List webhook subscriptions GET
Lists the workspace's registered endpoints with delivery health. A legacy outbound webhook configured in the old Notifications card is lazily migrated into a source "custom" subscription on first call (active ones only).
Remove a webhook subscription DELETE
Deletes a registered endpoint. Idempotent - removing an already-deleted subscription still returns ok.