It works fine with the code below is I only have one parameter but how do I do TWO input parameters? If I just use [HttpGet] then none of the parameters are send though it works fine outside of Swagger. Help ?
//[HttpGet]
[Consumes("application/json")]
[HttpGet("{caseId}")]
public ActionResult Get(string caseId, string fileName)
{
return null;
}
getmethod to receive both parameteres, and show it inSwashbuckle?