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

# Delete Document

> Delete an existing document from the corpus.

### Path Parameters

<ParamField path="id" type="string" required>
  The ID of the document to delete.
</ParamField>

### Response

<ResponseField name="success" type="boolean">
  Indicates whether the deletion was successful.
</ResponseField>

```json Example Request theme={null}
DELETE /documents/doc-456
```

```json Example Response theme={null}
{
  "success": true
}
```
