Hi all,
I get error 500 on attempt to create calibration points via LRS REST API like this:
{"error":{"code":500,"message":"Unable to complete operation.","details":[]}}
I'm using applyEdits endpoint like described here: Apply Edits | ArcGIS REST APIs | ArcGIS Developers.
The JSON file I'm passing as "edits" via "multipart/form data" parameter is 100% correct and valid. Here it is:
[
{
"id": 1,
"addCalibrationPoints": [
{
"networkLayerId": 33,
"routeId": "{GUID}",
"geometry": {
"x": 225636.17500000005,
"y": 995688.0829999996
},
"fromDate": "1170356400",
"measure": 2636.8490000000002,
"recalibrateRouteDownstream": false,
"retire": false
}
]
}
]
I'm adding calibration points on newly created routes in newly created version under separate session. I can create routes without any issues but calibration points won't apply.
What may cause such issues? Where can I see extended description of what is happening?
Thank you in advance!