Skip to content

Change Table Column Name

nbajiaoshi edited this page Jun 4, 2018 · 4 revisions
PUT /api/changeTableColumnName

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 change. The id for the first column is 0.
columnName String The target column name.

Request

PUT https://localhost:8080/api/changeTableColumnName
JSON Parameters:
{
    "linkTableId":"tjh5si3w6",
    "column": 1,
    "columnName":"Age"
}

Response

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

Clone this wiki locally