Amigos, preciso listar as últimas NFes emitidas, estou passando esses parâmetros:
endpoint = https://api.sandbox.nuvemfiscal.com.br/nfe
-----------------------------------
payload = { "cpf_cnpj":"33911101000254", "ambiente":"homologacao" }
-----------------------------------
Só que esta retornando o erro:
{
"error": {
"code": "InvalidJsonProperty",
"message": "Property \"cpf_cnpj\" does not refer to a known property in type \"Nfe.DTO.TNfePedidoEmissao\""
}
}
Em PHP estou usando os comandos:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$endpoint);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $payload);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json',"Authorization: Bearer $token" ));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$server_response = curl_exec($ch);
$error = curl_error($ch);
$errno = curl_errno($ch);
curl_close ($ch);
echo "<pre>";
print_r($server_response);
echo "</pre>";
o que poderia ser?