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

# Delete endpoint

> Delete an endpoint (204). Idempotent for a caller: a second delete of an id that is gone is the
same 404 a foreign-org id gets, because by then the two are indistinguishable.



## OpenAPI

````yaml /schemas/operator.json delete /v1/webhook_endpoints/{id}
openapi: 3.1.0
info:
  title: Omegas Operator API
  version: 0.1.0
  description: >-
    The public /v1 machine surface: cloud browser devices, tasks, live-view
    sessions, escalations, usage, webhook endpoints, and the audit trail.
    Generated from the same OpenAPI document the Rust API is checked against.
servers:
  - url: https://api.omegas.dev
    description: Production
security: []
paths:
  /v1/webhook_endpoints/{id}:
    delete:
      tags:
        - Endpoints
      summary: Delete endpoint
      description: >-
        Delete an endpoint (204). Idempotent for a caller: a second delete of an
        id that is gone is the

        same 404 a foreign-org id gets, because by then the two are
        indistinguishable.
      operationId: delete_endpoint
      parameters:
        - name: id
          in: path
          description: Endpoint id (`whe_<uuid>`)
          required: true
          schema:
            type: string
      responses:
        '204':
          description: Deleted
        '401':
          description: invalid_api_key
        '403':
          description: insufficient_scope or product_not_entitled
        '404':
          description: webhook_endpoint_not_found
        '429':
          description: rate_limited
      security:
        - bearer_operator: []
components:
  securitySchemes:
    bearer_operator:
      type: http
      scheme: bearer
      bearerFormat: Opaque

````