Remove Contacts from List
Contacts
Remove Contacts from List
Removes existing CRM contacts from a static contact list.
DELETE
Remove Contacts from List
Removes existing contacts from a static contact list. Contacts that are not in the list are silently skipped. The
removedCount field reflects the number of list associations that were actually removed.
Removing a contact from a list only affects list membership — it does not delete the contact from your CRM.
Typical workflow
- Find the list — use
GET /contacts/liststo find the list ID (clt_xxx) - Find contacts — use
GET /contactswithsearch,email, orlistIdto get contact IDs (ctc_xxx) - Remove contacts from the list — call this endpoint with the contact IDs and list ID
Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Path Parameters
The unique identifier of the contact list (clt_xxx format)
Pattern:
^clt_[a-zA-Z0-9]+$Body
application/json
Array of contact IDs to remove from the list (ctc_xxx format). Maximum 1,000 per request.
Maximum array length:
1000Pattern:
^ctc_[a-zA-Z0-9]+$