Workflow Action – Create Company or Associated Contact
{{inboundWebhookRequest.body.companyName}}). - Company fields (when the workflow trigger is based on a company event). - Fixed text values (e.g., “Patient Copilot Partners”). - Custom Values IV. Association Behavior - When selecting Associated Contact, the new contact will automatically be linked to the Company record that triggered the workflow. - The relationship will appear under the Company’s “Associated Contacts” section in the CRM. V. Add Field - Use + Add Field to include additional field mappings. - Each row represents a single field-value mapping. VI. Save Action - Once mappings are configured, click Save Action. - When the workflow runs, it will automatically create the defined record type (Company or Associated Contact) and populate all mapped fields. ## Example #### Example 1: Create a New Company from a Webhook Goal: Automatically create a Company record when a new business lead is received. Setup - Workflow Type: Company-based - Trigger: Inbound Webhook - Object Record to Create: Company - Field Mappings: - Company Name → {{inboundWebhookRequest.body.companyName}} - Domain → {{inboundWebhookRequest.body.domain}} - Industry → {{inboundWebhookRequest.body.industry}} Flow 1. A new company lead is captured via webhook. 2. The workflow triggers this action. 3. A new Company record is created and added to the CRM with all mapped details. * * * #### Example 2: Create an Associated Contact for an Existing Company Goal: Add a new employee Contact automatically under an existing Company record. Setup - Workflow Type: Company-based - Trigger: Company Updated or Webhook → Employee added event - Object Record to Create: Associated Contact - Field Mappings: - First Name → {{inboundWebhookRequest.body.firstName}} - Last Name → {{inboundWebhookRequest.body.lastName}} - Email → {{inboundWebhookRequest.body.email}} Flow 1. Employee data is received through webhook or integration. 2. The workflow triggers under the relevant Company. 3. A new Contact is created and automatically associated with that Company. * * * #### Example 3: Enrich Company Data and Add New Contacts Automatically Goal: For every new Company created, automatically add a contact. Setup 1. Step 1: Use this action → Object to Create = Company - Company Name → {{inboundWebhookRequest.body.company}} - Domain → {{inboundWebhookRequest.body.domain}} 2. Step 2: Use another action → Object to Create = Associated Contact - Contact Name → {{inboundWebhookRequest.body.contactName}} - Email → {{inboundWebhookRequest.body.email}} Flow 1. A new company record is created first. 2. The second action runs immediately after to add the associated contact. 3. The contact appears under the new company’s associated contact list automatically.