Skip to content
Get started

Delete Extraction Run

extraction.runs.delete(strrun_id, RunDeleteParams**kwargs) -> object
DELETE/api/v1/extraction/runs/{run_id}

Delete Extraction Run

ParametersExpand Collapse
run_id: str
organization_id: Optional[str]
project_id: Optional[str]
ReturnsExpand Collapse
object

Delete Extraction Run

import os
from llama_cloud import LlamaCloud

client = LlamaCloud(
    api_key=os.environ.get("LLAMA_CLOUD_API_KEY"),  # This is the default and can be omitted
)
run = client.extraction.runs.delete(
    run_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
)
print(run)
{}
Returns Examples
{}