So I have had an old api call with this signature
public dynamic Add(String organizationId, String locationId, String orderType, String massTypeId, double amount, DateTime from, DateTime to, double distance, Driving driving)
Now I have changed to like this
public dynamic Add(String organizationId, String locationId, String orderType, String massTypeId, double amount, DateTime from, DateTime to, double distance, bool driving)
The only difference is the type of last parameter. For now I have to have my old api call until my apps are deployed. But if try it locally I get this error
Multiple actions were found that match the request
In my data from client the last parameter looks like this
driving : true
I send data as JSON.
Does any body know why is it happening?