Skip to main content
DELETE
/
api
/
user
/
assistant
/
{id}
Delete Assistant
curl --request DELETE \
  --url https://app.famulor.de/api/user/assistant/{id} \
  --header 'Authorization: Bearer <token>'
{
  "message": "Assistant deleted successfully"
}
This endpoint allows you to permanently delete an AI assistant that belongs to the authenticated user.

Path Parameter

id
integer
required
The unique identifier of the assistant to be deleted

Response

message
string
Confirmation message indicating the assistant was successfully deleted

Error Responses

message
string
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"
}