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

# Ler configurações

> Retorna as configurações atuais da instância indicada no parâmetro de caminho `{instance}`.



## OpenAPI

````yaml openapi.evolution-v2.pt.json GET /settings/find/{instance}
openapi: 3.1.0
info:
  title: Evolution V2 Layer
  version: 1.0.0
  description: >-
    Camada de API do Pilot Status — Evolution V2. Base URL
    `https://pilotstatus.com.br/api/layer/evolution-v2`. Autentique com o header
    `apikey` (sua chave `ps_` do Pilot Status). Endpoints de instância/sessão
    NÃO estão disponíveis na camada.
servers:
  - url: https://pilotstatus.com.br/api/layer/evolution-v2
security:
  - apiKey: []
tags:
  - name: Chamada e Business
  - name: Chat
  - name: Grupo
  - name: Etiqueta (Label)
  - name: Mensagem
  - name: Perfil
  - name: Configurações e Proxy
  - name: Armazenamento (S3)
  - name: Template
paths:
  /settings/find/{instance}:
    get:
      tags:
        - Configurações e Proxy
      summary: Ler configurações
      description: >-
        Retorna as configurações atuais da instância indicada no parâmetro de
        caminho `{instance}`.
      operationId: get__settings_find_instance
      parameters:
        - name: instance
          in: path
          required: true
          schema:
            type: string
          description: O nome de exibição do número no painel do Pilot Status.
      responses:
        '200':
          description: Sucesso — corpo de resposta nativo do provedor.
          content:
            application/json:
              schema:
                type: object
                description: >-
                  The saved settings for the instance. Returns null when no
                  settings record exists.
                properties:
                  rejectCall:
                    type: boolean
                    description: Automatically reject incoming WhatsApp calls.
                  msgCall:
                    type: string
                    description: Message sent to the caller when a call is auto-rejected.
                  groupsIgnore:
                    type: boolean
                    description: Ignore messages received from groups.
                  alwaysOnline:
                    type: boolean
                    description: Keep the connection presence as always online.
                  readMessages:
                    type: boolean
                    description: Automatically mark received messages as read.
                  readStatus:
                    type: boolean
                    description: Automatically mark status/stories as seen.
                  syncFullHistory:
                    type: boolean
                    description: Sync the full message history on connect.
                  wavoipToken:
                    type: string
                    description: WAVoIP token used to enable voice-call handling.
              example:
                rejectCall: true
                msgCall: I can't take calls right now, please send a message.
                groupsIgnore: false
                alwaysOnline: true
                readMessages: true
                readStatus: false
                syncFullHistory: false
                wavoipToken: ''
        default:
          description: Erro — erro do provedor ou da camada.
          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>`.

````