Create multiple contacts
Create multiple Contacts with one call.
With a maximum of 50 objects for call.
POST/contact/multiple-create
Parameters
data - array required
An array of new Contacts.
Example (required parameters selected)
{
"data": [
{
"name": "Contact",
"surname": "Test",
"surname_2": "2",
"email": "contact2@salesly.app",
"enterprise_identifier": "G1234DD6789",
"phone": "938206362",
"nif": "4455332D",
},
{
"name": "Contact",
"surname": "Test",
"surname_2": "3",
"email": "contact3@salesly.app",
"enterprise_identifier": "G1123454789",
"phone": "938206362",
"nif": "4455332D",
},
]
}
Response
status 200
The response will be an array of all created contact IDs along with an array of existing emails that were intended to be attached to new contacts.
Response
{
"contacts_created_ids": [
1
],
"existing_emails": []
}