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

# Delete a webhook endpoint

> Removes a webhook subscription by ID.



## OpenAPI

````yaml https://app.lyra.so/openapi.json delete /webhook
openapi: 3.0.0
info:
  title: Lyra API
  version: '1.0'
servers:
  - url: https://app.lyra.so/api/v1
    description: Production server
  - url: http://localhost:3000/api/v1
    description: Development server
security:
  - LyraApiKey: []
  - OAuth2: []
tags:
  - name: Authentication
    description: Verify API keys and OAuth tokens
  - name: Meetings
    description: Create and manage Lyra meetings
  - name: Webhooks
    description: Manage webhook subscriptions
paths:
  /webhook:
    delete:
      tags:
        - Webhooks
      summary: Delete a webhook endpoint
      description: Removes a webhook subscription by ID.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - webhookId
              properties:
                webhookId:
                  type: string
                  format: uuid
      responses:
        '200':
          description: Webhook deleted
        '400':
          description: Invalid request body
        '401':
          description: Missing or invalid token
        '403':
          description: Insufficient scope
        '404':
          description: Webhook not found
        '500':
          description: Failed to delete webhook
      security:
        - LyraApiKey: []
        - OAuth2:
            - webhook.delete
components:
  securitySchemes:
    LyraApiKey:
      type: http
      scheme: bearer
    OAuth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://app.lyra.so/api/v1/oauth/authorize
          tokenUrl: https://app.lyra.so/api/v1/oauth/token
          scopes: {}

````