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

# Delete Webhook

> Delete a webhook endpoint by id.

Delete a webhook endpoint by id.

```bash theme={null}
curl -X DELETE "https://app.wachat.net/api/v1/webhooks?id=12" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

After deletion, Wachat will stop sending events to that webhook URL.


## OpenAPI

````yaml DELETE /webhooks
openapi: 3.0.3
info:
  title: Wachat Enterprise API
  description: >
    Welcome to the official Wachat API reference. Wachat provides
    developer-friendly, ultra-reliable infrastructure to scale your WhatsApp
    communications programmatically.


    Easily deploy automated messaging pipelines, orchestrate interactive
    customer engagement patterns, verify phone numbers instantly, and control
    containerized WhatsApp instances via a secure, production-grade REST
    architecture.
  version: 1.0.0
servers:
  - url: https://app.wachat.net/api/v1
    description: Live Production Gateway
security:
  - bearerAuth: []
paths:
  /webhooks:
    delete:
      tags:
        - Webhooks
      summary: Delete Webhook
      description: Delete a webhook endpoint by id.
      parameters:
        - in: query
          name: id
          required: true
          schema:
            type: integer
          description: Webhook id.
          example: 12
      responses:
        '200':
          description: Webhook deleted successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  deleted:
                    type: boolean
                    example: true
                  id:
                    type: integer
                    example: 12
        '400':
          description: Missing webhook id.
        '401':
          description: Missing or invalid API key.
        '403':
          description: Subscription restriction prevented webhook deletion.
        '404':
          description: Webhook not found.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Authenticate your integration payloads by injecting your premium secure
        Wachat Account API Private Secret Key inside standard Authorization
        Bearer header vectors.

````