I\'ve got the following action on an ApiController:
public string Something() { return \"value\"; }
And I\'ve configured my routes as f
I don't know if this can be related to the OP's post but I was missing the [HttpGet] annotation and that was what was causing the error, as stated by @dinesh_ravva methods are assumed to be HttpPost by default.