v1

latestOpenAPI 3.0.0Apache 2.0 License2026-07-1415122102.4 KB

The BatchCreateTableRows API allows you to create one or more rows at the end of a table in a workbook. The API allows you to specify the values to set in some or all of the columns in the new rows.

If a column is not explicitly set in a specific row, then the column level formula specified in the table will be applied to the new row. If there is no column level formula but the last row of the table has a formula, then that formula will be copied down to the new row. If there is no column level formula and no formula in the last row of the table, then that column will be left blank for the new rows.

post/workbooks/{workbookId}/tables/{tableId}/rows/batchcreate

Path parameters

workbookIdstring required
<p>The ID of the workbook where the new rows are being added.</p> <p> If a workbook with the specified ID could not be found, this API throws ResourceNotFoundException. </p>
tableIdstring required
<p>The ID of the table where the new rows are being added.</p> <p> If a table with the specified ID could not be found, this API throws ResourceNotFoundException. </p>

Request body

clientRequestTokenstring
<p> The request token for performing the batch create operation. Request tokens help to identify duplicate requests. If a call times out or fails due to a transient error like a failed network connection, you can retry the call with the same request token. The service ensures that if the first call using that request token is successfully performed, the second call will not perform the operation again. </p> <p> Note that request tokens are valid only for a few minutes. You cannot use request tokens to dedupe requests spanning hours or days. </p>

Response

Success

workbookCursorinteger required

The updated workbook cursor after adding the new rows at the end of the table.

createdRowsobject required

The map of batch item id to the row id that was created for that item.

All 15 operations