Chatwoot
Testar credenciais do Chatwoot
Dry-run das credenciais Chatwoot SEM criar inbox nem gravar nada. Omita userAccessToken para reusar o token salvo. Retorna { ok, checks: [...] }.
POST
/
v1
/
chatwoot
/
test
Testar credenciais do Chatwoot
curl --request POST \
--url https://pilotstatus.com.br/v1/chatwoot/test \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"instanceUrl": "https://app.chatwoot.com",
"accountId": "1",
"userAccessToken": "<string>"
}
'import requests
url = "https://pilotstatus.com.br/v1/chatwoot/test"
payload = {
"instanceUrl": "https://app.chatwoot.com",
"accountId": "1",
"userAccessToken": "<string>"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
instanceUrl: 'https://app.chatwoot.com',
accountId: '1',
userAccessToken: '<string>'
})
};
fetch('https://pilotstatus.com.br/v1/chatwoot/test', 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://pilotstatus.com.br/v1/chatwoot/test",
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([
'instanceUrl' => 'https://app.chatwoot.com',
'accountId' => '1',
'userAccessToken' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <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://pilotstatus.com.br/v1/chatwoot/test"
payload := strings.NewReader("{\n \"instanceUrl\": \"https://app.chatwoot.com\",\n \"accountId\": \"1\",\n \"userAccessToken\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<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://pilotstatus.com.br/v1/chatwoot/test")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"instanceUrl\": \"https://app.chatwoot.com\",\n \"accountId\": \"1\",\n \"userAccessToken\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://pilotstatus.com.br/v1/chatwoot/test")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"instanceUrl\": \"https://app.chatwoot.com\",\n \"accountId\": \"1\",\n \"userAccessToken\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"ok": true,
"checks": [
{
"name": "Credenciais aceitas pela conta",
"ok": true
},
{
"name": "Permissão de acesso à conta",
"ok": true
}
]
}{
"error": "Validation error"
}{
"error": "Unauthorized"
}{
"error": "WhatsApp number not found",
"code": "NUMBER_NOT_FOUND"
}{
"error": "Too many requests"
}Autorizações
apiKeyapiKeyId
Sua chave de API ps_
Cabeçalhos
Scopes to a single number (required for tenant keys / per-number OAuth grants).
Corpo
application/json
Resposta
Resultado da checagem de credenciais
Esta página foi útil?
⌘I
Testar credenciais do Chatwoot
curl --request POST \
--url https://pilotstatus.com.br/v1/chatwoot/test \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"instanceUrl": "https://app.chatwoot.com",
"accountId": "1",
"userAccessToken": "<string>"
}
'import requests
url = "https://pilotstatus.com.br/v1/chatwoot/test"
payload = {
"instanceUrl": "https://app.chatwoot.com",
"accountId": "1",
"userAccessToken": "<string>"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
instanceUrl: 'https://app.chatwoot.com',
accountId: '1',
userAccessToken: '<string>'
})
};
fetch('https://pilotstatus.com.br/v1/chatwoot/test', 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://pilotstatus.com.br/v1/chatwoot/test",
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([
'instanceUrl' => 'https://app.chatwoot.com',
'accountId' => '1',
'userAccessToken' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <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://pilotstatus.com.br/v1/chatwoot/test"
payload := strings.NewReader("{\n \"instanceUrl\": \"https://app.chatwoot.com\",\n \"accountId\": \"1\",\n \"userAccessToken\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<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://pilotstatus.com.br/v1/chatwoot/test")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"instanceUrl\": \"https://app.chatwoot.com\",\n \"accountId\": \"1\",\n \"userAccessToken\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://pilotstatus.com.br/v1/chatwoot/test")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"instanceUrl\": \"https://app.chatwoot.com\",\n \"accountId\": \"1\",\n \"userAccessToken\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"ok": true,
"checks": [
{
"name": "Credenciais aceitas pela conta",
"ok": true
},
{
"name": "Permissão de acesso à conta",
"ok": true
}
]
}{
"error": "Validation error"
}{
"error": "Unauthorized"
}{
"error": "WhatsApp number not found",
"code": "NUMBER_NOT_FOUND"
}{
"error": "Too many requests"
}