Skip to main content
Permanently deletes a lead from the system.

Endpoint

DELETE /user/leads/{id}

Path parameters

id
integer
required
ID of the lead to delete.

Response

message
string
Confirmation that the lead was deleted.

Example

curl -X DELETE "https://portal.intellixent.ai/api/user/leads/123" \
  -H "Authorization: Bearer YOUR_API_KEY"
200 Success
{
  "message": "Lead deleted successfully"
}
404 Not found
{
  "message": "Lead not found"
}
Deletion is permanent. The lead and its associated call history are removed and cannot be recovered.