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

# Delete a Webhook Subscription

> Permanently delete a subscription. Deliveries stop immediately. Returns `204` with no body.



## OpenAPI

````yaml delete /webhook-subscriptions/{id}
openapi: 3.0.0
info:
  title: Cover Whale API V1
  contact:
    name: Cover Whale API Team
  version: '1.0'
servers:
  - url: https://api.coverwhale.dev/v1
security:
  - AccessToken: []
tags:
  - name: Authentication
    description: Authenticating & Interacting with the API
paths:
  /webhook-subscriptions/{id}:
    delete:
      tags:
        - Webhooks
      summary: Delete a Webhook Subscription
      description: >-
        Permanently delete a subscription. Deliveries stop immediately. Returns
        `204` with no body.
      operationId: deleteWebhookSubscription
      parameters:
        - name: AccessToken
          in: header
          required: true
          schema:
            type: string
          example: eyJraWQiOiJnRk5oTTh2RnRKWXVDVXU1S........
        - name: id
          in: path
          required: true
          schema:
            type: integer
          example: 42
      responses:
        '204':
          description: Deleted (no content)
        '404':
          description: Not found (or not owned by your account)
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                example:
                  error: Not found
components:
  securitySchemes:
    AccessToken:
      type: apiKey
      description: >-
        AWS Cognito access token obtained from the /authentication endpoint.
        Token expires after 3600 seconds.
      name: AccessToken
      in: header

````