Skip to content

Insert Table Column

nbajiaoshi edited this page Jun 4, 2018 · 13 revisions
POST /api/insertTableColumn

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 insert. The id for the first column is 0.
columnType String The type of newly inserted column.
columnName String The name of newly inserted column.

Request

POST https://localhost:8080/api/insertTableColumn
JSON Parameters:
{
    "linkTableId":"tjh5si3w6",
    "column": 1,
    "columnType":"TEXT",
    "columnName":"Major"
}

Response

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

Clone this wiki locally