Delete a lead

DELETE https://api.tamio.com/v2/leads/{uuid}

Permanently deletes a lead and all associated data including contact information, status history, and address details. This action cannot be undone.

Path Parameters

uuid string*

UUID of the lead to delete

Responses

200 Lead deleted successfully

Lead deleted successfully

status integer
400 Bad request. Possible `error_code` values:
401 Missing or invalid API key
/leads/{uuid}
1const response = await fetch("https://api.tamio.com/v2/leads/{uuid}", {
2 method: "DELETE",
3 headers: {
4 "Authorization": "Bearer YOUR_API_KEY",
5 "Content-Type": "application/json"
6 },
7 body: JSON.stringify({
8 // ... request body
9 })
10});
11const data = await response.json();
Responses
{
  "status": 200
}