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

# Update webhook endpoint

`PATCH /webhooks/endpoints/{id}`

Update an existing webhook endpoint. All fields are optional. Changing the URL resets the failure counter. Re-enabling an endpoint clears the disabled reason and resets the failure counter.

## Path parameters

- `id` string, required — Webhook endpoint ID

## Request body

- object
  - `name` string — Endpoint name (1-50 chars)
  - `url` string, uri — Webhook endpoint URL (HTTPS only)
  - `subscribedEvents` string[] — Events to subscribe to
  - `active` boolean — Enable or disable the endpoint

## Response `200`

Endpoint updated

- object
  - `data` object, required
    - `id` string, required
    - `name` string, required
    - `url` string, required
    - `signingSecret` string, required — Masked signing secret
    - `active` boolean, required
    - `disabledReason` string, nullable, required
    - `consecutiveFailures` number, required
    - `subscribedEvents` string[], required
    - `rotationActive` boolean, required
    - `secretExpiresAt` number
    - `createdAt` number, required
    - `updatedAt` number, required

## Other responses

- `400` — Invalid URL or events
- `401` — Unauthorized
- `404` — Endpoint not found

---

[API](https://skmtc.net/rendobar/apis/rendobar-api.md) · [All operations](https://skmtc.net/rendobar/apis/rendobar-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rendobar/rendobar-api/versions/d536c211f602/schema)
