For the complete documentation index, see llms.txt. This page is also available as Markdown.

Webhooks

List Webhooks

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
pageinteger · int32Optional
perPageinteger · int32Optional
Responses
200

List of webhooks

application/json
totalRowsnumberOptional
get/webhooks

Create Webhook

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
idstringOptional

A unique ID for the Webhook. Ignored when creating & updating webhooks.

urlstringRequired

The URL of the webhook, which will receive requests with data for any events fired that fall within the events of the Webhook.

tokenstringOptional

A string used to hash the webhook body for verification.

enabledbooleanOptional

Whether or not the Webhook is enabled/active.

Responses
200

Details about the new Webhook

application/json
idstringOptional

A unique ID for the Webhook. Ignored when creating & updating webhooks.

urlstringRequired

The URL of the webhook, which will receive requests with data for any events fired that fall within the events of the Webhook.

tokenstringOptional

A string used to hash the webhook body for verification.

enabledbooleanOptional

Whether or not the Webhook is enabled/active.

post/webhooks

Retrieve Webhook

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired

ID of the Webhooks

Responses
200

Details about the webhooks

application/json
idstringOptional

A unique ID for the Webhook. Ignored when creating & updating webhooks.

urlstringRequired

The URL of the webhook, which will receive requests with data for any events fired that fall within the events of the Webhook.

tokenstringOptional

A string used to hash the webhook body for verification.

enabledbooleanOptional

Whether or not the Webhook is enabled/active.

get/webhooks/{id}

Update Webhook

put
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired

ID of the Webhook

Body
idstringOptional

A unique ID for the Webhook. Ignored when creating & updating webhooks.

urlstringRequired

The URL of the webhook, which will receive requests with data for any events fired that fall within the events of the Webhook.

tokenstringOptional

A string used to hash the webhook body for verification.

enabledbooleanOptional

Whether or not the Webhook is enabled/active.

Responses
200

The updated webhook

application/json
idstringOptional

A unique ID for the Webhook. Ignored when creating & updating webhooks.

urlstringRequired

The URL of the webhook, which will receive requests with data for any events fired that fall within the events of the Webhook.

tokenstringOptional

A string used to hash the webhook body for verification.

enabledbooleanOptional

Whether or not the Webhook is enabled/active.

put/webhooks/{id}

Delete Webhook

delete
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired

ID of the Webhook

Responses
204

No Content

No content

delete/webhooks/{id}

No content

Last updated

Was this helpful?