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

# Fixar uma conversa

> Fixa uma conversa no topo da lista.



## OpenAPI

````yaml openapi.evolution-go.pt.json POST /chat/pin
openapi: 3.1.0
info:
  title: Evolution GO Layer
  version: 1.0.0
  description: >-
    Camada de API do Pilot Status — Evolution GO. Base URL
    `https://pilotstatus.com.br/api/layer/evolution-go`. Autentique com o header
    `apikey` (sua chave `ps_` do Pilot Status) ou `Authorization: Bearer`.
    Endpoints de instância/sessão NÃO estão disponíveis na camada.
servers:
  - url: https://pilotstatus.com.br/api/layer/evolution-go
security:
  - apiKey: []
tags:
  - name: Chamada (voz)
  - name: Chat
  - name: Comunidade
  - name: Grupo
  - name: Etiqueta (label)
  - name: Mensagem
  - name: Newsletter / Canais
  - name: Envio (balanceado)
  - name: Usuário / Contatos
paths:
  /chat/pin:
    post:
      tags:
        - Chat
      summary: Fixar uma conversa
      description: Fixa uma conversa no topo da lista.
      operationId: post__chat_pin
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                chat:
                  type: string
                  description: >-
                    JID da conversa a fixar (individual `...@s.whatsapp.net` ou
                    grupo `...@g.us`).
                  example: 5511999999999@s.whatsapp.net
              required:
                - chat
      responses:
        '200':
          description: Sucesso — corpo de resposta nativo do provedor.
          content:
            application/json:
              schema:
                type: object
                description: >-
                  Envelope returned after the app-state pin mutation is
                  dispatched (whatsmeow SendAppState / BuildPin).
                properties:
                  message:
                    type: string
                    description: Operation status, always "success" on a 200 response.
                  data:
                    type: object
                    properties:
                      timestamp:
                        type: string
                        description: >-
                          Stringified operation timestamp (Go time.Time).
                          App-state mutations return no server timestamp, so in
                          the current build this is the zero-value time.
              example:
                message: success
                data:
                  timestamp: 0001-01-01 00:00:00 +0000 UTC
        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>`.

````