Add Rows

Request

POST https://uni.cloudplan.biz/api/tables/add_rows

{
    "table_id": "..."          //(string) id of the table
    "rows":[]                  //(list of list of primitive values)
}

Reply

{
    "result": true/false,
    "reason": any error code (on failure)
}

Example

REQUEST
{
"table_id": "619F5F313582E5C634598DAFE9783106",
"rows": [
    ["hi", "test", 123, 123.01, "colllll"],
    ["another row", "with columns"]
]
}