Webhooks
Manage webhook endpoints programmatically — register your receiver, list what is subscribed, and remove endpoints. For delivery format, signature verification, and retry behaviour, see the Webhooks guide.
List webhook endpoints Embed Automate and above
Returns every webhook endpoint registered for your workspace, plus the full list of subscribable event names. Signing secrets are never included in list responses.
GET
/v1/headless/webhooksCreate a webhook endpoint Embed Automate and above
Registers an endpoint and generates its signing secret.
The
secret is returned only in this response — store it immediately. To rotate a secret, delete the endpoint and create it again. - The
urlmust usehttps://. eventsmust contain at least one valid event name (seeGET /v1/headless/webhooksfor the list, e.g.course.commenced,course.completed,course.created).
POST
/v1/headless/webhooksBody parameters
| Field | Type | Required | Desc | Options |
|---|---|---|---|---|
url | string | Yes | HTTPS URL webhook deliveries will be POSTed to | — |
events | string[] | Yes | Event names to subscribe to, e.g. course.completed | — |
enabled | boolean | No | — |
Delete a webhook endpoint Embed Automate and above
Removes an endpoint. Deliveries stop immediately and its signing secret is invalidated.
DELETE
/v1/headless/webhooks/{id}Path parameters
| Field | Description | Options |
|---|---|---|
id | Webhook endpoint ID | — |