I am trying to set a query paramter in azure function v2. the Name query parameter remains null. What am I missing. The url I use in postman is http://localhost:7071/api/ScheduledJob/Frank
[FunctionName("ScheduledJob")]
public static async Task<IActionResult> Run([HttpTrigger(AuthorizationLevel.Function, "get",
Route = "{name}")] HttpRequest req,
ILogger log)
{
string name = req.Query["name"];
}