Lembrando que para este processo já deveremos ter efetuado a autenticação e estarmos em posse do token.
<?php $cliente_vigoweb = "https://web01.vigo.com.br"; $token = "ADQUIRIDO ANTERIORMENTE NO PROCESSO DE AUTENTICAÇÃO"; //---------------------------------------------------------------------------------------------- // Consultar notas fiscais de determinado CLIENTE // Informar o "id" do CLIENTE na variável id_cliente // Informar o "cpf/cnpj" do CLIENETE na variável cpfcgc //---------------------------------------------------------------------------------------------- $id_cliente="10"; $cpfcgc="066.199.159-81"; $curl = curl_init(); curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_URL, $cliente_vigoweb . '/api/app_getnotas'); curl_setopt($curl, CURLOPT_POSTFIELDS, '{ "cpf_cnpj": "' . $cpfcgc . '", "id": "' . $id_cliente . '" }'); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_HTTPHEADER, ['Content-Type: application/json', "Authorization: Bearer " . $token]); $result = curl_exec($curl); curl_close($curl); if(!$result){die("ERRO");} echo $result; ?>