Reading / updating a workbook
PUT
/api/v1/workbooks/{workbook_id}/sheets/{sheet_index}
Rename a sheet in a workbook.
Path Parameters
Name
Type
Description
workbook_id*
String
sheet_index*
integer
Request Body
Name
Type
Description
new_name*
String
New sheet name
PUT
/api/v1/workbooks/{workbook_id}/sheets/{sheet_index}/cells/{row}/{col}
Update cell data.
You must specify either value
or input
, but not both.
Path Parameters
Name
Type
Description
workbook_id*
String
sheet_index*
integer
row*
integer
col*
integer
Request Body
Name
Type
Description
input
String
Assign value to cell, with similar semantics to when a user manually enters a value in a spreadsheet cell
value
String
Assign value to cell
Last updated