I have an Api that receives the data posted as it shows the image, it happens that the data is coming empty, I appreciate the help.
//http://localhost:49764/api/unidade/carrinho/consultaUnidadeAtendimento[HttpPost][Route("unidade/carrinho/consultaUnidadeAtendimento")]
public HttpResponseMessage ConsultaUnidadeAtendimento(ConsultaUnidadeAtendimentoModel consultaAtendimento)
{
try
{
string numeroCarrinho = consultaAtendimento.NumeroCarrinho.ToString();
string cep = consultaAtendimento.Cep;
bool retiraLocal = consultaAtendimento.RetiraNoLocal;
var tTabela = "";
var listar = "";
return Request.CreateResponse(HttpStatusCode.OK, new { usuario = listar.ToArray() });
}
catch (Exception ex)
{
return Request.CreateResponse(HttpStatusCode.BadRequest, ex.Message);
}
}
public class ConsultaUnidadeAtendimentoModel
{
[JsonProperty("numeroCarrinho")]
public long NumeroCarrinho { get; set; }
[JsonProperty("itens")]
public dynamic Itens { get; set; }
[JsonProperty("cep")]
public string Cep { get; set; }
[JsonProperty("retiraNoLocal")]
public bool RetiraNoLocal { get; set; }
}