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

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](/en/api-reference/introduction) and [Authentication Guide](/en/developers/authentication-guide), and [API Integration Examples](/en/developers/api-integration-examples).
</Tip>
