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

# Delete Avatar

> Delete an avatar by its ID. If the avatar's training job is still in `Pending` or `Processing` state, the job will also be cancelled automatically.



## OpenAPI

````yaml POST /api/open/v1/avatar/delete
openapi: 3.1.0
info:
  title: NavTalk API
  description: NavTalk API for AI avatar management, file uploads, and video generation
  version: 1.0.0
servers:
  - url: https://api.navtalk.ai
    description: NavTalk Production Environment Server
  - url: https://qaapi.navtalk.ai
    description: NavTalk QA Environment Server
  - url: https://devapi.navtalk.ai
    description: NavTalk Development Environment Server
security:
  - navtalkLicenseAuth: []
paths:
  /api/open/v1/avatar/delete:
    post:
      tags:
        - Avatar
      summary: Delete Avatar
      description: >-
        Delete an avatar by its ID. If the avatar's training job is still in
        `Pending` or `Processing` state, the job will also be cancelled
        automatically.
      operationId: deleteAvatar
      parameters:
        - name: id
          in: query
          description: The avatar ID to delete
          required: true
          schema:
            type: string
            example: fbc269dcd0a738cf8e5e0f465671303c
      responses:
        '200':
          description: Avatar deleted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NavtalkMessageResponse'
              example:
                code: 200
                message: SUCCESS
                data: Avatar deleted successfully
        '400':
          description: Avatar not found or permission denied
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NavtalkErrorResponse'
              examples:
                notFound:
                  summary: Avatar not found
                  value:
                    code: 400
                    message: Avatar not found
                noPermission:
                  summary: No permission
                  value:
                    code: 400
                    message: You do not have permission to delete this avatar
      security:
        - navtalkLicenseAuth: []
components:
  schemas:
    NavtalkMessageResponse:
      type: object
      properties:
        code:
          type: integer
          example: 200
        message:
          type: string
          example: SUCCESS
        data:
          type: string
          example: Avatar deleted successfully
    NavtalkErrorResponse:
      type: object
      properties:
        code:
          type: integer
          example: 400
        message:
          type: string
          example: Invalid license key
  securitySchemes:
    navtalkLicenseAuth:
      type: apiKey
      in: header
      name: license
      description: NavTalk API license key (e.g. sk_navtalk_...)

````