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

# Trainingsjob löschen

> Löschen Sie einen Fastino-Trainingsjob und die zugehörigen Checkpoints.

`DELETE /v1/training-jobs/{job_id}`

Löscht den Job und seine gespeicherten Artefakte. Wenn der Job aktiv ist, stoppt der Dienst ihn ebenfalls.

<Warning>
  Das Löschen ist unumkehrbar. Laden Sie zuerst alles, was Sie benötigen, in einen von Ihnen kontrollierten Speicher herunter. Beim Löschen werden Checkpoints und gespeicherte Artefakte entfernt und aktive gehostete Deployments freigegeben.
</Warning>

## Request

<ParamField header="X-API-Key" type="string" required>
  Ihr Fastino-API-Schlüssel.
</ParamField>

<ParamField path="job_id" type="string" required>
  UUID des Trainingsjobs.
</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>

## Response

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

Ein unbekannter oder nicht zugänglicher Job gibt `404` zurück.
