I am using routing api in version 7.2 and trying to get routes by following request:
https://route.api.here.com/routing/7.2/calculateroute.json?waypoint0=52.32122157270602,4.567701386612513&waypoint1=52.939151549621045,17.300288086614863&mode=fastest;truck;tollroad:-3&app_id=MY_APP_ID&app_code=MY_APP_CODE&alternatives=2&height=3.2
but I get response NoRouteFound. The vehicle that is travelling by this route is a bus. The height of this bus is 3,2 meter. To avoid collision with any viaducts I passed parameter "truck" so that I can use parameter "height" and set it to 3,2. The request doesn't find any viable routes because it avoids tollroads with strict weight. In practice the driver does not have to pay for this road because the vehicle is not that heavy so the request should return some routes.
Is there any more parameters that I can specify so that I find routes matching my criteria or do you have any other idea how to solve my problem?