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

# Delete avatar

> Deletes the avatar of the current user.



## OpenAPI

````yaml delete /users/avatar
openapi: 3.0.0
info:
  title: Mudstack API
  version: 2.41.0
servers:
  - url: https://api.mudstack.com
security: []
tags: []
paths:
  /users/avatar:
    delete:
      tags:
        - Users
      description: Deletes the avatar of the current user.
      responses:
        '204':
          description: No content, avatar deleted.
      security:
        - Authentication: []
components:
  securitySchemes:
    Authentication:
      type: http
      scheme: bearer
      bearerFormat: JWT

````