Delete Parse Configuration
beta.parse_configurations.delete(strconfig_id, ParseConfigurationDeleteParams**kwargs)
DELETE/api/v1/beta/parse-configurations/{config_id}
Delete a parse configuration.
Args: config_id: The ID of the parse configuration to delete project: Validated project from dependency user: Current user db: Database session
Parameters
config_id: str
organization_id: Optional[str]
project_id: Optional[str]
Delete Parse Configuration
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
)
client.beta.parse_configurations.delete(
config_id="config_id",
)