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

Webhooks

Get all webhooks

get
Responses
200

Success

application/json
_idstringOptional

Unique identifier of the webhook.

urlstring · urlOptional

URL where the webhook will receive notifications.

eventsstring[]Optional

array with events name

get
/webhooks
200

Success

Create a new webhook

post
Body
_idstringOptional

Unique identifier of the webhook.

urlstring · urlOptional

URL where the webhook will receive notifications.

eventsstring[]Optional

array with events name

Responses
post
/webhooks
201

A webhook id

Get a webhook by id

get
Path parameters
idstringRequired
Responses
200

Success

application/json
_idstringOptional

Unique identifier of the webhook.

urlstring · urlOptional

URL where the webhook will receive notifications.

eventsstring[]Optional

array with events name

get
/webhooks/{id}
200

Success

Update a webhook by id

put
Path parameters
idstringRequired
Responses
put
/webhooks/{id}
204

Success

No content

Delete a webhook by id

delete
Path parameters
idstringRequired
Responses
delete
/webhooks/{id}
204

Success

No content

Last updated