## Delete structured sheet `structured_sheets.delete(strstructured_sheet_id) -> StructuredSheetDeleteResponse` **delete** `/v1/structured-sheets/{structured_sheet_id}` Delete a structured sheet conversion and its associated exports. This action cannot be undone. ### Parameters - `structured_sheet_id: str` The unique identifier of the structured sheet conversion. ### Returns - `class StructuredSheetDeleteResponse: …` Response from deleting a structured sheet. Following the OpenAI API convention for delete responses. - `id: str` The unique identifier of the deleted structured sheet. - `deleted: Literal[true]` Whether the structured sheet was successfully deleted. - `true` - `object: Literal["structured_sheet"]` The object type, which is always 'structured_sheet'. - `"structured_sheet"` ### Example ```python import os from deeptable import DeepTable client = DeepTable( api_key=os.environ.get("DEEPTABLE_API_KEY"), # This is the default and can be omitted ) structured_sheet = client.structured_sheets.delete( "ss_01kfxgjd94fn9stqm42nejb627", ) print(structured_sheet.id) ``` #### Response ```json { "id": "ss_01kfxgjd94fn9stqm42nejb627", "deleted": true, "object": "structured_sheet" } ```