-
Notifications
You must be signed in to change notification settings - Fork 31
Put Cells
legan_dary23 edited this page Jun 10, 2018
·
3 revisions
PUT /api/putCells
Update the changed cells to the server. Can be either value update or formula update.
Field | Data Type | Description |
---|---|---|
bookId | String | The id of the current book. |
sheetName | String | The name of the deleted sheet. |
range | String | The current fetching range of the sheet. |
cells | collection of cells | The collection of cells to put into the sheet. |
PUT https://localhost:8080/api/putCells
JSON Parameters:
{
"bookId": "cjfx4leqo",
"sheetName": "Grade",
"range" : {"row1": 0, "col1": 0, "row2": 100, "col2": 10},
"cells": [
{
"row": "2",
"col": "1",
"value": "3.3",
"formula": "",
"type": "float",
"format": ""
},
{
"row": "2",
"col": "2",
"value": "A-",
"formula": "",
"type": "string",
"format": ""
}
]
}
{
"status": "success",
"message": null,
"data": null
}