Automate Lead Qualification with Pipedrive, Gmail & OpenAI

Struggling to track replies from cold email campaigns and qualify leads effectively? This workflow automates email monitoring, uses OpenAI to assess interest, and creates deals in Pipedrive, saving hours and improving sales accuracy.
pipedrive
gmailTrigger
openAi
+4
Workflow Identifier: 2263
NODES in Use: pipedrive, if, openAi, set, gmailTrigger, code, stickyNote
Automate lead qualification with n8n and Pipedrive

Press CTRL+F5 if the workflow didn't load.

Learn how to Build this Workflow with AI:

What This Automation Does

This n8n workflow watches several Gmail inboxes for new email replies.

It reads each reply and checks if the sender’s email is in the Pipedrive CRM database.

Then it looks if the contact is marked as part of an active campaign.

If yes, the workflow uses OpenAI GPT-4 to analyze the email reply to decide if the lead is interested.

If the lead is interested, the workflow creates a new deal in Pipedrive for that person.

This reduces manual work in sorting emails and speeds up sales follow-ups.


Tools and Services Used

  • n8n: Runs the workflow automation.
  • Gmail API: Monitors email inboxes for replies.
  • Pipedrive CRM API: Searches contacts and creates deals.
  • OpenAI GPT-4 API: Analyzes the email text to detect leads’ interest.
  • Custom Fields in Pipedrive: The “in_campaign” field to check campaign status.

Inputs, Processing, and Outputs

Inputs

  • Incoming email replies from multiple Gmail inboxes.
  • Contact data stored in Pipedrive CRM.
  • OpenAI GPT-4 API for text analysis.

Processing Steps

  1. Watch Gmail inboxes for new emails every minute.
  2. Extract the full email text from new replies.
  3. Search Pipedrive for a contact matching the sender’s email.
  4. Get full contact details from Pipedrive to confirm active campaign status.
  5. Use an OpenAI node with GPT-4 to classify if the lead is interested based on reply content.
  6. Parse the AI JSON response to get interest and reasoning.
  7. Check interest result: if “yes”, create a new deal in Pipedrive tied to that contact.

Output

  • New deals only created for interested leads to improve sales pipeline accuracy.
  • Manual sorting time for replies significantly reduced.
  • Better follow-up signals by filtering uninterested replies.

Who Should Use This Workflow

Sales reps managing cold email outreach to many companies or leads.

Anyone wanting to save time on manually reading email replies and qualifying leads.

Users with Pipedrive CRM and Gmail accounts looking to automate lead follow-up.


Beginner Step-by-Step: How to Use This Workflow in n8n

Step 1: Import the Workflow

  1. Click the Download button on this page to get the workflow file.
  2. Open n8n editor where the workflow will run.
  3. Use the Import option and select “Import from File” to load the workflow.

Step 2: Configure Credentials

  1. Go to each Gmail Trigger node and connect with your Gmail account.
  2. Set Pipedrive API credential in the Search Person in CRM and Create deal in CRM nodes.
  3. Input your OpenAI API Key in the Is interested? node for GPT-4 access.
  4. Check if the Pipedrive custom “in_campaign” field is matched correctly in the workflow.

Step 3: Update IDs and Fields as Needed

  1. Edit email inbox names or labels in Gmail Trigger nodes if you watch other folders.
  2. Adjust contact field names in In campaign? If node if your custom field differs.
  3. Check expressions in the Create deal in CRM node to format deal titles properly.

Step 4: Test the Workflow

  1. Send a test email reply from a known contact address to your Gmail inbox.
  2. Watch the workflow run and review each node’s output to confirm proper operation.

Step 5: Activate for Production

  1. Turn on the workflow in n8n by toggling the active switch.
  2. Monitor executions regularly to spot and fix issues early.
  3. Add more Gmail trigger nodes if you want to track additional inboxes.
  4. Consider using self-host n8n if hosting on your own server fits your needs better.

Detailed Workflow Steps

Step 1: Monitoring Gmail Inboxes

Each Gmail Trigger node polls inbox labels every minute.

Uncheck “Simplify” to get full email data for processing.

Step 2: Extract Email Text

The Get email Set node pulls the full text from email data using expression {{$json.text}}.

Step 3: Search Contact in Pipedrive

Search Person in CRM uses sender’s email field {{$json.from.value[0].address}}.

Set limit to 1 to avoid multiple contact matches.

Step 4: Get Full Contact Details

Get person from CRM inputs person ID {{$json.id}} from search result.

This fetches full data including custom fields to check campaign membership.

Step 5: Check Campaign Status

In campaign? If node compares {{$json.in_campaign}} to “True” string value.

Only contacts marked “True” continue.

Step 6: Use OpenAI to Evaluate Interest

Is interested? OpenAI node sends email content with a prompt that asks GPT-4 to respond as a sales rep deciding if the lead is interested.

The expected AI response is JSON with fields “interested” (yes or no) and “reason”.

Step 7: Extract AI Response

