Delete structured sheets
client.structuredSheets.delete(stringstructuredSheetsID, RequestOptionsoptions?): void
DELETE/v1/structured-sheets/{structured_sheets_id}
Delete a structured sheets conversion and its associated exports. This action cannot be undone.
Parameters
structuredSheetsID: string
The unique identifier of the structured sheets conversion.
Delete structured sheets
import DeepTable from '@deeptable/deeptable';
const client = new DeepTable({
apiKey: process.env['DEEPTABLE_API_KEY'], // This is the default and can be omitted
});
await client.structuredSheets.delete('ss_01abc2def3ghjkmnpqrs4uvwxy');