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

# Delete Assistant

> Permanently delete a specific Famulor AI voice assistant via API, including its prompt, configuration and call history. This action cannot be reversed.

<Warning>
  **Famulor 1.0 API (legacy).** This page applies only to Famulor 1.0 (`app.famulor.de`) and is retained for legacy compatibility. For the current platform, use the [Famulor 2.0 API reference](/api-reference/introduction).
</Warning>

This endpoint allows you to permanently delete an AI assistant that belongs to the authenticated user.

### Path Parameter

<ParamField path="id" type="integer" required>
  The unique identifier of the assistant to be deleted
</ParamField>

### Response

<ResponseField name="message" type="string">
  Confirmation message indicating the assistant was successfully deleted
</ResponseField>

### Error Responses

<ResponseField name="message" type="string">
  Error message if the assistant was not found or does not belong to the authenticated user
</ResponseField>

### Notes

* Only assistants belonging to the authenticated user can be deleted
* Once an assistant is deleted, it cannot be restored
* This action permanently removes the assistant and all its configuration
* If the assistant is currently handling active calls, those calls might be affected

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

  ```json 404 Not Found theme={null}
  {
    "message": "Assistant not found or does not belong to the authenticated user"
  }
  ```

  ```json 500 Internal Server Error theme={null}
  {
    "message": "Assistant deletion failed"
  }
  ```
</ResponseExample>

<Tip>
  Related pages: [Introduction](/api-v1/introduction) and [Authentication Guide](/api-v1/authentication), and [API Integration Examples](/api-v1/introduction).
</Tip>
