Other Automation Workflows — Page 4 | Neura Market
    Neura Market
    Neura Market
    /Categories
    Marketplace
    Directories
    Resources
    Home/Categories/Other

    Other Workflows

    Category for Other related workflows

    • Automate Company Enrichment and Sync from Google Sheets to HubSpot

      This workflow enriches new company entries from Google Sheets using AI, checks for existing records in HubSpot, and updates both platforms seamlessly.

      n8n$9.99
    • Automate Business Card Digitization and Enrichment with OCR and Google Sheets

      This n8n workflow automates the digitization of business cards using Typhoon OCR, enriches the extracted data, and saves it to Google Sheets or a CRM. It supports both Thai and English cards and can optionally send greeting emails.

      n8n$14.99
    • Streamline Lead Management from Website Forms to Google Sheets and Slack

      Effortlessly capture and manage leads by automating the process from website form submissions to Google Sheets and Slack notifications. This workflow ensures your team is instantly informed of new inquiries and maintains an organized lead database.

    Marketplace

    • Prompts
    • Workflows
    • Agents Store
    • Workflow Packs
    • Categories
    • Marketplace

    Directories

    • AI Tools Directory
    • ChatGPT
    • Claude
    • Gemini
    • Cursor
    • Grok
    • DeepSeek
    • Perplexity
    • CoPilot
    • Midjourney
    • Stable Diffusion
    • MCP Servers
    • .md Directory
    • All Directories

    Free Tools

    • AI Text Humanizer
    • AI Content Detector
    • Workflow Generator
    • Model Comparison
    • AI Pricing Calculator
    • AI Benchmarks
    • ROI Calculator
    • All Free Tools

    Resources

    • AI News
    • Blog
    • AI Answers
    • Error Solutions
    • AI Tutorials
    • AI Models
    • Integrations
    • Alternatives
    • n8n vs Zapier
    • Make vs Zapier
    • n8n vs Make
    • Resource Library
    • Documentation
    • API Access to Our Data

    Community

    • AI Newsletter
    • AI Jobs
    • AI Events
    • AI Companies
    • Start Selling
    • Sell n8n Workflows
    • Sell AI Agents
    • Sell Prompts
    • Creator Guide
    • Advertise
    • Affiliates

    Company

    • About
    • Contact
    • Help
    • Careers
    • Pricing
    • Terms
    • Privacy
    • License
    • DMCA

    The #1 Newsletter in AI

    Weekly updates, news, and content that matter.

    Neura Market Logoneuramarket

    © 2026 Neura Market. All rights reserved.

    n8n$4.99
  1. Tax Code Assistant with Qdrant, Mistral.ai & OpenAI

    Creates an AI-powered knowledge base assistant for tax code documents using intelligent chunking into chapters/sections, Qdrant vector store, and advanced querying via Mistral.ai and OpenAI.

    n8n$24.99
  2. Automatically Store Gmail Contacts in MySQL Database

    This workflow captures sender information from Gmail emails and stores it in a MySQL database, ensuring you maintain an up-to-date contact list.

    n8n$4.99
  3. Automate HubSpot Engagements by Parsing Emails with AI

    Streamline your CRM updates by automatically parsing incoming emails to create or update contacts and log engagements in HubSpot using AI.

    n8n$9.99
  4. Automate HubSpot to Salesforce Lead Creation with Explorium AI Enrichment

    # Automatically enrich prospect data from HubSpot using Explorium and create leads in Salesforce This n8n workflow streamlines the process of enriching prospect information by automatically pulling data from HubSpot, processing it through Explorium's AI-powered tools, and creating new leads in Salesforce with enhanced prospect details. ## Credentials Required To use this workflow, set up the following credentials in your n8n environment: ### HubSpot - **Type**: App Token (or OAuth2 for broader compatibility) - **Used for**: Triggering on new contacts, fetching contact data ### Explorium API - **Type**: Generic Header Auth - **Header**: Authorization - **Value**: Bearer YOUR_API_KEY [Get Explorium API key](https://developers.explorium.ai/reference/getting_your_api_key) ### Salesforce - **Type**: OAuth2 or Username/Password - **Used for**: Creating new lead records Go to Settings → Credentials, create these three credentials, and assign them in the respective nodes before running the workflow. ## Workflow Overview ### Node 1: HubSpot Trigger This node listens for real-time events from the connected HubSpot account. Once triggered, the node passes metadata about the event to the next step in the flow. ### Node 2: HubSpot This node fetches contact details from HubSpot after the trigger event. - **Credential**: Connected using a HubSpot App Token - **Resource**: Contact - **Operation**: Get Contact - **Return All**: Disabled This node retrieves the full contact details needed for further processing and enrichment. ### Node 3: Match prospect This node sends each contact's data to Explorium's AI-powered prospect matching API in real time. - **Method**: POST - **Endpoint**: https://api.explorium.ai/v1/prospects/match - **Authentication**: Generic Header Auth (using a configured credential) - **Headers**: Content-Type: application/json The request body is dynamically built from contact data, typically including: full_name, company_name, email, phone_number, LinkedIn. These fields are matched against Explorium's intelligence graph to return enriched or validated profiles. **Response Output**: total_matches, matched_prospects, and a prospect_id. Each response is used downstream to enrich, validate, or create lead information. ### Node 4: Filter This node filters the output from the Match prospect step to ensure that only valid, matched results continue in the flow. Only records that contain at least one matched prospect with a non-null prospect_id are passed forward. **Status**: Currently deactivated (as shown by the Deactivate label) ### Node 5: Extract Prospect IDs from Matched Results This node extracts all valid prospect_id values from previously matched prospects and compiles them into a flat array. It loops over all matched items, extracts each prospect_id from the matched_prospects array, and returns a single object with an array of all prospect_ids. ### Node 6: Explorium Enrich Contacts Information This node performs bulk enrichment of contacts by querying Explorium with a list of matched prospect_ids. **Node Configuration:** - **Method**: POST - **Endpoint**: https://api.explorium.ai/v1/prospects/contacts_information/bulk_enrich - **Authentication**: Header Auth (using saved credentials) - **Headers**: Content-Type: application/json, Accept: application/json Returns enriched contact information, such as: - **emails**: professional/personal email addresses - **phone_numbers**: mobile and work numbers - **professional_email**, **professional_email_status**, **mobile_phone** ### Node 7: Explorium Enrich Profiles This additional enrichment node provides supplementary contact data enhancement, running in parallel with the primary enrichment process. ### Node 8: Merge This node combines multiple data streams from the parallel enrichment processes into a single output, allowing you to consolidate data from different Explorium enrichment endpoints. The combine setting indicates it will merge the incoming data streams rather than overwriting them. ### Node 9: Code - Flatten This custom code node processes and transforms the merged enrichment data before creating the Salesforce lead. It can be used to: - Flatten nested data structures - Format data according to Salesforce field requirements - Apply business logic or data validation - Map Explorium fields to Salesforce lead properties - Handle data type conversions ### Node 10: Salesforce This final node creates new leads in Salesforce using the enriched data returned by Explorium. - **Credential**: Salesforce OAuth2 or Username/Password - **Resource**: Lead - **Operation**: Create Lead The node creates new lead records with enriched information including contact details, company information, and professional data obtained through the Explorium enrichment process. ## Workflow Flow Summary 1. **Trigger**: HubSpot webhook triggers on new/updated contacts 2. **Fetch**: Retrieve contact details from HubSpot 3. **Match**: Find prospects

    n8n$9.99
  5. Automate Lead Management and Inquiry Processing with ERPNext and AI

    Streamline your lead management and customer inquiry processes by integrating ERPNext with AI-driven analysis and email notifications. This workflow captures leads, analyzes inquiries, and sends actionable responses to the appropriate contacts.

    n8n$14.99
  6. Automate CRM Workflow with Google Sheets and n8n

    Transform your Google Sheets into a dynamic CRM system with automated lead management, email notifications, and project tracking using n8n.

    n8n$14.99
  7. Automate Lead Enrichment from Google Sheets to HubSpot with Surfe

    Streamline your lead enrichment process by automatically enriching contact data from Google Sheets using Surfe and updating HubSpot CRM.

    n8n$9.99
  8. Automate Lead Synchronization from Webflow to Pipedrive

    Streamline your lead management by automatically capturing Webflow form submissions and syncing them with Pipedrive CRM. This workflow ensures accurate association with the correct organization and contact, reducing manual data entry and minimizing duplicates.

    n8n$9.99
  9. Automate AI-Driven Appointment Booking and CRM Updates

    Streamline your appointment booking process with AI-powered phone call confirmations, lead validation, CRM updates, and email notifications using n8n, OpenAI, VAPI.ai, and GoHighLevel.

    n8n$14.99
  10. Effortlessly Sync and Organize Notion Contacts in Google Contacts

    Automate the synchronization of your Notion contacts to Google Contacts, complete with group labels, ensuring your CRM remains organized and up-to-date without manual intervention.

    n8n$14.99
  11. Automate Website Form Submissions to Notion CRM

    Streamline your workflow by automatically capturing website form submissions and creating structured entries in your Notion CRM database, eliminating manual data entry.

    n8n$4.99
  12. Daily Import of Validated Contacts from NocoDB to Brevo

    ## Overview Automate your daily contact imports from NocoDB to Brevo. The workflow updates the record status in NocoDB at each step. For every email campaign, it's essential to keep your Brevo contact list updated so you can send personalized and targeted emails. This flow automates that process. ## Tasks - Runs automatically every day - Fetches only new/unimported records from NocoDB - Checks for missing required fields - Filters out disposable/temporary emails - Creates contacts in Brevo - Updates NocoDB status after each step ## How to Use 1. **Set your schedule** - The Schedule Trigger node runs the flow daily. Adjust to your preferred time. 2. **Prepare your table in NocoDB** Your NocoDB table should contain at least: - id - first_name - last_name - email - status (default: 0-not-imported) 3. **Configure your credentials** - Connect your NocoDB API token in the NocoDB nodes. - Connect your Brevo API Key in the Brevo node. 4. **Map your fields** - In the Brevo: Create Contact node, make sure first name, last name, and email match your NocoDB column names. ## Notes - Make sure your NocoDB project/table IDs match the ones in this template. - This workflow processes contacts one-by-one to avoid heavy API calls and rate limit issues with Brevo. **Status values:** - 0-not-imported → new record - 1-empty-fields → missing required fields - 2-disposal-email → disposable email detected - 3-contact-created → successfully created in Brevo

    n8n$14.99
  13. Automate Lead Sentiment Analysis and WhatsApp Responses

    Classify incoming leads by sentiment using Google Gemini, store them in Supabase, and send personalized WhatsApp messages. Ideal for sales and support teams to prioritize and engage leads effectively.

    n8n$9.99
  14. Deploy a Comprehensive Pipedrive MCP Server for AI Integration

    Set up a fully functional MCP server that integrates with Pipedrive, offering 45 pre-built operations for seamless AI agent interaction without any configuration.

    n8n$19.99
  15. Automate Lead Enrichment and Scoring from Typeform to HubSpot

    This workflow automates the process of capturing leads from Typeform, enriching them with AI, scoring their potential, and updating HubSpot CRM while maintaining records in Google Sheets.

    n8n$14.99
  16. Automate Contact Data Extraction from TruePeopleSearch with Zyte API

    This workflow automates the extraction of contact information from TruePeopleSearch using the Zyte API, enriching your Google Sheets with verified data for skip tracing and lead generation.

    n8n$19.99
  17. Automate Lead Enrichment in HubSpot with Explorium AI

    Enhance your HubSpot contacts by automatically enriching them with detailed prospect data from Explorium, improving outreach success and data quality.

    n8n$9.99
  18. Automate Webinar Registrations from JotForm to KlickTipp

    Streamline webinar registration management by automatically processing submissions from JotForm and integrating them into KlickTipp with precise data transformation and tagging.

    n8n$14.99
  19. Automate WhatsApp CRM with Baserow and WasenderAPI

    Streamline your WhatsApp client communications with this n8n workflow, integrating WasenderAPI and Baserow for efficient contact management and message logging.

    n8n$14.99
  20. Automate HubSpot Buying Group Enrichment with Surfe and Google Sheets

    Automatically identify and enrich key contacts in HubSpot deals using Surfe and Google Sheets, ensuring no decision-maker is overlooked.

    n8n$14.99
  21. Automate Contact and Lead Creation in HubSpot CRM and Marketo from Salesloft

    Effortlessly sync contacts and leads from Salesloft to HubSpot CRM and Marketo, ensuring no duplicates and enhancing your marketing and sales strategies.

    Make$2.99
  22. ← PreviousPage 4 of 60Next →

    Related categories

    Communication (2,463)AI (1,930)Business Operations & ERPs (1,540)Productivity (1,202)Marketing (1,146)Data & Analytics (995)File & Document Management (802)CRM - Sales (604)Notifications (580)Social Media (562)

    Need a custom other workflow?

    Our automation experts build tailored workflows for your exact stack and process.

    Request a Custom Workflow