← Contacts

Delete Contact

Permanently delete a contact by its ID. This action cannot be undone.

DELETE/contacts/:contactId
Scope
contacts.write
Auth Method
Bearer Token
Token Type
Sub-Account / Company

Header Parameters

ParameterTypeDescription
AuthorizationrequiredstringBearer {access_token}
VersionrequiredstringAPI Version
Possible values: 2021-07-28

Path Parameters

ParameterTypeDescription
contactIdrequiredstringThe 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.