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

# Delete avatar

> Remove the uploaded avatar of the current user. Succeeds even when there was nothing to remove.



## OpenAPI

````yaml /openapi.json delete /user/avatar
openapi: 3.1.0
info:
  title: Kaneo API
  version: 1.0.0
  description: Kaneo Project Management API - Manage projects, tasks, labels, and more
servers:
  - url: https://cloud.kaneo.app/api
    description: Kaneo API Server
security:
  - bearerAuth: []
paths:
  /user/avatar:
    delete:
      tags:
        - User
      summary: Delete avatar
      description: >-
        Remove the uploaded avatar of the current user. Succeeds even when there
        was nothing to remove.
      operationId: deleteUserAvatar
      responses:
        '200':
          description: Avatar removed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserAvatarDeleted'
        '401':
          description: Missing or invalid credentials
components:
  schemas:
    UserAvatarDeleted:
      type: object
      properties:
        deleted:
          type: boolean
          description: False when the user had no uploaded avatar to remove.
      required:
        - deleted
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or session token (Bearer)

````