We have api controllers but name are very long and not good while providing services to consumers how can we provide custom request name for asp.net web api ?
public class ManageProductController : ApiController { [HttpGet] public List<Product> getProductList() { // returns product list } }