Sheets
  • Introduction
  • REST API
    • Authentication
    • Reading / updating a workbook
    • Creating / uploading a workbook
    • Simulation API
  • GraphQL API
  • Authentication in production
  • Embedding example
  • Excel compatibility
  • Example apps
Powered by GitBook
On this page
  1. REST API

Reading / updating a workbook

PreviousAuthenticationNextCreating / uploading a workbook

Last updated 2 years ago

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