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

# Delete Configuration

> Permanently deletes a specific configuration. This action is irreversible.

<Warning>
  **This action is irreversible!** Once deleted, the configuration cannot be recovered.
</Warning>

<Note>
  Returns `404` if the configuration is not found.
</Note>

<Note>
  Existing transcriptions that were processed with this configuration remain accessible after deletion. Deleting a configuration does not affect already-processed data.
</Note>

<Info>
  For a detailed explanation of the Configuration and its parameters, please consult the [Configuration](/core/configuration).
</Info>


## OpenAPI

````yaml api-reference/openapi-configurations.json POST /delete-configuration
openapi: 3.1.0
info:
  title: Heify API — Configurations
  description: Endpoints for creating, retrieving, and deleting Configurations.
  version: 1.0.0
servers:
  - url: https://api.heify.com
security:
  - apiKeyAuth: []
paths:
  /delete-configuration:
    post:
      summary: Delete a Configuration
      description: >-
        Permanently deletes a specific configuration. This action is
        irreversible.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeleteConfigurationRequest'
            examples:
              DeleteExample:
                summary: Delete a configuration
                value:
                  configuration_id: a1b2c3d4-e5f6-7890-1234-567890abcdef
      responses:
        '200':
          description: Configuration deleted successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteConfigurationResponse'
              examples:
                Success:
                  value:
                    data:
                      message: Configuration deleted successfully.
components:
  schemas:
    DeleteConfigurationRequest:
      type: object
      properties:
        configuration_id:
          type: string
          format: uuid
          description: The unique identifier of the configuration to delete.
      required:
        - configuration_id
    DeleteConfigurationResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            message:
              type: string
              example: Configuration deleted successfully.
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````