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

# Delete File

> Permanently delete a file.

## Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the file to delete.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.getagentdrive.com/v0/files/file_xyz789 \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true
  }
  ```
</ResponseExample>

## Response

<ResponseField name="success" type="boolean">
  Whether the file was successfully deleted.
</ResponseField>
