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

# Remove profile avatar

> Remove the current profile avatar



## OpenAPI

````yaml delete /v1/profile/avatar
openapi: 3.0.0
info:
  title: Profile API
  version: 1.0.0
  description: API for managing user profiles and profile trays
servers: []
security:
  - bearerAuth: []
tags:
  - name: Profile
    description: Profile management operations
paths:
  /v1/profile/avatar:
    delete:
      tags:
        - Profile
      summary: Remove profile avatar
      description: Remove the current profile avatar
      responses:
        '204':
          description: Avatar removed successfully
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````