n8n + CRM: Automate Your Sales Pipeline
Connect n8n to HubSpot, Pipedrive, or any CRM to automatically update deals and trigger actions.

Why Connect n8n to Your CRM?
Manual CRM updates are the #1 reason salespeople hate their CRM. Fix it with automation.
What This Template Does
- Auto-creates contacts from form submissions
- Updates deal stages based on email activity
- Sends Slack alerts for high-value deals
- Generates weekly reports automatically
Setup
1. Connect Your CRM
n8n has native nodes for:
- HubSpot
- Pipedrive
- Salesforce
- Close.com
2. Import the Workflow
{
"nodes": [
{
"name": "Webhook Trigger",
"type": "n8n-nodes-base.webhook",
"parameters": {
"path": "new-lead",
"method": "POST"
}
},
{
"name": "Create CRM Contact",
"type": "n8n-nodes-base.hubspot",
"parameters": {
"operation": "create",
"resource": "contact"
}
}
]
}
3. Configure Triggers
Set up triggers for:
- New form submission → Create contact
- Email opened → Update deal stage
- Meeting booked → Notify sales team
- Deal won → Trigger onboarding flow
Advanced: Lead Scoring
Add a Function node to score leads:
const score =
(items[0].json.company_size > 50 ? 30 : 10) +
(items[0].json.role.includes('CEO') ? 25 : 5) +
(items[0].json.opened_emails > 2 ? 20 : 0);
return [{ json: { ...items[0].json, lead_score: score } }];
Download
Copy this template directly into your n8n instance and customize for your stack.
Download this template
Get the ready-to-use template file. Import it directly into n8n and start automating.

Want more like this?
Join Knox community — templates, live sessions, and a network of builders.
Comments
Loading comments...
Published March 1, 2026
Building businesses with automation and AI. Sharing workflows, templates, and real strategies that work.
Related content

Auto-Repurpose One Blog Post into 10 Social Posts with n8n + Claude
Write one blog post. Get 3 LinkedIn posts, 3 Twitter threads, 2 Instagram carousels, 1 YouTube Short script, and 1 newsletter intro — automatically.
template
Data Enrichment Pipeline with Hunter.io + n8n
Build an automated data enrichment pipeline that finds and verifies emails for your prospect lists.
template
n8n Webhook Recipes: 10 Automations You Need
10 ready-to-use webhook automations for lead capture, notifications, data sync, and more.
template