> ## 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.

> Cambia la versión del modelo.

# Models version control post

## Endpoint

`POST https://gateway.orkeia.ai/ai-models/{id}/version-control`

## Encabezados

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}
{
  "versionControl": "v1.0.1",
  "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
}
```
