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

# Upload the account logo

> Upload the logo of the authenticated user's account and save the URL in the account record.



## OpenAPI

````yaml /api-reference/comecar.yaml post /v2/accounts/logo
openapi: 3.0.0
info:
  title: Tarefy API
  description: >-
    Tarefy REST API — task management, culture and performance platform.


    Endpoints are versioned at `/v2/...`. Authentication via Bearer JWT in the
    `Authorization` header.


    To get started, see the [authentication guide](/authentication) and the
    [quickstart](/quickstart).
  version: 2.0.0
  contact:
    name: Tarefy Support
    email: suporte@tarefy.com
    url: https://tarefy.com
  license:
    name: Proprietary
    url: https://tarefy.com
servers:
  - url: https://app.tarefy.com/nodeapi
    description: Production
security:
  - bearerAuth: []
tags:
  - name: User
    description: Login, profile, session
  - name: API Tokens
    description: Persistent tokens for integrations
  - name: Accounts
    description: Organization account
paths:
  /v2/accounts/logo:
    post:
      tags:
        - Accounts
      summary: Upload the account logo
      description: >-
        Upload the logo of the authenticated user's account and save the URL in
        the account record.
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
              required:
                - file
      responses:
        '200':
          description: Logo atualizada com sucesso
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: boolean
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      Location:
                        type: string
                        description: URL da logo atualizada
        '400':
          description: Requisição inválida ou arquivo inválido
        '404':
          description: Conta não encontrada
        '413':
          description: Arquivo muito grande
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````