I am trying to Change a batch of single entities. This is not updating existing entities as expected, instead, it is creating new records into the ACCProduct table. These UIDs correspond to existing ACCProduct entries. Am I doing something wrong?
version: 9.2.1
req URI:
https://<Hostname>/AppServer/api/entities
JSON:
{
 "entities": [
 {
 "table": "ACCProduct",
 "uid": "982f3ec0-0b36-42c4-9d3c-fdea773b5edd",
 "values": {
 "description": "Test description 1",
 "Ident_ACCProduct": "example name 1"
 }
 },
 {
 "table": "ACCProduct",
 "uid": "ddbccd16-46b6-4cd2-89c0-f6042e8f788a",
 "values": {
 "description": "Test description 2",
 "Ident_ACCProduct": "example name 2"
 }
 },
 {
 "table": "ACCProduct",
 "uid": "60a67a5f-12ad-4632-ae14-da69236c0020",
 "values": {
 "description": "Test description 3",
 "Ident_ACCProduct": "example name 3"
 }
 }
 ]
}