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
GET /api/webhooks HTTP/1.1
Accept: */*
200

Success

[
  {
    "_id": "text",
    "url": "text",
    "events": [
      "text"
    ]
  }
]

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
201

A webhook id

application/json
idstringOptional

The webhook ID.

post/webhooks
POST /api/webhooks HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 45

{
  "_id": "text",
  "url": "text",
  "events": [
    "text"
  ]
}
201

A webhook id

{
  "id": "text"
}

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}
GET /api/webhooks/{id} HTTP/1.1
Accept: */*
200

Success

{
  "_id": "text",
  "url": "text",
  "events": [
    "text"
  ]
}

Update a webhook by id

put
Path parameters
idstringRequired
Responses
204

Success

No content

put/webhooks/{id}
PUT /api/webhooks/{id} HTTP/1.1
Accept: */*
204

Success

No content

Delete a webhook by id

delete
Path parameters
idstringRequired
Responses
204

Success

No content

delete/webhooks/{id}
DELETE /api/webhooks/{id} HTTP/1.1
Accept: */*
204

Success

No content

Last updated