Route Config
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
POST-method
[HttpPost]
public Probabilities Post(string word, string userId) {
Request request = new Request();
request.Identify(word, userId);
Probabilities probabilities = probabilitiesFactory.GetBy(request.ProbabilitiesId, "Id");
return probabilities;
}
Im trying to post some data, shown on the screenshot
And im getting an error
"No action was found on the controller 'Identification' that matches the request."
What is happening? How to post 2 simple strings and get the result

IdentificationController