Update Values

Set data table values in different formats.

Request

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

{
    "table_id": "..."          //(string) id of the table
    "rows":[]                  //(array) set individual values in any rows
}

Reply

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

Example

REQUEST
{
    "table_id": "619F5F313582E5C634598DAFE9783106",
    "rows": [{"row_id": "619F5F313582E5C634598DAFE9783105",
         "c0":"DE812871812",
         "c1":"001_hetzner",
         "c2":"Hetzner",
         "c3":"DE92 7607 0012 0750 0077 00",
         "c4":"91710",
         "c5":"Industriestr. 25",
         "c6":"Gunzenhausen",
         "c7":"Germany"
    }]
}