> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pilotstatus.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# 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`.



## OpenAPI

````yaml openapi.evolution-go.json POST /user/privacy
openapi: 3.1.0
info:
  title: Evolution GO Layer
  version: 1.0.0
  description: >-
    Pilot Status API Layer — Evolution GO. Base URL
    `https://pilotstatus.com.br/api/layer/evolution-go`. Authenticate with the
    `apikey` header (your Pilot Status `ps_` key) or `Authorization: Bearer`.
    Instance/session endpoints are NOT available through the layer.
servers:
  - url: https://pilotstatus.com.br/api/layer/evolution-go
security:
  - apiKey: []
tags:
  - name: Call (voice)
  - name: Chat
  - name: Community
  - name: Group
  - name: Label
  - name: Message
  - name: Newsletter / Channels
  - name: Send (load-balanced)
  - name: User / Contacts
paths:
  /user/privacy:
    post:
      tags:
        - User / Contacts
      summary: Set privacy settings
      description: >-
        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`.
      operationId: post__user_privacy
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                groupAdd:
                  type: string
                  description: >-
                    Who can add you to groups (`all`, `contacts`,
                    `contact_blacklist`, `none`).
                  example: contacts
                lastSeen:
                  type: string
                  description: >-
                    Who can see your last seen (`all`, `contacts`,
                    `contact_blacklist`, `none`).
                  example: contacts
                status:
                  type: string
                  description: >-
                    Who can see your status (`all`, `contacts`,
                    `contact_blacklist`, `none`).
                  example: contacts
                profile:
                  type: string
                  description: >-
                    Who can see your profile photo (`all`, `contacts`,
                    `contact_blacklist`, `none`).
                  example: all
                readReceipts:
                  type: string
                  description: Read receipts setting (`all`, `none`).
                  example: all
                callAdd:
                  type: string
                  description: Who can call you (`all`, `known`).
                  example: known
                online:
                  type: string
                  description: Who can see when you are online (`all`, `match_last_seen`).
                  example: match_last_seen
              required:
                - groupAdd
                - lastSeen
                - status
                - profile
                - readReceipts
                - callAdd
                - online
      responses:
        '200':
          description: Success — provider-native response body.
          content:
            application/json:
              schema:
                type: object
                description: >-
                  Updated PrivacySettings (re-fetched after applying changes)
                  wrapped in the Evolution GO envelope.
                properties:
                  message:
                    type: string
                    description: Operation status message.
                  data:
                    type: object
                    description: >-
                      Privacy settings after the update. Each value is one of:
                      all, contacts, contact_blacklist, contact_allowlist,
                      match_last_seen, known, none, on_standard, off, or empty
                      (undefined).
                    properties:
                      GroupAdd:
                        type: string
                        description: Who can add the user to groups.
                      LastSeen:
                        type: string
                        description: Who can see the user's last seen.
                      Status:
                        type: string
                        description: Who can see the user's status updates.
                      Profile:
                        type: string
                        description: Who can see the user's profile photo.
                      ReadReceipts:
                        type: string
                        description: Read receipts setting (all or none).
                      CallAdd:
                        type: string
                        description: Who can call the user (all or known).
                      Online:
                        type: string
                        description: >-
                          Who can see the user's online presence (all or
                          match_last_seen).
                      Messages:
                        type: string
                        description: Who can message the user (all or contacts).
                      Defense:
                        type: string
                        description: >-
                          Defense/advanced protection setting (on_standard or
                          off).
                      Stickers:
                        type: string
                        description: Sticker suggestions privacy setting.
              example:
                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
        default:
          description: Error — provider or layer error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                  error:
                    type: string
                  message:
                    type: string
                  response:
                    type: object
              example:
                status: 400
                error: Bad Request
                message: Invalid payload
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: apikey
      description: >-
        Your Pilot Status API key (ps_...). Evolution GO also accepts
        `Authorization: Bearer <key>`.

````