Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 15.2 KB

File metadata and controls

9 lines (6 loc) · 15.2 KB

CreateContactsRequest

Fields

Field Type Required Description Example
upsert Optional<Boolean> This parameter determines whether the POST operation should be treated as an upsert. Upserts update existing contacts if they already exist, and otherwise create new contacts.

True indicates that this operation creates new contacts and updates existing contacts if they exist. False means that it only creates new contacts, and attempting to create an existing contact will result in the API returning an error.

Existing contacts are matched to the upsert request via the account's match key. By default, the match key for contacts is their email. The match key can also be altered to match contacts based on a combination of their first name, last name, and email.
true
requestBody List<ContactCreate> ✔️ List of contacts to be created. Up to 10 contacts can be created per call.