Skip to content
Get started

Delete structured sheets

structured_sheets.delete(strstructured_sheets_id)
DELETE/v1/structured-sheets/{structured_sheets_id}

Delete a structured sheets conversion and its associated exports. This action cannot be undone.

ParametersExpand Collapse
structured_sheets_id: str

The unique identifier of the structured sheets conversion.

Delete structured sheets
import os
from deeptable import DeepTable

client = DeepTable(
    api_key=os.environ.get("DEEPTABLE_API_KEY"),  # This is the default and can be omitted
)
client.structured_sheets.delete(
    "ss_01abc2def3ghjkmnpqrs4uvwxy",
)
Returns Examples