Delete Rows

Request

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

{
    "table_id": "..."          //(string) id of the table
    "row_ids":[...]            //(list of string) ids of rows to be deleted
}

Reply

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

Example

REQUEST
{
    "table_id": "619F5F313582E5C634598DAFE9783106",
    "row_ids": ["61D6C27F898128F78D40A8053F2CE062"]
}