Skip to content

Delete Columns

legan_dary23 edited this page Jun 10, 2018 · 1 revision
DELETE /api/deleteCols

Delete columns between two positions start column and end column.

Parameters

JSON Body Parameters

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 deletion.
endCol Integer The end position of the deletion.

Request

DELETE https://localhost:8080/api/deleteCols
JSON Parameters:
{
    "bookId": "cjfx4leqo",
    "sheetName": "Grade",
    "startRow": 0,
    "endRow": 5
}

Response

{
    "status": "success",
    "message": null,
    "data": null
}

Clone this wiki locally