## Delete structured sheet `$ deeptable structured-sheets delete` **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: string` The unique identifier of the structured sheet conversion. ### Returns - `StructuredSheetDeleteResponse: object { id, deleted, object }` Response from deleting a structured sheet. Following the OpenAI API convention for delete responses. - `id: string` The unique identifier of the deleted structured sheet. - `deleted: true` Whether the structured sheet was successfully deleted. - `true` - `object: "structured_sheet"` The object type, which is always 'structured_sheet'. - `"structured_sheet"` ### Example ```cli deeptable structured-sheets delete \ --api-key 'My API Key' \ --structured-sheet-id ss_01kfxgjd94fn9stqm42nejb627 ``` #### Response ```json { "id": "ss_01kfxgjd94fn9stqm42nejb627", "deleted": true, "object": "structured_sheet" } ```