I can not send a Model that I am manually creating to my controller. When I send the request, it\'s coming up with empty properties. There is something wrong that is hindering t
ASP.NET Core requires to add [FromBody] attribute to parameter to parse application/json content
[FromBody]
application/json
[HttpPost] [Route("pessoa-gerenciar/changeFormaContato")] public IActionResult changeFormaContato([FromBody] OperadoraChamadaViewModel operadoraChamadaViewModel)