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

# Delete the webhook subscription



## OpenAPI

````yaml DELETE /v1/webhook-subscriptions
openapi: 3.0.0
info:
  title: Cleff API
  description: >-
    Payout orchestration platform. All endpoints under /v1/ require an API key
    in the Authorization header (Bearer ck_<env>_<id>_<secret>).
  version: 0.0.1
  contact: {}
servers:
  - url: https://api.usecleff.com
security: []
tags: []
paths:
  /v1/webhook-subscriptions:
    delete:
      tags:
        - Webhook subscriptions
      summary: Delete the webhook subscription for this environment
      operationId: WebhookSubscriptionsController_remove
      parameters: []
      responses:
        '204':
          description: ''
      security:
        - api_key: []
components:
  securitySchemes:
    api_key:
      scheme: bearer
      bearerFormat: ck_<env>_<id>_<secret>
      type: http
      description: >-
        Cleff API key issued to a Business that self-registers via POST
        /v1/registration

````