Skip to content
Get started

Delete File

client.files.delete(stringfileID, FileDeleteParams { organization_id, project_id } params?, RequestOptionsoptions?): void
DELETE/api/v1/beta/files/{file_id}

Delete a single file from the project.

Args: file_id: The ID of the file to delete project: Validated project from dependency db: Database session

Returns: None (204 No Content on success)

ParametersExpand Collapse
fileID: string
params: FileDeleteParams { organization_id, project_id }
organization_id?: string | null
project_id?: string | null

Delete File

import LlamaCloud from '@llamaindex/llama-cloud';

const client = new LlamaCloud({
  apiKey: process.env['LLAMA_CLOUD_API_KEY'], // This is the default and can be omitted
});

await client.files.delete('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e');
Returns Examples