-
Notifications
You must be signed in to change notification settings - Fork 31
Insert Rows
legan_dary23 edited this page Jun 10, 2018
·
1 revision
PUT /api/insertRows
Insert rows between two positions start row and end row.
Field | Data Type | Description |
---|---|---|
bookId | String | The id of the current book. |
sheetName | String | The name of the current sheet. |
startRow | Integer | The start position of the insertion. |
endRow | Integer | The end position of the insertion. |
PUT https://localhost:8080/api/insertRows
JSON Parameters:
{
"bookId": "cjfx4leqo",
"sheetName": "Grade",
"startRow": 0,
"endRow": 5
}
{
"status": "success",
"message": null,
"data": null
}