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

# Delete Webhook Endpoint

> Delete one of this org's webhook endpoints.

Org-scoped: another org's endpoint id resolves to 404 (the handler
filters by ``caller.org_id`` AND RLS hides the row at the DB layer).



## OpenAPI

````yaml /api-reference/openapi.json delete /webhook-endpoints/{endpoint_id}
openapi: 3.1.0
info:
  description: >-
    Submit loan packages for automated quality-control review and retrieve
    results. Authenticate every request with your organization's API key:
    `Authorization: Bearer <key>`.
  title: Flightline Public API
  version: '2026-05-30'
servers:
  - url: https://api.flightlinehq.com/v1
security: []
paths:
  /webhook-endpoints/{endpoint_id}:
    delete:
      tags:
        - webhooks
      summary: Delete Webhook Endpoint
      description: |-
        Delete one of this org's webhook endpoints.

        Org-scoped: another org's endpoint id resolves to 404 (the handler
        filters by ``caller.org_id`` AND RLS hides the row at the DB layer).
      operationId: delete_webhook_endpoint_webhook_endpoints__endpoint_id__delete
      parameters:
        - in: path
          name: endpoint_id
          required: true
          schema:
            format: uuid
            title: Endpoint Id
            type: string
        - in: header
          name: authorization
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
        - in: header
          name: X-Api-Key
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Api-Key
      responses:
        '204':
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object

````