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

> ## Agent Instructions
> Use https://docs.fastino.ai/openapi.json as the source of truth for customer-facing Fastino API routes. Only call operations present in that specification. Do not infer or call undocumented routes. Direct Fastino API integrations use https://api.fastino.ai, /v1 routes, and FASTINO_API_KEY.

# Eliminar un trabajo de entrenamiento

> Elimina un trabajo de entrenamiento de Fastino y sus checkpoints asociados.

Elimina el trabajo y sus artefactos almacenados. Si el trabajo está activo, el servicio también lo detiene.

<Warning>
  La eliminación es irreversible. Primero descarga lo que necesites a un almacenamiento que controles. La eliminación borra los checkpoints y los artefactos almacenados, y libera los despliegues alojados activos.
</Warning>

## Solicitud

<ParamField header="X-API-Key" type="string" required>
  Tu clave de API de Fastino.
</ParamField>

<ParamField path="job_id" type="string" required>
  UUID del trabajo de entrenamiento.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.fastino.ai/v1/training-jobs/YOUR_TRAINING_JOB_ID \
    -H "X-API-Key: $FASTINO_API_KEY"
  ```
</RequestExample>

## Respuesta

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "message": "Training job deleted"
  }
  ```
</ResponseExample>

Un trabajo desconocido o inaccesible devuelve `404`.