The Get response Code node parses the JSON string returned from OpenAI to get interest and reason ready for decision.

let interested = JSON.parse($json["message"]["content"]).interested;
let reason = JSON.parse($json["message"]["content"]).reason;

return {json:{
 interested: interested,
 reason: reason
}};

Step 8: Decide to Create Deal or Not

IF interested node checks if {{$json.interested}} equals “yes”.

If yes, proceeds to next step; otherwise, ends without creating deal.

Step 9: Create Deal in Pipedrive

Create deal in CRM node dynamically sets deal title with expression:

{{$('Get person from CRM').item.json.Name}} Deal

Creates a deal linked to the contact to track interested leads easily.


Customization Ideas

  • Duplicate Gmail Trigger nodes to watch more inboxes.
  • Adjust the AI prompt in Is interested? node to suit your style or define “interested” differently.
  • Change “in_campaign” field checked in In campaign? node to any custom field relevant to your CRM setup.
  • Modify deal title format in Create deal in CRM with dates, campaign names, or any other detail using expressions.

Common Issues and Troubleshooting

No Contact Found in Pipedrive

Cause: The sender email is missing or different from your CRM contact emails.

Check Gmail sender email format and confirm Pipedrive contacts include those emails.

OpenAI API Limits Reached

Cause: Too many AI requests, or API plan restricts usage.

Reduce Gmail polling frequency or consider upgrading OpenAI plan.

Incorrect Interest Detection

Cause: AI prompt is too generic or not aligned to emails you receive.

Update the Is interested? node prompt with clearer instructions and examples.


Pre-Production Checklist

  • Test all Gmail credentials have inbox read access.
  • Verify Pipedrive API key and permission to search contacts and create deals.
  • Confirm “in_campaign” custom field exists on contact records.
  • Check OpenAI API keys and usage limits.
  • Send test emails and watch workflow runs in n8n to validate each step.

Deployment Tips

Once tested, activate the workflow and keep an eye on error logs.

Add more Gmail triggers as outreach accounts grow.

Consider hosting your automation workflows on a self-hosted environment for better control and privacy. See self-host n8n for more information.


Summary

✓ Automates sorting of cold email replies to identify interested leads.

✓ Uses AI (OpenAI GPT-4) to analyze email content accurately.

✓ Creates deals in Pipedrive CRM only for leads showing interest.

→ Saves hours of manual work every week for sales teams.

→ Improves sales pipeline by capturing leads faster and more reliably.


Automate lead qualification with n8n and Pipedrive

Visit through Desktop to Interact with the Workflow.

Frequently Asked Questions

Yes, if n8n supports triggers for the other email service, those can replace the Gmail nodes. Email extraction must stay compatible with the workflow.
It makes one OpenAI GPT-4 call per email reply analyzed. Usage depends on reply volume.
The workflow skips that reply and no deal is created. Check that Pipedrive contacts include all email addresses targeted.
Data sent to OpenAI and Pipedrive is subject to their privacy policies. API keys should be kept safe and access controlled within n8n.

Promoted by BULDRR AI

Related Workflows

Automate Twist Channel Creation and Messaging with n8n

This workflow automates creating and updating a channel in Twist and sending a personalized message to specific users. It eliminates manual setup errors and saves time managing Twist communications.

Automate Ideogram Image Generation with Google Sheets & Gmail

This workflow automates graphic design image generation via Ideogram AI, storing image data in Google Sheets and Google Drive, with email alerts via Gmail. It saves designers hours by automating image creation, remixing, review, and record-keeping.

Automate IT Support with Slack and OpenAI in n8n

Streamline IT support by automating Slack message handling using n8n and OpenAI. This workflow handles Slack DMs, filters bots, queries a Confluence knowledge base, and delivers AI-generated responses, improving support efficiency and response time.

Automate Crypto Analysis with CoinMarketCap & n8n AI Agent

Discover how this unique n8n workflow leverages CoinMarketCap’s multi-agent AI to deliver precise, real-time cryptocurrency insights directly via Telegram. Manage crypto data analysis efficiently with automated multi-source API integration.

Automate Gumroad to Beehiiv Subscriber Sync with n8n

Learn how to automatically add new Gumroad sales customers as Beehiiv newsletter subscribers using n8n automation. This workflow saves time by syncing sales data to Google Sheets CRM and notifying your Telegram channel instantly.

Generate On-Brand Blog Articles Using n8n and OpenAI

This workflow automates the creation of on-brand blog articles by analyzing existing company content using n8n and OpenAI. It extracts article structures and brand voice to produce consistent draft articles, saving significant content creation time.
1:1 Free Strategy Session
Your competitors are already automating. Are you still paying for it manually?

Do you want to adopt AI Automation?

Every hour your team does repetitive work, you're burning real money.
While you wait, faster businesses are cutting costs and moving quicker.
AI and automations aren't the future anymore — they're the present.

Book a live 1-on-1 session where we show you exactly which of your daily tasks can be automated — and what it’s costing you not to.