πŸ’¬ Typeform lead capture to HubSpot with scoring and Slack alerts

⚑ 200 views Β· πŸ’¬ Lead Nurturing & AI Sales Agents

Description

πŸ“„ Smart Lead Capture, Scoring & Slack Alerts

This workflow captures new leads from Typeform, checks for duplicates in HubSpot CRM, enriches and scores them, assigns priority tiers (Cold, Warm, Hot), and instantly notifies your sales team in Slack.

πŸ”§ How It Works

Typeform Trigger β†’ Monitors form submissions and passes lead details into the workflow.

HubSpot Deduplication β†’ Searches HubSpot by email before creating a new record.

Conditional Routing β†’

If no match β†’ Creates a new contact in HubSpot.

If match found β†’ Updates the existing contact with fresh data.

Lead Scoring (Function Node) β†’ Custom JavaScript assigns a score based on your rules (e.g. company email, job title, engagement signals, enrichment data).

Tier Assignment β†’ Categorizes the lead as ❄️ Cold, 🌑 Warm, or πŸ”₯ Hot based on score thresholds.

Slack Notification β†’ Sends formatted lead alerts to a dedicated sales channel with priority indicators.

πŸ‘€ Who Is This For?

Marketing teams running inbound lead capture campaigns with Typeform.

RevOps teams that want custom scoring beyond HubSpot defaults.

Founders/SMBs looking to tighten lead-to-revenue pipeline with automation.

πŸ’‘ Use Case / Problem Solved

❌ Duplicate contacts clogging HubSpot CRM.

❌ Manual lead triage slows down response time.

❌ HubSpot’s default scoring is rigid.

βœ… Automates lead creation + scoring + notification in one flow.

βœ… Sales teams get immediate Slack alerts with context to act fast.

βš™οΈ What This Workflow Does

Captures lead data directly from Typeform.

Cleans & deduplicates contacts before pushing to HubSpot CRM.

Scores and categorizes leads via custom logic.

Sends structured lead alerts to Slack, tagged by priority.

Provides a scalable foundation you can extend with data enrichment (e.g., Clearbit, Apollo).

πŸ› οΈ Setup Instructions

πŸ”‘ Prerequisites

Typeform account with API access β†’ Typeform Developer Docs

HubSpot CRM account with API key or OAuth β†’ HubSpot API Docs

Slack workspace & API access β†’ Slack API Docs

(Optional) n8n automation platform to build & run β†’ n8n Hub

πŸ“ Steps to Configure

Typeform Node (Trigger)

HubSpot Node (Search Contact) Configure a search by email. Route outcomes:

HubSpot Node (Create/Update Contact)

Ensure you capture both standard and custom properties.

Function Node (Lead Scoring) Example JavaScript:

// Simple lead scoring example const email = $json.email || ""; let score = 0;

if (email.endsWith(β€œ@company.com”)) score += 30; if ($json.company && $json.company.length > 2) score += 20; if ($json.phone) score += 10;

let tier = β€œβ„οΈ Cold”; if (score >= 60) tier = ”πŸ”₯ Hot”; else if (score >= 30) tier = β€πŸŒ‘ Warm”;

return { …$json, leadScore: score, leadTier: tier };

Customize rules based on your GTM strategy.

Reference β†’ n8n Function Node Docs

Slack Node (Send Message) Example Slack message template:

πŸš€ New Lead Alert!
πŸ‘€ {{ $json.firstname }} {{ $json.lastname }}
πŸ“§ {{ $json.email }} | 🏒 {{ $json.company }}
πŸ“Š Score: {{ $json.leadScore }} β€” {{ $json.leadTier }}

Send to dedicated #sales-leads channel.

Reference β†’ Slack Node in n8n

πŸ“Œ Notes & Extensions

πŸ”„ Add enrichment with Clearbit or Apollo.io before scoring.

πŸ“Š Use HubSpot workflows to trigger nurturing campaigns for ❄️ Cold leads.

⏱ For πŸ”₯ Hot leads, auto-assign to an SDR using HubSpot deal automation.

🧩 Export data to Google Sheets or Airtable for analytics.

πŸ”— Nodes Used

Slack, Typeform Trigger, HubSpot

πŸ“₯ Import

Download workflow.json and import into n8n: Workflow menu β†’ Import from File

πŸ“– Importing guide Β· πŸ”‘ Credential setup