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

# Automation löschen

> Lösche eine Famulor-Automation dauerhaft aus deinem Account.

Dieser Endpunkt löscht eine Automation dauerhaft. Das kann nicht rückgängig gemacht werden — alles, was die Automation getan hat, stoppt, und ihre Definition ist nicht wiederherstellbar. Waren Assistants daran gebunden, wird die Bindung automatisch gelöscht, damit nichts weiter eine gelöschte Automation auslöst.

Wenn du eine Automation löschst, um sie zu ersetzen, und aktuelles Verhalten behalten willst: zuerst mit [Automation abrufen](/de/api-reference/automations/get) lesen und die Steps in den Ersatz übernehmen.

### Path Parameters

<ParamField path="id" type="string" required>
  Die ID der Automation (aus [Automationen auflisten](/de/api-reference/automations/list))
</ParamField>

### Response

<ResponseField name="message" type="string">
  `Automation deleted successfully`
</ResponseField>

Eine fehlende Automation — oder eine, die nicht zu deinem Account gehört — liefert `404` mit `{"message": "Automation not found"}`.

<ResponseExample>
  ```json 200 Response theme={null} theme={null}
  {
    "message": "Automation deleted successfully"
  }
  ```

  ```json 404 Not Found theme={null} theme={null}
  {
    "message": "Automation not found"
  }
  ```
</ResponseExample>

<Tip>
  Verwandte Seiten: [Automationen auflisten](/de/api-reference/automations/list), [Automation abrufen](/de/api-reference/automations/get) und [Authentifizierung](/de/api-reference/authentication).
</Tip>
