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

# Delete Webhook Subscription

> Delete a specific webhook subscription



## OpenAPI

````yaml delete /webhooks/subscriptions/{subscriptionId}
openapi: 3.0.1
info:
  title: ChatDash Webhook API Documentation
  description: API Documentation for the ChatDash Webhook Subscription System
  version: 1.0.0
servers:
  - url: https://api.chat-dash.com/v1/public
security: []
paths:
  /webhooks/subscriptions/{subscriptionId}:
    delete:
      tags:
        - Webhooks
      summary: Delete Webhook Subscription
      description: Delete a specific webhook subscription
      parameters:
        - name: Authorization
          in: header
          required: true
          description: Client-specific API key for authentication
          schema:
            type: string
            pattern: ^CD\.CL\.
        - name: subscriptionId
          in: path
          required: true
          description: Webhook subscription ID
          schema:
            type: string
      responses:
        '204':
          description: Subscription deleted successfully
        '404':
          description: Subscription not found

````