2 templates found
Category:
Author:
Sort:

HubSpot contact email validation with Hunter.io

Workflow: HubSpot Contact Email Validation with Hunter.io Overall Goal This workflow retrieves contacts from HubSpot that have an email address but haven't yet had their email validated by Hunter. It then iterates through each of these contacts, uses Hunter.io to verify their email, updates the contact record in HubSpot with the validation status and date, and finally sends a summary email notification upon completion. How it Works (Step-by-Step Breakdown) Node: "When clicking ‘Test workflow’" (Manual Trigger) Type: n8n-nodes-base.manualTrigger Purpose: Start the workflow manually via the n8n interface. Output: Triggers workflow execution. Node: "HubSpot" (HubSpot) Type: n8n-nodes-base.hubspot Purpose: Fetch contacts from HubSpot. Configuration: Authentication: App Token Operation: Search for contacts Return All: True Filter Groups: Contact HAS_PROPERTY email Contact NOTHASPROPERTY hunteremailvalidation_status Output: List of contact objects. Node: "Loop Over Items" (SplitInBatches) Type: n8n-nodes-base.splitInBatches Purpose: Process each contact one-by-one. Configuration: Options > Reset: false Output: Output 1 to "Hunter" Output 2 to "Send Email" Node: "Hunter" (Inside the loop) Type: n8n-nodes-base.hunter Purpose: Verify email with Hunter.io Configuration: Operation: Email Verifier Email: {{ $json.properties.email }} Node: "Add Hunter Details (Contact)" (HTTP Request - Inside the loop) Type: n8n-nodes-base.httpRequest Purpose: Update HubSpot contact. Configuration: Method: PATCH URL: https://api.hubapi.com/crm/v3/objects/contacts/{{ $('Loop Over Items').item.json.id }} Headers: Content-Type: application/json Body (JSON): json { "properties": { "hunteremailvalidation_status": "{{ $json.status }}", "hunterverificationdate": "{{ $now.format('yyyy-MM-dd') }}" } } Node: "Wait" (Inside the loop) Type: n8n-nodes-base.wait Purpose: Avoid API rate limits. Configuration: Wait for 1 second. Node: "Replace Me" (NoOp - Inside the loop) Type: n8n-nodes-base.noOp Purpose: Junction node to complete the loop. Node: "Send Email" (After the loop completes) Type: n8n-nodes-base.emailSend Purpose: Send summary notification. Configuration: From Email: test@gmail.com To Email: akhilgadiraju@gmail.com Subject: "Email Verification Completed for Your HubSpot Contacts" HTML: Formatted confirmation message Sticky Notes "HubSpot": Create custom properties (hunteremailvalidationstatus, hunterverification_date). "Add Hunter Details": Ensure field names match HubSpot properties. "Wait": Prevent API rate limits. How to Customize It Trigger Replace Manual Trigger with Schedule Trigger (Cron) for automation. Optionally use HubSpot Trigger for new contact events. HubSpot Node Create matching custom properties. Adjust filters and returned properties as needed. Hunter Node Minimal customization needed. HTTP Request Node Update JSON property names if renaming in HubSpot. Customize date format as needed. Wait Node Adjust wait time to balance speed and API safety. Email Node Customize email addresses, subject, and body. Add dynamic contact count with a Set or Function node. Error Handling Add Error Trigger nodes. Use If nodes inside loop to act on certain statuses. Use Cases Clean your email list. Enrich CRM data. Prep verified lists for campaigns. Automate contact hygiene on a schedule. Required Credentials HubSpot App Token Used by: HubSpot node and HTTP Request node Create a Private App in HubSpot with required scopes. Hunter API Used by: Hunter node SMTP Used by: Email Send node Configure host, port, username, and password. --- Made with ❤️ using n8n by Akhil.

Akhil Varma GadirajuBy Akhil Varma Gadiraju
533

Multi-channel customer sentiment tracker with real-time analytics and alerting

How It Works Scheduled processes retrieve customer feedback from multiple channels. The system performs sentiment analysis to classify tone, then uses OpenAI models to extract themes, topics, and urgency indicators. All processed results are stored in a centralized database for trend tracking. Automated rules identify high-risk or negative sentiment items and trigger alerts to the relevant teams. Dashboards and workflow automation then visualize insights and support follow-up actions. Setup Instructions Data Sources: Connect social media APIs, survey tools, and customer support platforms. AI Analysis: Configure the OpenAI API with sentiment and theme-extraction prompts. Database: Set up a feedback storage schema in your utility database. Alerts: Configure email notifications and CRM triggers for priority issues. Dashboards: Link your analytics and reporting tools for real-time insights. Prerequisites Social media/survey API credentials; OpenAI API key; database access; CRM system credentials; email notification setup Use Cases Customer sentiment tracking; product feedback aggregation; support ticket prioritization; brand monitoring; trend identification Customization Adjust sentiment thresholds; add new feedback sources; modify categorization rules Benefits Reduces analysis time 85%; captures actionable insights; enables rapid response to issues

Cheng Siong ChinBy Cheng Siong Chin
111
All templates loaded