The following does not return a response. I get the same result if I change Ok() to Created(). If I change it to BadResponse() it returns JSON as expected. What am I doing wrong?
[HttpPost]
public IActionResult Test()
{
return Ok(new { Test = "Value" });
}