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

# Eliminar Modelo de IA

> Elimina un modelo y sus subdocumentos.

## Endpoint

`DELETE https://gateway.orkeia.ai/ai-models/{id}`

## Cabeçalhos

Requiere el encabezado `authorization:  <tu_token>`.

```http theme={null}
authorization:  <tu_token>
Content-Type: application/json
```

## Parámetros de ruta

* `id` — ID del modelo (ej.: `MODEL_67890`)

## Cuerpo de la solicitud

```json theme={null}
{
  "environment": {
    "company": "acme-inc",
    "sector": "engineering"
  }
}
```

## Respuesta (200)

```json theme={null}
{
  "status": "OK",
  "data" : { "true"}
}
```

## Códigos de error

### 500 — Error del Servidor

```json theme={null}
{
  "status": "ERROR",
  "code": "server/error",
  "data": null
}
```

### 400 — Error del Cliente

```json theme={null}
{
  "status": "ERROR",
  "code": "client/error",
  "data": null
}
```
