Skip to content
Get started

Delete Extraction Run

client.extraction.runs.delete(stringrunID, RunDeleteParams { organization_id, project_id } params?, RequestOptionsoptions?): RunDeleteResponse
DELETE/api/v1/extraction/runs/{run_id}

Delete Extraction Run

ParametersExpand Collapse
runID: string
params: RunDeleteParams { organization_id, project_id }
organization_id?: string | null
project_id?: string | null
ReturnsExpand Collapse
RunDeleteResponse = unknown

Delete Extraction Run

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
});

const run = await client.extraction.runs.delete('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e');

console.log(run);
{}
Returns Examples
{}