Structured Sheets
Create structured sheet
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.
post/v1/structured-sheets
Request body
Example request
{
"file_id": "file_01h45ytscbebyvny4gc8cr8ma2",
"sheet_names": [
"Sheet1",
"Financials"
]
}Response
Conversion job accepted and started
Example response
{
"created_at": "2024-01-15T10:30:00Z",
"file_id": "file_01kfxgjd94fn9stqm414vjb0s8",
"id": "ss_01kfxgjd94fn9stqm42nejb627",
"object": "structured_sheet",
"sheet_names": [
"Sheet1",
"Financials"
],
"status": "completed",
"table_count": 6,
"updated_at": "2024-01-15T10:35:00Z"
}