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

# Definir foto de perfil

> Define a foto de perfil do número conectado.



## OpenAPI

````yaml openapi.evolution-go.pt.json POST /user/profilePicture
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:
  /user/profilePicture:
    post:
      tags:
        - Usuário / Contatos
      summary: Definir foto de perfil
      description: Define a foto de perfil do número conectado.
      operationId: post__user_profilePicture
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                image:
                  type: string
                  description: Imagem como URL ou dados codificados em base64.
                  example: https://media.pilotstatus.com.br/avatar.jpg
              required:
                - image
      responses:
        '200':
          description: Sucesso — corpo de resposta nativo do provedor.
          content:
            application/json:
              schema:
                type: object
                description: >-
                  Echo of the applied profile picture, wrapped in the Evolution
                  GO envelope.
                properties:
                  message:
                    type: string
                    description: Operation status message.
                  data:
                    type: object
                    description: Echo of the request payload after the picture was set.
                    properties:
                      image:
                        type: string
                        description: URL of the image that was set as the profile picture.
              example:
                message: success
                data:
                  image: https://cdn.example.com/avatars/profile.jpg
        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>`.

````