Tracira
API referenceUtilities

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.

posthttps://www.tracira.com/api/subscriptions
POST
/api/subscriptions

Authorization

webhookToken
AuthorizationBearer <token>

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"  ]}