63450 — TS-API PATCH endpoint generates 500 error if there are no modifications to data
Fixed: PATCH endpoint {REST-API URL}/api/v1/ payee/tsapi/tabledata/{table} throws a 500 error if no data is modified.
Reproduction Steps
Update records in a table using this endpoint:
PATCH {REST-API URL}/api/v1/payee/tsapi/tabledata/{table}
{
public string[] selectedColumns = null;
public object[,] rows;
public object[,] oldRows;
public bool[] overwrite;
}
Set rows values to match oldrow values.
Result: error occurs.