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

# Delete Language

> Delete Language.



## OpenAPI

````yaml DELETE /languages/delete/{id}
openapi: 3.1.0
info:
  title: Blog API
  version: 1.0.0
servers:
  - url: https://api.octaviatech.app/cms
    description: Production
security:
  - ApiKeyAuth: []
tags: []
paths:
  /languages/delete/{id}:
    delete:
      tags:
        - Languages
      summary: Delete a language (soft delete)
      description: >
        Marks a language as deleted for the current tenant.


        Path parameters:

        - `id` (string, required): The language identifier to delete. Must be a
        24-character hexadecimal string.


        Behavior:

        - This is a **soft delete** (the record remains but is flagged as
        deleted).

        - Subsequent reads (e.g., list, getById) do not return deleted records.
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
            pattern: ^[a-fA-F0-9]{24}$
            example: 64b1f2c9a7d4f1a2b3c4d5e6
          description: 24-character hex identifier of the language to delete.
      responses:
        '200':
          description: Deleted
          content:
            application/json:
              example:
                success: true
                statusCode: 200
                message: Language deleted successfully
                data: null
        '401':
          description: Unauthorized
        '404':
          description: Not found
        '500':
          description: Server error
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````