Add Contacts to List
Contacts
Add Contacts to List
Adds existing CRM contacts to a static contact list.
POST
Add Contacts to List
Adds existing contacts to a static contact list. Contacts already in the list are silently skipped — no duplicates are created.Documentation Index
Fetch the complete documentation index at: https://developer.lemlist.com/llms.txt
Use this file to discover all available pages before exploring further.
Typical workflow
- Find contacts — use
GET /contactswithsearch,email, orlistIdto get contact IDs (ctc_xxx) - Find or create a list — use
GET /contacts/liststo find an existing list, orPOST /contacts/liststo create a new one - Add contacts to 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 add to the list (ctc_xxx format). Maximum 1,000 per request.
Maximum array length:
1000Pattern:
^ctc_[a-zA-Z0-9]+$