we started testing the Routing API in our system and there were some questions: our goal is to calculate a route for a large truck, to determine whether it will be able to get to the delivery point, taking into account its dimensions and weight. We have formed a request according to the instructions. The request deliberately indicated the delivery point to which the truck would not be able to reach. We expected the route calculation to fail, but it did. We made other attempts with different addresses and got the same result - the route is calculated for the streets that are not passable. We did not find any information describing this behavior in the documentation. Tell me how we can achieve the desired result so that the route is not calculated if the street is not passable for a truck on the last mile? An example of the request we tested:
router.hereapi.com/v8/routes?transportMode=truck&truck[grossWeight]=20000&truck[height]=300&truck[width]=245&truck[length]=1300&origin=44.65842,10.77567&destination=38.550680,15.938761&return=summary&apiKey=
Thanks in advance for your help