Skip to main content
PATCH
/
api
/
v1
/
webhooks
/
endpoints
/
{endpoint_id}
Update Endpoint
curl --request PATCH \
  --url https://api.example.com/api/v1/webhooks/endpoints/{endpoint_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>",
  "description": "<string>",
  "filter_types": [
    "<string>"
  ],
  "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'
{
  "id": "<string>",
  "url": "<string>",
  "description": "<string>",
  "filter_types": [
    "<string>"
  ],
  "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

endpoint_id
string
required

Body

application/json
url
string | null
description
string | null
filter_types
string[] | null
user_id
string<uuid> | null

Subscribe only to events for this user. Pass null to remove the filter.

Response

Successful Response

id
string
required
url
string
required
description
string | null
filter_types
string[] | null
user_id
string<uuid> | null