---
title: "Patch Endpoint"
method: PATCH
path: "/api/v1/app/{app_id}/endpoint/{endpoint_id}"
tags: ["Endpoint"]
---

# Patch Endpoint

`PATCH /api/v1/app/{app_id}/endpoint/{endpoint_id}`

Partially update an endpoint.

## Path parameters

- `app_id` string, required — The Application's ID or UID.
- `endpoint_id` string, required — The Endpoint's ID or UID.

## Request body

- EndpointPatch
  - `channels` string[], nullable
  - `description` string
  - `disabled` boolean
  - `eventTypes` string[], nullable
  - `metadata` object
  - `throttleRate` integer, nullable — Maximum messages per second to send to this endpoint. Outgoing messages will be throttled to this rate.
  - `uid` string, nullable — The Endpoint's UID.
  - `url` string, uri

## Response `200`

- EndpointOut
  - `channels` string[], nullable — List of message channels this endpoint listens to (omit for all).
  - `createdAt` string, date-time, required
  - `description` string, required
  - `disabled` boolean
  - `eventTypes` string[], nullable
  - `id` string, required — The Endpoint's ID.
  - `metadata` object, required
  - `throttleRate` integer, nullable — Maximum messages per second to send to this endpoint. Outgoing messages will be throttled to this rate.
  - `uid` string, nullable — Optional unique identifier for the endpoint.
  - `updatedAt` string, date-time, required
  - `url` string, uri, required

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `409` — Conflict
- `422` — Validation Error
- `429` — Too Many Requests

## Changes

- **2026-08-19** `dc130bd1b074` — 1 breaking, 6 warning, 2 info
  - removed the required property `version` from the response with the `200` status
  - removed the request property `filterTypes`
  - removed the request property `rateLimit`
  - removed the request property `secret`
  - …5 more
- **2026-07-31** `16dbcc056c48` — 2 info
  - added the new optional request property `secret`
  - added the new optional request property `version`

[Change history](https://skmtc.dev/svix/apis/svix-api/changes/api/v1/app/:app_id/endpoint/:endpoint_id/patch.md)

---

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