Routing error: No HTTP resource was found that matches the request URI
问题 I'm trying to make the API call http://localhost:56578/v1/reports to call my GetReports() method. However I continue to get the error message in the subject. I'm following the ms docs here via the route prefix: https://docs.microsoft.com/en-us/aspnet/web-api/overview/web-api-routing-and-actions/attribute-routing-in-web-api-2#route-prefixes What am I doing wrong? ReportV1Controller.cs [Authorize] [RoutePrefix("v1/reports")] .... .... [Route("")] public IHttpActionResult GetReports()