Endpoint
DELETE /user/assistant/{id}
Path parameters
integer
required
Unique identifier of the assistant to delete.
Response
string
Confirmation that the assistant was deleted.
Example
200 Success
404 Not found
500 Deletion failed
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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"
const response = await fetch('https://portal.intellixent.ai/api/user/assistant/789', {
method: 'DELETE',
headers: {
'Authorization': 'Bearer YOUR_API_KEY'
}
});
const data = await response.json();
console.log(data.message);
{
"message": "Assistant deleted successfully"
}
{
"message": "Assistant not found"
}
{
"message": "Assistant deletion failed"
}