---
title: "Disable a webhook subscription"
method: POST
path: "/v3/webhooks/{id}/disable"
tags: ["Webhooks"]
---

# Disable a webhook subscription

`POST /v3/webhooks/{id}/disable`

<small>_Requires the `webhooks:operate` scope (or a broader one that includes it)._</small>

Pauses a subscription without deleting it — no events fire until re-enabled.
Idempotent: calling on an already-disabled subscription still returns `204`.
Use this dedicated endpoint rather than `PUT` to toggle the paused state
(`PUT` does not accept the `enabled` flag).

## Path parameters

- `id` integer, required

## Response `204`

Subscription is disabled (or was already disabled). The response body is empty.

- unknown

## Other responses

- `400` — Invalid `id` parameter.
- `401` — Unauthorized. The response body is empty; check the `WWW-Authenticate` header for the expected scheme.
- `404` — Subscription not found or not owned by the caller.
- `429` — Too Many Requests

---

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