v1

latestOpenAPI 3.1.02026-07-241695611.0 MB
Webhook Management

Update Webhook Endpoint

put/webhooks/{endpoint_id}

Path parameters

endpoint_idstring required

Request body

channelsChannel[] nullable

List of message channels this endpoint listens to (omit for all)

descriptionstring nullable
disabledboolean nullable
filter_typesFilterType[] nullable
metadataobject nullable
rate_limitinteger nullable
uidstring nullable

Optional unique identifier for the endpoint

urlstring uri required
versioninteger nullable

Example request

{
  "channels": [
    "project_123",
    "group_2"
  ],
  "description": "An example endpoint name",
  "filter_types": [
    "user.signup",
    "user.deleted"
  ],
  "uid": "unique-ep-identifier",
  "url": "https://example.com/webhook/",
  "version": 1
}

Response

Successful Response

channelsChannel[] nullable

List of message channels this endpoint listens to (omit for all)

created_atstring date-time required
descriptionstring required

An example endpoint name

disabledboolean nullable
filter_typesFilterType[] nullable
idstring required

The ep's ID

metadataobject required
rate_limitinteger nullable
uidstring nullable

Optional unique identifier for the endpoint

updated_atstring date-time required
urlstring uri required
versioninteger required

Example response

{
  "channels": [
    "project_123",
    "group_2"
  ],
  "filter_types": [
    "user.signup",
    "user.deleted"
  ],
  "id": "ep_1srOrx2ZWZBpBUvZwXKQmoEYga2",
  "uid": "unique-ep-identifier",
  "url": "https://example.com/webhook/",
  "version": 1
}