Skip to content

Delete Table Column

yulu edited this page May 17, 2018 · 12 revisions
POST /deleteTableColumn

Return a status indicates whether the operation has been successfully done or not.

Parameters

JSON Body Parameters

Field Data Type Description
linkTableId String The unique linkTableId corresponding to a table and a region of sheet.
column Int The relative column id in the linked region to perform delete

Request

POST https://localhost:8080/deleteTableColumn
JSON Parameters:
{
    "linkTableId":"tjh5si3w6"
    "column": 1
}

Response

{
    "status": "success",
    "message": null,
    "data":null
}
Clone this wiki locally