Create structured sheets
client.structuredSheets.create(StructuredSheetCreateParams { file_id, sheet_names } body, RequestOptionsoptions?): StructuredSheetResponse { id, created_at, file_id, 6 more }
POST/v1/structured-sheets
Start converting a spreadsheet workbook into structured data. This initiates an asynchronous conversion process. Poll the returned resource using the id to check completion status.
Parameters
Returns
Create 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
});
const structuredSheetResponse = await client.structuredSheets.create({
file_id: 'file_01h45ytscbebyvny4gc8cr8ma2',
});
console.log(structuredSheetResponse.id);{
"id": "ss_01abc2def3ghjkmnpqrs4uvwxy",
"created_at": "2024-01-15T10:30:00Z",
"file_id": "file_01abc2def3ghjkmnpqrs4uvwxy",
"status": "completed",
"updated_at": "2024-01-15T10:35:00Z",
"exports_available": [
"sqlite"
],
"last_error": {
"code": "invalid_file_format",
"message": "The uploaded file is not a valid Excel spreadsheet."
},
"object": "structured_sheet",
"sheet_names": [
"Sheet1",
"Financials"
]
}Returns Examples
{
"id": "ss_01abc2def3ghjkmnpqrs4uvwxy",
"created_at": "2024-01-15T10:30:00Z",
"file_id": "file_01abc2def3ghjkmnpqrs4uvwxy",
"status": "completed",
"updated_at": "2024-01-15T10:35:00Z",
"exports_available": [
"sqlite"
],
"last_error": {
"code": "invalid_file_format",
"message": "The uploaded file is not a valid Excel spreadsheet."
},
"object": "structured_sheet",
"sheet_names": [
"Sheet1",
"Financials"
]
}