Skip to content
Get started

Delete Pipeline Document

client.pipelines.documents.delete(stringdocumentID, DocumentDeleteParams { pipeline_id } params, RequestOptionsoptions?): void
DELETE/api/v1/pipelines/{pipeline_id}/documents/{document_id}

Delete a document from a pipeline. Initiates an async job that will:

  1. Delete vectors from the vector store
  2. Delete the document from MongoDB after vectors are successfully deleted
ParametersExpand Collapse
documentID: string
params: DocumentDeleteParams { pipeline_id }
pipeline_id: string

Delete Pipeline Document

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.pipelines.documents.delete('document_id', {
  pipeline_id: '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
});
Returns Examples