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

# Unpin a chat

> Removes a chat from the pinned list.



## OpenAPI

````yaml openapi.evolution-go.json POST /chat/unpin
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:
  /chat/unpin:
    post:
      tags:
        - Chat
      summary: Unpin a chat
      description: Removes a chat from the pinned list.
      operationId: post__chat_unpin
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                chat:
                  type: string
                  description: JID of the chat to unpin.
                  example: 5511999999999@s.whatsapp.net
              required:
                - chat
      responses:
        '200':
          description: Success — provider-native response body.
          content:
            application/json:
              schema:
                type: object
                description: >-
                  Envelope returned after the app-state unpin mutation is
                  dispatched (whatsmeow SendAppState / BuildPin false).
                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: 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>`.

````