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

# Delete Document

> Delete the docoument



## OpenAPI

````yaml DELETE /documents/{id}
openapi: 3.1.0
info:
  title: HeyPal API
  version: '1.0'
  description: >-
    The HeyPal API makes it easy to add A.I. powered semantic-search & other
    A.I. functionality to your product & content.
servers:
  - url: https://api.pal.ai/v1
security:
  - API Key: []
paths:
  /documents/{id}:
    parameters:
      - schema:
          type: string
        name: id
        in: path
        required: true
        description: The Document ID you're interacting with.
    delete:
      summary: Delete Document
      description: Delete the docoument
      operationId: delete-document-by-id
      responses:
        '200':
          description: OK
components: {}

````