Endpoint
DELETE /user/calls/{call}
Path parameters
integer
required
Unique identifier of the call to delete.
Response
string
Confirmation that the call was deleted.
Example
200 Success
404 Not found
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Permanently delete a call record and its associated data.
DELETE /user/calls/{call}
curl -X DELETE "https://portal.intellixent.ai/api/user/calls/123" \
-H "Authorization: Bearer YOUR_API_KEY"
const response = await fetch('https://portal.intellixent.ai/api/user/calls/123', {
method: 'DELETE',
headers: { 'Authorization': 'Bearer YOUR_API_KEY' }
});
const data = await response.json();
console.log(data.message);
{
"message": "Call deleted successfully"
}
{
"message": "Call not found"
}