Enrich Industry
by @tomgranot
Backfill contact-level industry from associated company records using a HubSpot workflow. Enables industry-based segmentation for targeted campaigns aligned...
clawhub install enrich-industryπ About This Skill
name: enrich-industry description: "Backfill contact-level industry from associated company records using a HubSpot workflow. Enables industry-based segmentation for targeted campaigns aligned with ICP verticals." license: MIT metadata: author: tomgranot version: "1.0" category: data-enrichment
Enrich Contact Industry from Associated Company
Copy industry data from company records to their associated contacts. In a typical B2B CRM, company records have industry populated at high rates (80-90%) while contact records have almost none. This workflow bridges that gap automatically.
Why This Matters
Without industry on contact records, you cannot segment email campaigns by vertical. For B2B companies targeting specific industries, this makes the difference between spray-and-pray email blasts and targeted, relevant messaging. Industry data on contacts also feeds ICP tier classification and lead scoring models.
Prerequisites
Plan
1. Verify the contact Industry property exists and is compatible with the company Industry property 2. Audit how many contacts can be enriched (before state) 3. Build a workflow that copies industry from the associated company 4. Verify enrichment results (after state)
Before State
Check Property Compatibility
This is the most important pre-step. Contacts may have TWO industry properties: industry and industry_name. You must verify which one HubSpot uses for lists and reports.
1. Go to Settings > Properties > Contact properties 2. Search for "Industry" 3. Note ALL industry-related properties on the contact object 4. Check which property is used in existing lists, reports, and workflows 5. The target property must be compatible with the company Industry property: - If both are dropdown select: option values must match exactly (same spelling, same case) - If the contact property is single-line text: it will accept any value (safest option) - If unsure, use single-line text to avoid copy failures
If no contact Industry property exists, create one:
Audit Enrichment Opportunity
import os
from hubspot import HubSpot
from dotenv import load_dotenvload_dotenv()
api_client = HubSpot(access_token=os.getenv("HUBSPOT_API_TOKEN"))
Count contacts missing industry
result = api_client.crm.contacts.search_api.do_search(
public_object_search_request={
"filterGroups": [{
"filters": [{
"propertyName": "industry",
"operator": "NOT_HAS_PROPERTY"
}]
}],
"limit": 0
}
)
print(f"Contacts missing industry: {result.total}")
Also create a HubSpot list to estimate enrichable contacts:
Execute
Create the Enrichment Workflow
This workflow is nearly identical to the company name enrichment workflow. If you already built that one, clone it and swap the property references.
1. Go to Automation > Workflows > Create workflow
2. Select Contact-based > Blank workflow
3. Name: AUTO-ENRICH: Copy Industry from Company
Enrollment trigger:
Re-enrollment:
Action: Copy property
Activate:
Note: Unlike the company name workflow, no delay is needed here. If the contact already has an associated company with industry data (checked by the enrollment trigger), the copy can happen immediately.
After State
Wait 1-2 hours for the workflow to process, then verify.
Script approach:
result = api_client.crm.contacts.search_api.do_search(
public_object_search_request={
"filterGroups": [{
"filters": [{
"propertyName": "industry",
"operator": "NOT_HAS_PROPERTY"
}]
}],
"limit": 0
}
)
print(f"Contacts still missing industry: {result.total}")
Verification checklist:
1. Contact industry count should jump from near-zero to tens of thousands 2. The enrichment list (missing industry + has company association) should be near 0 3. Spot-check 20+ contacts for accuracy: - Open the contact record - Verify the Industry field shows a value - Click the associated company and confirm the industry matches 4. Check that the industry distribution on contacts roughly mirrors the company industry distribution 5. Check workflow history for failures β most common is property value mismatch (company has a value that does not match a dropdown option on the contact)
Key Technical Learnings
industry and industry_name on contacts. Verify which one is authoritative before building the workflow. Writing to the wrong one means your lists and reports will not see the data.