Hello, I've build the following custom code to deduplicate contacts based on 3 constants: firstname, lastname and company name: const DEDUPE_PROPERTY1 = 'firstname';
const DEDUPE_PROPERTY2 = 'lastname';
const DEDUPE_PROPERTY3 = 'company';
co
read more