How to pass email as a parameter at the end of URL in ASP.NET MVC web API?
like below:
test.com/api/sales/getcustomerorders/test@test.com
I want to pass the email address as a parameter to the getcustomerorders action.
we can pass using query string. But I want to format the url like above.
Thanks.