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

# Delete Custom Avatar

> Deletes a custom avatar owned by the caller. Requires `x-api-key` authentication.



## OpenAPI

````yaml DELETE /v2/custom-avatar/{id}
openapi: 3.0.3
info:
  title: TruGen Developer Platform API
  version: 1.0.0
  description: OpenAPI specification for MCP endpoint
servers:
  - url: https://api.trugen.ai/v1
security: []
paths:
  /v2/custom-avatar/{id}:
    servers:
      - url: https://api.trugen.ai
    delete:
      summary: Delete Custom Avatar
      description: >-
        Deletes a custom avatar owned by the caller. Requires `x-api-key`
        authentication.
      operationId: deleteCustomAvatar
      parameters:
        - name: id
          in: path
          required: true
          description: Internal UUID of the custom avatar to delete.
          schema:
            type: string
            format: uuid
          example: 3b6f4c8a-1234-5678-9abc-def012345678
      responses:
        '200':
          description: Custom avatar deleted
        '404':
          description: Custom avatar not found
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````