I\'ve the following problem, my route attribute is not working.
I have the following action:
[HttpGet] [Route(\"~api/admin/template/{fileName}\")] pu
With my Web API 2 project I had to add a [RoutePrefix("events")] to the controller for it to pickup the action route attribute.
[RoutePrefix("events")]