Skip to main content

Typeform lead capture to HubSpot with scoring and Slack alerts

Workflow preview

Workflow preview
100%
Typeform lead capture to HubSpot with scoring and Slack alerts preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

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...

Best for

  • Lead Nurturing automation workflows
  • Multimodal AI automation workflows
  • intermediate n8n builders looking for reusable templates

Tools used

n8n-nodes-base.typeformtrigger, n8n-nodes-base.hubspot, n8n-nodes-base.slack, n8n-nodes-base.if, n8n-nodes-base.stickynote, n8n-nodes-base.code

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Krishna Sharma.

Original n8n.io source

1.1 Workflow description

Title
Typeform lead capture to HubSpot with scoring and Slack alerts
Workflow name
Typeform lead capture to HubSpot with scoring and Slack alerts

πŸ“„ 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?

  • Sales teams who need to prioritize hot leads in real-time.

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)

  • Connect your Typeform account in n8n.
  • Select the form to track submissions.
  • Fields typically include: first name, last name, email, company, phone.

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

  • Not Found β†’ Create Contact
  • Found β†’ Update Contact

HubSpot Node (Create/Update Contact)

  • Map Typeform fields into HubSpot (email, name, phone, company).

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.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Typeform Trigger

Type / Role
n8n-nodes-base.typeformTrigger - typeformTrigger
Config choices
Version 1

Block 2 - Search HubSpot Contact

Type / Role
n8n-nodes-base.hubspot - hubspot
Config choices
Version 2

Block 3 - Slack Notification

Type / Role
n8n-nodes-base.slack - slack
Config choices
Version 2

Block 4 - If

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 5 - Update a contact

Type / Role
n8n-nodes-base.hubspot - hubspot
Config choices
Version 2.2

Block 6 - Create a contact

Type / Role
n8n-nodes-base.hubspot - hubspot
Config choices
Version 2.2

Block 7 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 8 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 9 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 10 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 11 - Sticky Note4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 12 - Sticky Note5

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 13 - Lead Scoring

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 14 - Sticky Note6

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

3. Summary Table

Workflow Typeform lead capture to HubSpot with scoring and Slack alerts
Complexity intermediate
Nodes 14
Categories Lead Nurturing, Multimodal AI
Author Krishna Sharma
Published 17 Sept 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/8685/8685.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Typeform lead capture to HubSpot with scoring and Slack alerts do?

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...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Lead Nurturing, Multimodal AI use case.