Delete a lead
DELETE
/api/v1/leads/{id}scope: leads.deletePermanently delete a lead. The underlying contact record is preserved (a contact may be linked to multiple leads, clients, or other records). Returns 204 No Content on success.
Path parameters
| Field | Type | Required | Description |
|---|---|---|---|
| id | string | yes | Lead id |
Response
Returns a single object with this shape:
(none)
Example response
nullcURL
curl -X DELETE 'https://your-host/api/v1/leads/:id' \
-H 'Authorization: Bearer YOUR_API_KEY'