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

# Supprimer un job d'entraînement

> Supprimez un job d'entraînement Fastino ainsi que ses checkpoints associés.

Supprime le job et ses artefacts stockés. Si le job est actif, le service l'arrête également.

<Warning>
  La suppression est irréversible. Téléchargez d'abord tout ce dont vous avez besoin vers un stockage que vous contrôlez. La suppression retire les checkpoints et les artefacts stockés et libère les déploiements hébergés actifs.
</Warning>

## Requête

<ParamField header="X-API-Key" type="string" required>
  Votre clé API Fastino.
</ParamField>

<ParamField path="job_id" type="string" required>
  UUID du job d'entraînement.
</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>

## Réponse

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

Un job inconnu ou inaccessible renvoie `404`.
