This endpoint allows you to permanently delete an AI assistant that belongs to the authenticated user.
Path Parameter
The unique identifier of the assistant to be deleted
Response
Confirmation message indicating the assistant was successfully deleted
Error Responses
Error message if the assistant was not found or does not belong to the authenticated user
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
curl -X DELETE "https://app.famulor.de/api/user/assistant/123" \
-H "Authorization: Bearer YOUR_API_TOKEN"
{
"message": "Assistant deleted successfully"
}