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

# Webhook Delete

> Deletes a webhook based on the provided ID.



## OpenAPI

````yaml DELETE /v2/webhooks/{id}/
openapi: 3.1.0
info:
  title: CloserX.ai API
  description: >-
    The CloserX.ai API provides programmatic access to manage AI-powered calling
    operations, including agent creation, campaign management, contact handling,
    telephony integration, and more. This API enables seamless automation and
    integration with CRM systems, telephony providers, and other third-party
    services for enhanced client communication and business operations.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.closerx.ai/api
security:
  - api_key: []
paths:
  /v2/webhooks/{id}/:
    delete:
      summary: Webhook Delete
      description: Deletes a webhook based on the provided ID.
      parameters:
        - name: id
          in: path
          required: true
          description: The ID of the webhook to delete
          schema:
            type: integer
            example: 25
        - name: Company-Name
          in: header
          required: true
          description: Schema name for multi-tenancy
          schema:
            type: string
      responses:
        '200':
          description: Webhook deleted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteWebhookResponse'
components:
  schemas:
    DeleteWebhookResponse:
      type: object
      properties:
        message:
          type: string
          example: Webhook deleted successfully
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: api_key

````