What result is returned to me?
Note: It is not possible to automatically transfer the routing results using Remote Control. Only the user can initiate a transfer to a third system (see How do I transfer the routing results to the calling system?).
The results of the route calculation and the individual stop-off points are returned to the client server via a POST to a local URL on the client server in either JSON or XML format, depending on the import parameters transferred.
Example for the return in XML format (exportformat=xml)
<totalDistance>972291</totalDistance>
<totalCosts>114.39</totalCosts>
<cO2e>1149.75</cO2e><ExportedRoute>
<totalTime>350089</totalTime>
</ExportedRoute>
Example for the return in JSON format (exportformat=json)
{
"totalDistance": 972291,
"totalCosts": 114.39,
"cO2e": 1149.75,
"totalTime": 350089
}
Note: You can find a complete list of the transferred parameters on page Overview of the return parameters.