In attempting to dynamically move the location of points on a map, I am using the /updatefeatures endpoint of the arcGIS REST API.
My POST data looks like the following:
[{
"geometry":{"x": 702078.1622769168, "y": 8625267.799537977},
"attributes":{\'device_id\': 1234, \'objectid\': 20...},
...
}]
The update works successfully, when I use the /query endpoint, the data has changed as expected.
However the map has no points visible when I open the layer in Map viewer. They have disappeared.
Am I mistaken? Does the "geometry" attribute in the request not influence where the point is located?
I even plugged the X and Y coordinate into an online converter and it finds the location successfully.
Thanks