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

# Delete Webhook

> Remove a webhook subscription. Requires the `webhooks.write` scope.



## OpenAPI

````yaml delete /webhooks/{id}
openapi: 3.0.0
info:
  version: 1.0.0
  title: Tickable API
  description: >-
    The Tickable API provides programmatic access to events, orders, tickets,
    and webhooks for your organization.
  contact:
    name: Tickable
    url: https://tickable.nl
servers:
  - url: https://api.tickable.io
    description: Production
security:
  - Bearer: []
tags:
  - name: Events
    description: Manage events
  - name: Tickets
    description: View tickets
  - name: Orders
    description: View orders
  - name: Webhooks
    description: Manage webhook subscriptions
  - name: User
    description: Current user information
  - name: OAuth
    description: OAuth2 authorization and token endpoints
paths:
  /webhooks/{id}:
    delete:
      tags:
        - Webhooks
      summary: Delete webhook
      description: Remove a webhook subscription. Requires the `webhooks.write` scope.
      operationId: deleteWebhook
      parameters:
        - schema:
            type: string
            format: uuid
            description: Webhook ID
            example: 7c9e6679-7425-40de-944b-e07fc1f90ae7
          required: true
          description: Webhook ID
          name: id
          in: path
      responses:
        '204':
          description: Webhook deleted
        '404':
          description: Webhook not found
      security:
        - Bearer: []
components:
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      description: >-
        Pass as `Authorization: Bearer {token}`. Accepts either an OAuth2 JWT
        access token or an API key (`tk_live_...`) created from the Tickable
        dashboard.

````