I am creating a GET Rest api
[HttpGet]
[Route("{email}")]
public async Task<IHttpActionResult> GetUsers(string email)
{
//rest of the code
}
When I hit the api from Postman, it gave IIS 10.0 Detailed Error - 404.0 - Not Found
It works when I put a trailing '/' after the email in URL, but I don't want to use that, is there any other way to resolve this?