---
title: "Update a webhook endpoint"
method: PATCH
path: "/v1/webhooks/endpoints/{id}"
tags: ["Webhooks"]
---

# Update a webhook endpoint

`PATCH /v1/webhooks/endpoints/{id}`

Updates the delivery URL, subscribed event types, or delivery status for a webhook endpoint.

## Path parameters

- `id` string, required — The webhook endpoint ID

## Request body

- UpdateWebhookEndpointRequest — Fields to update on a webhook endpoint
  - `disabled` boolean — Pause or resume delivery to the endpoint
  - `filterTypes` string[], nullable — New event types to deliver. Pass a non-empty array to replace the filter, or null to clear it so every event type is delivered. Omit to leave it unchanged.
  - `url` string, uri — New delivery URL

## Response `200`

Endpoint updated successfully

- UpdateWebhookEndpointResponse — The updated webhook endpoint
  - `endpoint` WebhookEndpoint, required — A webhook subscription endpoint
    - `createdAt` string, date-time, required — When the endpoint was created
    - `disabled` boolean, required — Whether delivery to this endpoint is disabled
    - `filterTypes` string[], nullable, required — Event types delivered to this endpoint, or null when no filter is set and every event type is delivered
    - `id` string, required — Unique identifier for the webhook endpoint
    - `updatedAt` string, date-time, required — When the endpoint was last updated
    - `url` string, uri, required — The URL where webhook events are sent

## Other responses

- `400` — The request was malformed or contained invalid parameters.
- `401` — Authentication is required. Provide a valid API key.
- `403` — You don't have permission to access this resource.
- `404` — The requested resource was not found.
- `429` — You have exceeded the rate limit. Please slow down.
- `500` — An unexpected error occurred
- `501` — The requested operation is not implemented.

---

[API](https://skmtc.dev/withchima/apis/tella-public-api.md) · [All operations](https://skmtc.dev/withchima/apis/tella-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/withchima/tella-public-api/revisions/ba2bb13928a5/schema)
