Skip to content
Product Docs

Delete Project

projects.delete(strproject_id, ProjectDeleteParams**kwargs)
DELETE/api/v2/projects/{project_id}

Delete a project by ID.

ParametersExpand Collapse
project_id: str
organization_id: Optional[str]

Delete Project

import os
from llama_cloud_admin import LlamaCloudAdmin

client = LlamaCloudAdmin(
    api_key=os.environ.get("LLAMA_CLOUD_API_KEY"),  # This is the default and can be omitted
)
client.projects.delete(
    project_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
)
Returns Examples