Contacts
Add existing contacts to a list
post/contacts/lists/{listId}/contacts/add
Path parameters
listIdinteger required
Id of the list
Request body
Example request
{
"emails": [
"john.smith@contact.com"
],
"ids": [
121
]
}Response
All contacts have been added successfully to the list with details of failed ones
Example response
{
"contacts": {
"total": 27,
"processId": 78,
"success": [
"jeff32@example.com, jim56@example.com",
"jeff32@example.com, jim56@example.com"
],
"failure": [
"jeff32@example.com, jim56@example.com",
"jeff32@example.com, jim56@example.com"
]
}
}