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

# Delete a Webhook

> Deletes a webhook subscription.



## OpenAPI

````yaml /Sela_API.yaml delete /api/webhooks/{id}/
openapi: 3.0.3
info:
  title: Sela API
  version: 1.0.2
  description: Voice AI agents with superhuman conversion rates
servers:
  - url: https://api.trysela.com/
    description: Production API
security: []
paths:
  /api/webhooks/{id}/:
    delete:
      tags:
        - Webhooks
      summary: Delete a Webhook
      description: Deletes a webhook subscription.
      operationId: webhooks_destroy
      parameters:
        - in: path
          name: id
          schema:
            type: integer
          description: A unique integer value identifying this webhook.
          required: true
      responses:
        '204':
          description: No response body
      security:
        - tokenAuth: []
components:
  securitySchemes:
    tokenAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Token-based authentication with required prefix "Token"

````