Cria endereço para uma pessoa
curl --request POST \
--url https://api-publica.cpluschat.com.br/v1/pessoas/endereco \
--header 'Content-Type: application/json' \
--header 'X-Ambiente: <api-key>' \
--header 'X-Authorization: <api-key>' \
--data '
{
"IdPessoa": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"Logradouro": "<string>",
"CodigoDeReferencia": "<string>",
"Numero": "<string>",
"Complemento": "<string>",
"Bairro": "<string>",
"Cep": "<string>",
"Cidade": "<string>",
"Estado": "<string>",
"Referencia": "<string>",
"Principal": true,
"Ativo": true,
"Latitude": 123,
"Longitude": 123
}
'import requests
url = "https://api-publica.cpluschat.com.br/v1/pessoas/endereco"
payload = {
"IdPessoa": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"Logradouro": "<string>",
"CodigoDeReferencia": "<string>",
"Numero": "<string>",
"Complemento": "<string>",
"Bairro": "<string>",
"Cep": "<string>",
"Cidade": "<string>",
"Estado": "<string>",
"Referencia": "<string>",
"Principal": True,
"Ativo": True,
"Latitude": 123,
"Longitude": 123
}
headers = {
"X-Ambiente": "<api-key>",
"X-Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Ambiente': '<api-key>',
'X-Authorization': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
IdPessoa: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
Logradouro: '<string>',
CodigoDeReferencia: '<string>',
Numero: '<string>',
Complemento: '<string>',
Bairro: '<string>',
Cep: '<string>',
Cidade: '<string>',
Estado: '<string>',
Referencia: '<string>',
Principal: true,
Ativo: true,
Latitude: 123,
Longitude: 123
})
};
fetch('https://api-publica.cpluschat.com.br/v1/pessoas/endereco', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-publica.cpluschat.com.br/v1/pessoas/endereco",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'IdPessoa' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'Logradouro' => '<string>',
'CodigoDeReferencia' => '<string>',
'Numero' => '<string>',
'Complemento' => '<string>',
'Bairro' => '<string>',
'Cep' => '<string>',
'Cidade' => '<string>',
'Estado' => '<string>',
'Referencia' => '<string>',
'Principal' => true,
'Ativo' => true,
'Latitude' => 123,
'Longitude' => 123
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Ambiente: <api-key>",
"X-Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api-publica.cpluschat.com.br/v1/pessoas/endereco"
payload := strings.NewReader("{\n \"IdPessoa\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"Logradouro\": \"<string>\",\n \"CodigoDeReferencia\": \"<string>\",\n \"Numero\": \"<string>\",\n \"Complemento\": \"<string>\",\n \"Bairro\": \"<string>\",\n \"Cep\": \"<string>\",\n \"Cidade\": \"<string>\",\n \"Estado\": \"<string>\",\n \"Referencia\": \"<string>\",\n \"Principal\": true,\n \"Ativo\": true,\n \"Latitude\": 123,\n \"Longitude\": 123\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Ambiente", "<api-key>")
req.Header.Add("X-Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api-publica.cpluschat.com.br/v1/pessoas/endereco")
.header("X-Ambiente", "<api-key>")
.header("X-Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"IdPessoa\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"Logradouro\": \"<string>\",\n \"CodigoDeReferencia\": \"<string>\",\n \"Numero\": \"<string>\",\n \"Complemento\": \"<string>\",\n \"Bairro\": \"<string>\",\n \"Cep\": \"<string>\",\n \"Cidade\": \"<string>\",\n \"Estado\": \"<string>\",\n \"Referencia\": \"<string>\",\n \"Principal\": true,\n \"Ativo\": true,\n \"Latitude\": 123,\n \"Longitude\": 123\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-publica.cpluschat.com.br/v1/pessoas/endereco")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Ambiente"] = '<api-key>'
request["X-Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"IdPessoa\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"Logradouro\": \"<string>\",\n \"CodigoDeReferencia\": \"<string>\",\n \"Numero\": \"<string>\",\n \"Complemento\": \"<string>\",\n \"Bairro\": \"<string>\",\n \"Cep\": \"<string>\",\n \"Cidade\": \"<string>\",\n \"Estado\": \"<string>\",\n \"Referencia\": \"<string>\",\n \"Principal\": true,\n \"Ativo\": true,\n \"Latitude\": 123,\n \"Longitude\": 123\n}"
response = http.request(request)
puts response.read_body{
"Id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"IdPessoa": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"CodigoDeReferencia": "<string>",
"Logradouro": "<string>",
"Numero": "<string>",
"Complemento": "<string>",
"Bairro": "<string>",
"Cep": "<string>",
"NomeMunicipio": "<string>",
"SiglaUf": "<string>",
"Referencia": "<string>",
"Principal": true,
"Ativo": true,
"Latitude": 123,
"Longitude": 123
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>",
"errors": {}
}Pessoas
Criar endereço da pessoa
POST
/
v1
/
pessoas
/
endereco
Cria endereço para uma pessoa
curl --request POST \
--url https://api-publica.cpluschat.com.br/v1/pessoas/endereco \
--header 'Content-Type: application/json' \
--header 'X-Ambiente: <api-key>' \
--header 'X-Authorization: <api-key>' \
--data '
{
"IdPessoa": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"Logradouro": "<string>",
"CodigoDeReferencia": "<string>",
"Numero": "<string>",
"Complemento": "<string>",
"Bairro": "<string>",
"Cep": "<string>",
"Cidade": "<string>",
"Estado": "<string>",
"Referencia": "<string>",
"Principal": true,
"Ativo": true,
"Latitude": 123,
"Longitude": 123
}
'import requests
url = "https://api-publica.cpluschat.com.br/v1/pessoas/endereco"
payload = {
"IdPessoa": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"Logradouro": "<string>",
"CodigoDeReferencia": "<string>",
"Numero": "<string>",
"Complemento": "<string>",
"Bairro": "<string>",
"Cep": "<string>",
"Cidade": "<string>",
"Estado": "<string>",
"Referencia": "<string>",
"Principal": True,
"Ativo": True,
"Latitude": 123,
"Longitude": 123
}
headers = {
"X-Ambiente": "<api-key>",
"X-Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Ambiente': '<api-key>',
'X-Authorization': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
IdPessoa: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
Logradouro: '<string>',
CodigoDeReferencia: '<string>',
Numero: '<string>',
Complemento: '<string>',
Bairro: '<string>',
Cep: '<string>',
Cidade: '<string>',
Estado: '<string>',
Referencia: '<string>',
Principal: true,
Ativo: true,
Latitude: 123,
Longitude: 123
})
};
fetch('https://api-publica.cpluschat.com.br/v1/pessoas/endereco', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-publica.cpluschat.com.br/v1/pessoas/endereco",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'IdPessoa' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'Logradouro' => '<string>',
'CodigoDeReferencia' => '<string>',
'Numero' => '<string>',
'Complemento' => '<string>',
'Bairro' => '<string>',
'Cep' => '<string>',
'Cidade' => '<string>',
'Estado' => '<string>',
'Referencia' => '<string>',
'Principal' => true,
'Ativo' => true,
'Latitude' => 123,
'Longitude' => 123
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Ambiente: <api-key>",
"X-Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api-publica.cpluschat.com.br/v1/pessoas/endereco"
payload := strings.NewReader("{\n \"IdPessoa\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"Logradouro\": \"<string>\",\n \"CodigoDeReferencia\": \"<string>\",\n \"Numero\": \"<string>\",\n \"Complemento\": \"<string>\",\n \"Bairro\": \"<string>\",\n \"Cep\": \"<string>\",\n \"Cidade\": \"<string>\",\n \"Estado\": \"<string>\",\n \"Referencia\": \"<string>\",\n \"Principal\": true,\n \"Ativo\": true,\n \"Latitude\": 123,\n \"Longitude\": 123\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Ambiente", "<api-key>")
req.Header.Add("X-Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api-publica.cpluschat.com.br/v1/pessoas/endereco")
.header("X-Ambiente", "<api-key>")
.header("X-Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"IdPessoa\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"Logradouro\": \"<string>\",\n \"CodigoDeReferencia\": \"<string>\",\n \"Numero\": \"<string>\",\n \"Complemento\": \"<string>\",\n \"Bairro\": \"<string>\",\n \"Cep\": \"<string>\",\n \"Cidade\": \"<string>\",\n \"Estado\": \"<string>\",\n \"Referencia\": \"<string>\",\n \"Principal\": true,\n \"Ativo\": true,\n \"Latitude\": 123,\n \"Longitude\": 123\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-publica.cpluschat.com.br/v1/pessoas/endereco")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Ambiente"] = '<api-key>'
request["X-Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"IdPessoa\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"Logradouro\": \"<string>\",\n \"CodigoDeReferencia\": \"<string>\",\n \"Numero\": \"<string>\",\n \"Complemento\": \"<string>\",\n \"Bairro\": \"<string>\",\n \"Cep\": \"<string>\",\n \"Cidade\": \"<string>\",\n \"Estado\": \"<string>\",\n \"Referencia\": \"<string>\",\n \"Principal\": true,\n \"Ativo\": true,\n \"Latitude\": 123,\n \"Longitude\": 123\n}"
response = http.request(request)
puts response.read_body{
"Id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"IdPessoa": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"CodigoDeReferencia": "<string>",
"Logradouro": "<string>",
"Numero": "<string>",
"Complemento": "<string>",
"Bairro": "<string>",
"Cep": "<string>",
"NomeMunicipio": "<string>",
"SiglaUf": "<string>",
"Referencia": "<string>",
"Principal": true,
"Ativo": true,
"Latitude": 123,
"Longitude": 123
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>",
"errors": {}
}Authorizations
Número da sua conta no Novus CRM. Aceita também X-Canal com o ID de um canal, que resolve a conta a partir dele.
Chave de API no formato X-Chave-Api {chave}. O prefixo faz parte do valor. A chave fica em Minha conta › Integrações.
Body
application/json
Maximum string length:
200Maximum string length:
50Maximum string length:
20Maximum string length:
200Maximum string length:
100Maximum string length:
20Maximum string length:
100Maximum string length:
2Maximum string length:
500Response
OK
⌘I