Cria novo campo personalizado
curl --request POST \
--url https://api-publica.cpluschat.com.br/v1/campos-personalizados \
--header 'Content-Type: application/json' \
--header 'X-Ambiente: <api-key>' \
--header 'X-Authorization: <api-key>' \
--data '
{
"Nome": "<string>",
"Tipo": "<string>",
"Area": "<string>",
"Chave": "<string>",
"PreenchimentoObrigatorio": true,
"Intervalo": true,
"Descricao": "<string>",
"MultiplaSelecao": true,
"Ordem": 123,
"Ativo": true,
"Opcoes": [
{
"Nome": "<string>",
"Valor": "<string>",
"OrdemDeExibicao": 123
}
]
}
'import requests
url = "https://api-publica.cpluschat.com.br/v1/campos-personalizados"
payload = {
"Nome": "<string>",
"Tipo": "<string>",
"Area": "<string>",
"Chave": "<string>",
"PreenchimentoObrigatorio": True,
"Intervalo": True,
"Descricao": "<string>",
"MultiplaSelecao": True,
"Ordem": 123,
"Ativo": True,
"Opcoes": [
{
"Nome": "<string>",
"Valor": "<string>",
"OrdemDeExibicao": 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({
Nome: '<string>',
Tipo: '<string>',
Area: '<string>',
Chave: '<string>',
PreenchimentoObrigatorio: true,
Intervalo: true,
Descricao: '<string>',
MultiplaSelecao: true,
Ordem: 123,
Ativo: true,
Opcoes: [{Nome: '<string>', Valor: '<string>', OrdemDeExibicao: 123}]
})
};
fetch('https://api-publica.cpluschat.com.br/v1/campos-personalizados', 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/campos-personalizados",
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([
'Nome' => '<string>',
'Tipo' => '<string>',
'Area' => '<string>',
'Chave' => '<string>',
'PreenchimentoObrigatorio' => true,
'Intervalo' => true,
'Descricao' => '<string>',
'MultiplaSelecao' => true,
'Ordem' => 123,
'Ativo' => true,
'Opcoes' => [
[
'Nome' => '<string>',
'Valor' => '<string>',
'OrdemDeExibicao' => 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/campos-personalizados"
payload := strings.NewReader("{\n \"Nome\": \"<string>\",\n \"Tipo\": \"<string>\",\n \"Area\": \"<string>\",\n \"Chave\": \"<string>\",\n \"PreenchimentoObrigatorio\": true,\n \"Intervalo\": true,\n \"Descricao\": \"<string>\",\n \"MultiplaSelecao\": true,\n \"Ordem\": 123,\n \"Ativo\": true,\n \"Opcoes\": [\n {\n \"Nome\": \"<string>\",\n \"Valor\": \"<string>\",\n \"OrdemDeExibicao\": 123\n }\n ]\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/campos-personalizados")
.header("X-Ambiente", "<api-key>")
.header("X-Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"Nome\": \"<string>\",\n \"Tipo\": \"<string>\",\n \"Area\": \"<string>\",\n \"Chave\": \"<string>\",\n \"PreenchimentoObrigatorio\": true,\n \"Intervalo\": true,\n \"Descricao\": \"<string>\",\n \"MultiplaSelecao\": true,\n \"Ordem\": 123,\n \"Ativo\": true,\n \"Opcoes\": [\n {\n \"Nome\": \"<string>\",\n \"Valor\": \"<string>\",\n \"OrdemDeExibicao\": 123\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-publica.cpluschat.com.br/v1/campos-personalizados")
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 \"Nome\": \"<string>\",\n \"Tipo\": \"<string>\",\n \"Area\": \"<string>\",\n \"Chave\": \"<string>\",\n \"PreenchimentoObrigatorio\": true,\n \"Intervalo\": true,\n \"Descricao\": \"<string>\",\n \"MultiplaSelecao\": true,\n \"Ordem\": 123,\n \"Ativo\": true,\n \"Opcoes\": [\n {\n \"Nome\": \"<string>\",\n \"Valor\": \"<string>\",\n \"OrdemDeExibicao\": 123\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"Id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"Nome": "<string>",
"Chave": "<string>",
"Tipo": "<string>",
"Area": "<string>",
"PreenchimentoObrigatorio": true,
"Intervalo": true,
"Descricao": "<string>",
"MultiplaSelecao": true,
"Ordem": 123,
"Ativo": true,
"Opcoes": [
{
"Id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"Nome": "<string>",
"Valor": "<string>",
"OrdemDeExibicao": 123
}
]
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>",
"errors": {}
}Campos personalizados
Criar campo personalizado
POST
/
v1
/
campos-personalizados
Cria novo campo personalizado
curl --request POST \
--url https://api-publica.cpluschat.com.br/v1/campos-personalizados \
--header 'Content-Type: application/json' \
--header 'X-Ambiente: <api-key>' \
--header 'X-Authorization: <api-key>' \
--data '
{
"Nome": "<string>",
"Tipo": "<string>",
"Area": "<string>",
"Chave": "<string>",
"PreenchimentoObrigatorio": true,
"Intervalo": true,
"Descricao": "<string>",
"MultiplaSelecao": true,
"Ordem": 123,
"Ativo": true,
"Opcoes": [
{
"Nome": "<string>",
"Valor": "<string>",
"OrdemDeExibicao": 123
}
]
}
'import requests
url = "https://api-publica.cpluschat.com.br/v1/campos-personalizados"
payload = {
"Nome": "<string>",
"Tipo": "<string>",
"Area": "<string>",
"Chave": "<string>",
"PreenchimentoObrigatorio": True,
"Intervalo": True,
"Descricao": "<string>",
"MultiplaSelecao": True,
"Ordem": 123,
"Ativo": True,
"Opcoes": [
{
"Nome": "<string>",
"Valor": "<string>",
"OrdemDeExibicao": 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({
Nome: '<string>',
Tipo: '<string>',
Area: '<string>',
Chave: '<string>',
PreenchimentoObrigatorio: true,
Intervalo: true,
Descricao: '<string>',
MultiplaSelecao: true,
Ordem: 123,
Ativo: true,
Opcoes: [{Nome: '<string>', Valor: '<string>', OrdemDeExibicao: 123}]
})
};
fetch('https://api-publica.cpluschat.com.br/v1/campos-personalizados', 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/campos-personalizados",
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([
'Nome' => '<string>',
'Tipo' => '<string>',
'Area' => '<string>',
'Chave' => '<string>',
'PreenchimentoObrigatorio' => true,
'Intervalo' => true,
'Descricao' => '<string>',
'MultiplaSelecao' => true,
'Ordem' => 123,
'Ativo' => true,
'Opcoes' => [
[
'Nome' => '<string>',
'Valor' => '<string>',
'OrdemDeExibicao' => 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/campos-personalizados"
payload := strings.NewReader("{\n \"Nome\": \"<string>\",\n \"Tipo\": \"<string>\",\n \"Area\": \"<string>\",\n \"Chave\": \"<string>\",\n \"PreenchimentoObrigatorio\": true,\n \"Intervalo\": true,\n \"Descricao\": \"<string>\",\n \"MultiplaSelecao\": true,\n \"Ordem\": 123,\n \"Ativo\": true,\n \"Opcoes\": [\n {\n \"Nome\": \"<string>\",\n \"Valor\": \"<string>\",\n \"OrdemDeExibicao\": 123\n }\n ]\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/campos-personalizados")
.header("X-Ambiente", "<api-key>")
.header("X-Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"Nome\": \"<string>\",\n \"Tipo\": \"<string>\",\n \"Area\": \"<string>\",\n \"Chave\": \"<string>\",\n \"PreenchimentoObrigatorio\": true,\n \"Intervalo\": true,\n \"Descricao\": \"<string>\",\n \"MultiplaSelecao\": true,\n \"Ordem\": 123,\n \"Ativo\": true,\n \"Opcoes\": [\n {\n \"Nome\": \"<string>\",\n \"Valor\": \"<string>\",\n \"OrdemDeExibicao\": 123\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-publica.cpluschat.com.br/v1/campos-personalizados")
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 \"Nome\": \"<string>\",\n \"Tipo\": \"<string>\",\n \"Area\": \"<string>\",\n \"Chave\": \"<string>\",\n \"PreenchimentoObrigatorio\": true,\n \"Intervalo\": true,\n \"Descricao\": \"<string>\",\n \"MultiplaSelecao\": true,\n \"Ordem\": 123,\n \"Ativo\": true,\n \"Opcoes\": [\n {\n \"Nome\": \"<string>\",\n \"Valor\": \"<string>\",\n \"OrdemDeExibicao\": 123\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"Id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"Nome": "<string>",
"Chave": "<string>",
"Tipo": "<string>",
"Area": "<string>",
"PreenchimentoObrigatorio": true,
"Intervalo": true,
"Descricao": "<string>",
"MultiplaSelecao": true,
"Ordem": 123,
"Ativo": true,
"Opcoes": [
{
"Id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"Nome": "<string>",
"Valor": "<string>",
"OrdemDeExibicao": 123
}
]
}{
"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
Required string length:
1 - 200Minimum string length:
1Minimum string length:
1Maximum string length:
100Maximum string length:
4000Show child attributes
Show child attributes
⌘I