Skip to main content
Permanently deletes an AI assistant that belongs to the authenticated user. This action cannot be undone.

Endpoint

DELETE /user/assistant/{id}

Path parameters

id
integer
required
Unique identifier of the assistant to delete.

Response

message
string
Confirmation that the assistant was deleted.

Example

curl -X DELETE "https://portal.intellixent.ai/api/user/assistant/789" \
  -H "Authorization: Bearer YOUR_API_KEY"
200 Success
{
  "message": "Assistant deleted successfully"
}
404 Not found
{
  "message": "Assistant not found"
}
500 Deletion failed
{
  "message": "Assistant deletion failed"
}
Deletion is permanent. The assistant and all its configuration are removed and cannot be recovered. If the assistant is assigned to active calls, those calls may be affected.