Skip to content

Insert Table Row

nbajiaoshi edited this page Jun 4, 2018 · 12 revisions
POST /api/insertTableRow

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.
row Int The relative row id in the linked region to perform insert. The id for the first row is 0.
value List(Object) The values of the row to perform insert. Current supporting types are String, Float, and Int.The length of the List and the type of each element must be strictly consistent with the schema.

Request

POST https://localhost:8080/api/insertTableRow
JSON Parameters:
{
    "linkTableId":"tjh5si3w6"
    "row": 1
    "value":[
        1,
        "David",
        3.62
    ]
}

Response

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