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

# Remove a language

> Remove a language from the chatbot. Drops all translation overrides for the language, removes it from supportedLanguages, and clears it from the settings mirror. The default language cannot be removed.



## OpenAPI

````yaml delete /api/v2/chatbots/{chatbotId}/translations/languages/{language}
openapi: 3.0.1
info:
  title: LiveChatAI API v2
  description: >-
    LiveChatAI API v2 - Build powerful AI-powered customer support experiences.
    This API follows REST principles with predictable, resource-oriented URLs,
    JSON responses, and standard HTTP methods.
  version: 2.0.0
servers:
  - url: https://app.livechatai.com
    description: Production server
security:
  - bearerAuth: []
paths:
  /api/v2/chatbots/{chatbotId}/translations/languages/{language}:
    delete:
      tags:
        - Translations
      summary: Remove a language
      description: >-
        Remove a language from the chatbot. Drops all translation overrides for
        the language, removes it from supportedLanguages, and clears it from the
        settings mirror. The default language cannot be removed.
      parameters:
        - in: path
          name: chatbotId
          schema:
            type: string
            example: clx1234567890abcdef
          required: true
          description: Unique identifier of the chatbot
        - in: path
          name: language
          schema:
            type: string
            example: GERMAN
          required: true
          description: Language to remove (predefined enum or custom uppercase identifier)
      responses:
        '200':
          description: Language removed successfully
        '400':
          description: Cannot remove the default language
        '401':
          description: Unauthorized access
        '404':
          description: Chatbot or language not found
        '500':
          description: Internal server error occurred
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````