Set privacy settings
Updates the connected number’s privacy settings. Each field takes a privacy scope such as all, contacts, contact_blacklist, known, match_last_seen, or none.
curl --request POST \
--url https://pilotstatus.com.br/api/layer/evolution-go/user/privacy \
--header 'Content-Type: application/json' \
--header 'apikey: <api-key>' \
--data '
{
"groupAdd": "contacts",
"lastSeen": "contacts",
"status": "contacts",
"profile": "all",
"readReceipts": "all",
"callAdd": "known",
"online": "match_last_seen"
}
'import requests
url = "https://pilotstatus.com.br/api/layer/evolution-go/user/privacy"
payload = {
"groupAdd": "contacts",
"lastSeen": "contacts",
"status": "contacts",
"profile": "all",
"readReceipts": "all",
"callAdd": "known",
"online": "match_last_seen"
}
headers = {
"apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {apikey: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
groupAdd: 'contacts',
lastSeen: 'contacts',
status: 'contacts',
profile: 'all',
readReceipts: 'all',
callAdd: 'known',
online: 'match_last_seen'
})
};
fetch('https://pilotstatus.com.br/api/layer/evolution-go/user/privacy', 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/api/layer/evolution-go/user/privacy",
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([
'groupAdd' => 'contacts',
'lastSeen' => 'contacts',
'status' => 'contacts',
'profile' => 'all',
'readReceipts' => 'all',
'callAdd' => 'known',
'online' => 'match_last_seen'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"apikey: <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/api/layer/evolution-go/user/privacy"
payload := strings.NewReader("{\n \"groupAdd\": \"contacts\",\n \"lastSeen\": \"contacts\",\n \"status\": \"contacts\",\n \"profile\": \"all\",\n \"readReceipts\": \"all\",\n \"callAdd\": \"known\",\n \"online\": \"match_last_seen\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("apikey", "<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/api/layer/evolution-go/user/privacy")
.header("apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"groupAdd\": \"contacts\",\n \"lastSeen\": \"contacts\",\n \"status\": \"contacts\",\n \"profile\": \"all\",\n \"readReceipts\": \"all\",\n \"callAdd\": \"known\",\n \"online\": \"match_last_seen\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://pilotstatus.com.br/api/layer/evolution-go/user/privacy")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["apikey"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"groupAdd\": \"contacts\",\n \"lastSeen\": \"contacts\",\n \"status\": \"contacts\",\n \"profile\": \"all\",\n \"readReceipts\": \"all\",\n \"callAdd\": \"known\",\n \"online\": \"match_last_seen\"\n}"
response = http.request(request)
puts response.read_body{
"message": "success",
"data": {
"GroupAdd": "contacts",
"LastSeen": "contacts",
"Status": "contacts",
"Profile": "contacts",
"ReadReceipts": "all",
"CallAdd": "known",
"Online": "match_last_seen",
"Messages": "all",
"Defense": "on_standard",
"Stickers": "contacts"
}
}{
"status": 400,
"error": "Bad Request",
"message": "Invalid payload"
}Authorizations
Your Pilot Status API key (ps_...). Evolution GO also accepts Authorization: Bearer <key>.
Body
Who can add you to groups (all, contacts, contact_blacklist, none).
"contacts"
Who can see your last seen (all, contacts, contact_blacklist, none).
"contacts"
Who can see your status (all, contacts, contact_blacklist, none).
"contacts"
Who can see your profile photo (all, contacts, contact_blacklist, none).
"all"
Read receipts setting (all, none).
"all"
Who can call you (all, known).
"known"
Who can see when you are online (all, match_last_seen).
"match_last_seen"
Response
Success — provider-native response body.
Updated PrivacySettings (re-fetched after applying changes) wrapped in the Evolution GO envelope.
Was this page helpful?
curl --request POST \
--url https://pilotstatus.com.br/api/layer/evolution-go/user/privacy \
--header 'Content-Type: application/json' \
--header 'apikey: <api-key>' \
--data '
{
"groupAdd": "contacts",
"lastSeen": "contacts",
"status": "contacts",
"profile": "all",
"readReceipts": "all",
"callAdd": "known",
"online": "match_last_seen"
}
'import requests
url = "https://pilotstatus.com.br/api/layer/evolution-go/user/privacy"
payload = {
"groupAdd": "contacts",
"lastSeen": "contacts",
"status": "contacts",
"profile": "all",
"readReceipts": "all",
"callAdd": "known",
"online": "match_last_seen"
}
headers = {
"apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {apikey: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
groupAdd: 'contacts',
lastSeen: 'contacts',
status: 'contacts',
profile: 'all',
readReceipts: 'all',
callAdd: 'known',
online: 'match_last_seen'
})
};
fetch('https://pilotstatus.com.br/api/layer/evolution-go/user/privacy', 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/api/layer/evolution-go/user/privacy",
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([
'groupAdd' => 'contacts',
'lastSeen' => 'contacts',
'status' => 'contacts',
'profile' => 'all',
'readReceipts' => 'all',
'callAdd' => 'known',
'online' => 'match_last_seen'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"apikey: <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/api/layer/evolution-go/user/privacy"
payload := strings.NewReader("{\n \"groupAdd\": \"contacts\",\n \"lastSeen\": \"contacts\",\n \"status\": \"contacts\",\n \"profile\": \"all\",\n \"readReceipts\": \"all\",\n \"callAdd\": \"known\",\n \"online\": \"match_last_seen\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("apikey", "<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/api/layer/evolution-go/user/privacy")
.header("apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"groupAdd\": \"contacts\",\n \"lastSeen\": \"contacts\",\n \"status\": \"contacts\",\n \"profile\": \"all\",\n \"readReceipts\": \"all\",\n \"callAdd\": \"known\",\n \"online\": \"match_last_seen\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://pilotstatus.com.br/api/layer/evolution-go/user/privacy")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["apikey"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"groupAdd\": \"contacts\",\n \"lastSeen\": \"contacts\",\n \"status\": \"contacts\",\n \"profile\": \"all\",\n \"readReceipts\": \"all\",\n \"callAdd\": \"known\",\n \"online\": \"match_last_seen\"\n}"
response = http.request(request)
puts response.read_body{
"message": "success",
"data": {
"GroupAdd": "contacts",
"LastSeen": "contacts",
"Status": "contacts",
"Profile": "contacts",
"ReadReceipts": "all",
"CallAdd": "known",
"Online": "match_last_seen",
"Messages": "all",
"Defense": "on_standard",
"Stickers": "contacts"
}
}{
"status": 400,
"error": "Bad Request",
"message": "Invalid payload"
}