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