Skip to main content
Permanently deletes a call record belonging to the authenticated user. This includes the transcript, recording, and all associated metadata.

Endpoint

DELETE /user/calls/{call}

Path parameters

call
integer
required
Unique identifier of the call to delete.

Response

message
string
Confirmation that the call was deleted.

Example

curl -X DELETE "https://portal.intellixent.ai/api/user/calls/123" \
  -H "Authorization: Bearer YOUR_API_KEY"
200 Success
{
  "message": "Call deleted successfully"
}
404 Not found
{
  "message": "Call not found"
}
Deletion is permanent. The call record, transcript, and recording file are all removed and cannot be recovered.