DELETE
/contacts/:contactIdScope
contacts.write
Auth Method
Bearer Token
Token Type
Sub-Account / Company
Header Parameters
| Parameter | Type | Description |
|---|---|---|
Authorizationrequired | string | Bearer {access_token} |
Versionrequired | string | API Version Possible values: 2021-07-28 |
Path Parameters
| Parameter | Type | Description |
|---|---|---|
contactIdrequired | string | The unique ID of the contact to delete. |
Example RequestcURL
curl -X DELETE \
'https://services.leadconnectorhq.com/contacts/{contactId}' \
-H 'Authorization: Bearer {access_token}' \
-H 'Version: 2021-07-28'Response — 200 OK
Example ResponseJSON
{
"succeded": true,
"message": "Contact deleted successfully"
}⚠️ Destructive Action
Deleting a contact is permanent. All associated data (notes, tasks, appointments, conversations) will also be removed. Make sure you have a backup or confirmation before calling this endpoint.
