What's most efficient approach to create one unique account with multiple contacts from Clay to Salesforce.
To efficiently create one unique account with multiple contacts in Salesforce from Clay: Step 1: Use the Create Record action to create the Account first Step 2: Create multiple Contact records, linking them to the Account using the Account ID from Step 1 Best practices: - Use conditional runs to avoid duplicates - First lookup existing records using email as the unique identifier to prevent duplicate creation - Map required fields (Account Name for accounts, First Name/Last Name/Email for contacts) to ensure successful record creation This approach maintains proper object relationships and prevents duplicate accounts while efficiently linking multiple contacts to a single account
Can you show me a sample setup
Here's a sample setup for creating one account with multiple contacts: Step 1: Create Account Record ** Object: Account ** Required fields: Account Name ** Map your company name from Clay to Account Name field Step 2: Create Contact Records ** Object: Contact ** Required fields: First Name, Last Name, Email ** Map contact details from your Clay table ** Link to Account: Use the Account ID output from Step 1 Step 3: Configure Run Settings ** Enable conditional runs using formulas ** Example: Only run if email field is not empty ** This prevents duplicate creation Field Mapping Example: ** Clay "Company" → Salesforce "Account Name" ** Clay "First Name" → Salesforce "First Name" ** Clay "Email" → Salesforce "Email" ** Step 1 "Record ID" → Contact "Account ID" This ensures proper object relationships between your account and contacts.
What if multiple accounts are created
By default, Clay prevents duplicate account creation in Salesforce. To avoid multiple accounts: Step 1: Use Lookup Account first to check if the account exists using company name or domain Step 2: Set up conditional runs - only create the account if lookup returns empty Step 3: If you need to override duplicate rules, enable "Duplicate Rule Override" in the Create Record enrichment This ensures one unique account per company before adding multiple contacts.
