> ## Documentation Index
> Fetch the complete documentation index at: https://docs.revstack.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Deactivate a webhook endpoint

> Disables a webhook endpoint from receiving further notifications.



## OpenAPI

````yaml post /v1/webhooks/{id}/deactivate
openapi: 3.0.0
info:
  title: Revstack API
  version: 1.0.0
  description: >-
    Open Source Billing OS for Developers. The scalable, developer-first billing
    engine with subscriptions, invoicing, usage metering, and entitlements.
servers:
  - url: http://localhost:6900
    description: Revstack API (Local Development)
security: []
paths:
  /v1/webhooks/{id}/deactivate:
    post:
      tags:
        - Webhooks
      summary: Deactivate a webhook endpoint
      description: Disables a webhook endpoint from receiving further notifications.
      parameters:
        - schema:
            type: string
            example: wh_abc123
          required: true
          name: id
          in: path
      responses:
        '200':
          description: Endpoint deactivated
          content:
            application/json:
              schema:
                nullable: true

````