Endpoint
DELETE /user/leads/{id}
Path parameters
ID of the lead to delete.
Response
Confirmation that the lead was deleted.
Example
200 Success
404 Not found
Permanently delete a lead from a campaign.
DELETE /user/leads/{id}
curl -X DELETE "https://portal.intellixent.ai/api/user/leads/123" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"message": "Lead deleted successfully"
}
{
"message": "Lead not found"
}