Endpoint
DELETE /user/assistant/{id}
Path parameters
Unique identifier of the assistant to delete.
Response
Confirmation that the assistant was deleted.
Example
200 Success
404 Not found
500 Deletion failed
Permanently delete an AI assistant from your account.
DELETE /user/assistant/{id}
curl -X DELETE "https://portal.intellixent.ai/api/user/assistant/789" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"message": "Assistant deleted successfully"
}
{
"message": "Assistant not found"
}
{
"message": "Assistant deletion failed"
}