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

# Update a webhook endpoint

`PUT /v1/webhooks/endpoints/{endpointId}`

Update an existing webhook endpoint configuration.

## Path parameters

- `endpointId` string, required

## Headers

- `X-API-Key` string

## Request body

- UpdateEndpointDto
  - `url` string, uri — The webhook endpoint URL
  - `description` string — Description of the endpoint
  - `filterTypes` string[] — Event types to send to this endpoint. Pass an empty array to subscribe to all event types. Omit to leave unchanged.
  - `disabled` boolean — Disable or re-enable the endpoint. Disabled endpoints receive no events.
  - `metadata` object — Optional endpoint metadata

## Response `200`

Webhook endpoint updated successfully

- EndpointResponseDto
  - `id` string, required — Endpoint ID
  - `url` string, required — The webhook endpoint URL
  - `description` string, required — Description of the endpoint
  - `filterTypes` string[], required — Event types sent to this endpoint. An empty array means the endpoint is subscribed to all event types.
  - `disabled` boolean, required — Whether the endpoint is disabled
  - `createdAt` string, required — Endpoint creation timestamp
  - `updatedAt` string, required — Endpoint last update timestamp
  - `metadata` object — Optional endpoint metadata

## Other responses

- `401` — Unauthorized - Invalid or missing authentication credentials

---

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