I am looking at the following tutorial from Microsoft. As per this tutorial,
In the first example, \"products\" matches the controller named Produc
Adding an answer to reflect that the latest version of Web API supports [Route] attribute natively
[Route]
[Route("api/products")] public IEnumerable GetAllProducts(){} [Route("api/products/sold")] public IEnumerable GetSoldProducts(){}