UpdatePropertyValues usage via the API (Thingworx Service)
I am looking to update multiple properties by making use of the service UpdatePropertyValues but I don't seem to be getting it right.
I am using python to post my data and I get a 200 response back but the values are not actually updating when I use the service QueryNumberPropertyHistory.
This is the URL that I am trying to access:
url = "http://localhost/Thingworx/Things/Area_Thing5/Services/UpdatePropertyValues"
I have also tried:
url = "http://localhost/Thingworx/Things/Area_Thing5/services/UpdatePropertyValues"
and i still get a 200 ok response, which makes it unclear which url is actually correct.
my Payload looks something like this:
{"name":"Item_Count", "value":1112, "timestamp":1702976380000, "quality":"GOOD"}
And then I post it with a content type application/json
I have also tried with a payload: {"name":"Item_Count", "value":1112, "time":1702976380000, "quality":"GOOD"}

