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

# Delete Webhook

> Delete a webhook endpoint by ID.
Requires a valid API key.



## OpenAPI

````yaml DELETE /webhooks/{endpoint_id}
openapi: 3.1.0
info:
  title: Public API v1
  description: >-
    Public API v1 requiring API keys.


    **Timestamps:** All datetime fields in API responses are returned in UTC
    using ISO 8601 format (e.g., `2024-01-15T14:30:00Z`). When filtering by date
    parameters, provide timestamps in ISO 8601 format.
  version: 0.1.0
servers:
  - url: https://api.prod.usesimple.ai/api/v1
    description: Production API Server
security: []
paths:
  /webhooks/{endpoint_id}:
    delete:
      tags:
        - Webhooks
      summary: Delete Webhook
      description: |-
        Delete a webhook endpoint by ID.
        Requires a valid API key.
      operationId: delete_webhook_webhooks__endpoint_id__delete
      parameters:
        - name: endpoint_id
          in: path
          required: true
          schema:
            type: string
            title: Endpoint ID
      responses:
        '204':
          description: Webhook Deleted Successfully
        '422':
          description: Deletion Failed
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
      security:
        - APIKeyHeader: []
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: Authorization

````