by Mutasem
Use Case Track all Linear tickets in Google sheets. Useful if you want to do some custom analysis but don't want to pay for Linear's Plus features (Linear Insights) or that it does not cover. Setup Add Linear API header key Add Google sheets creds Update which teams to get tickets from in Graphql Nodes Update which Google Sheets page to write all the tickets to You only need to add one column, id, in the sheet. Google Sheets node in automatic mapping mode will handle adding the rest of the columns. Set any custom data on each ticket Activate workflow 🚀 How to adjust this template Set any custom fields you want to get out of this, that you can quickly do in n8n.
by Don Jayamaha Jr
📅 Analyze Tesla’s daily trading structure with AI using 6 Alpha Vantage indicators. This tool evaluates long-term trend health, volatility patterns, and potential reversal signals at the 1-day timeframe. Designed for use within the Tesla Financial Market Data Analyst Tool, this agent helps swing and position traders anchor macro sentiment. ⚠️ Not standalone. Must be executed via Execute Workflow 🔌 Requires: Tesla Quant Technical Indicators Webhooks Tool Alpha Vantage Premium API Key OpenAI GPT-4.1 credentials 🔍 What It Does This tool queries a secured webhook (/1dayData) to retrieve real-time, trimmed JSON data for: RSI (Relative Strength Index)** BBANDS (Bollinger Bands)** SMA (Simple Moving Average)** EMA (Exponential Moving Average)** ADX (Average Directional Index)** MACD (Moving Average Convergence Divergence)** These values are then passed to a LangChain AI Agent powered by GPT-4.1, which returns: A 2–3 sentence market condition summary Structured indicator values Timeframe tag ("1d") 📋 Sample Output { "summary": "TSLA shows consolidation on the daily chart. RSI is neutral, BBANDS are contracting, and MACD is flattening.", "timeframe": "1d", "indicators": { "RSI": 51.3, "BBANDS": { "upper": 192.80, "lower": 168.20, "middle": 180.50, "close": 179.90 }, "SMA": 181.10, "EMA": 179.75, "ADX": 15.8, "MACD": { "macd": -0.25, "signal": -0.20, "histogram": -0.05 } } } 🧠 Agent Components | Component | Description | | ----------------------------- | -------------------------------------------------- | | 1day Data (HTTP Node) | Pulls latest data from secured /1dayData webhook | | OpenAI Chat Model | GPT-4.1 powers the analysis logic | | Tesla 1day Indicators Agent | LangChain agent performing interpretation | | Simple Memory | Short-term session continuity | 🛠️ Setup Instructions Import Workflow into n8n Name: Tesla_1day_Indicators_Tool Add Required Credentials Alpha Vantage Premium (via HTTP Query Auth) OpenAI GPT-4.1 (Chat Model) Install Webhook Fetcher Required: Tesla Quant Technical Indicators Webhooks Tool Endpoint /1dayData must be active Execution Context This tool is only triggered via: 👉 Tesla Financial Market Data Analyst Tool Inputs expected: message: optional context sessionId: session memory linkage 📌 Sticky Notes Overview 📘 Tesla 1-Day Indicators Tool – Purpose and integration 📡 Webhook Fetcher – Pulls daily Alpha Vantage data via HTTPS 🧠 GPT-4.1 Model – Reasoning for trend classification 🔗 Sub-Agent Trigger – Used only by Financial Market Analyst 🧠 Memory Buffer – Ensures consistent session logic 🔒 Licensing & Support © 2025 Treasurium Capital Limited Company This workflow—including prompts, logic, and formatting—is protected IP. 🔗 Don Jayamaha – LinkedIn 🔗 Creator Profile 🚀 Evaluate long-term Tesla price behavior with AI-enhanced technical analysis—critical for swing trading strategy. Required by the Tesla Financial Market Data Analyst Tool.
by Niklas Hatje
Use Case When building a product it's important to discover and eliminate bugs as quickly as possible. Since we're using our product at n8n a lot, we wanted to make it as easy as possible for everyone to add bugs with the needed level of detail. That's why we built this workflow that allows everyone to add bugs to our Linear account easily directly from Slack What this workflow does This workflow waits for a webhook call within Slack, that gets fired when users use the /bug command on a bot that you will create as part of this template. It then adds the bug to Linear using a pre-defined description and a defined label. It then notifies the user about the newly added bug as you can see below: How to create your Slack bot Visit https://api.slack.com/apps, click on New App and choose a name and workspace. Click on OAuth & Permissions and scroll down to Scopes -> Bot token Scopes Add the chat:write scope Head over to Slash Commands and click on Create New Command Use /bug as the command Copy the test URL from the Webhook node into Request URL Add whatever feels best to the description and usage hint Go to Install app and click install Setup Configure your Slack bot using the sticky to the left Fill the Set me up node. You can find the IDs easily using the Helper nodes section Make sure to exchange the Request URL in your Slack with the Prod URL of the Webhook node before activating this workflow How to adjust it to your needs Add zero, one, two or many labels when creating the new ticket Change the Slack message according to your needs Change the default description for a new bug ticket Rename the Slack command as it works best for you How to enhance this workflow At n8n we use this workflow in combination with some others. E.g. we have the following things on top: We're using AI to classify the bugs and move them to the right team as soon as they get added to Linear (see this template) We also added other commands like /pain and /idea that allow us to submit other things to Notion. You can see the workflow for that here.
by Don Jayamaha Jr
📰 This AI-powered agent performs real-time sentiment analysis on Tesla (TSLA) news to support trading decisions. It aggregates headlines from 5 trusted sources and uses DeepSeek Chat to classify sentiment and generate structured summaries. This tool is a critical sub-agent in the broader Tesla Quant Trading AI Agent system. ⚠️ Not standalone — this agent is designed to be executed by the Tesla Quant Trading AI Agent. ⚙️ Requires: DeepSeek Chat API Key 🔌 Workflow Role This tool processes Tesla-related news and produces output like: { "sentiment": "bullish", "summary": "Tesla stock rallied today after strong delivery numbers and Cybertruck updates. Analysts remain optimistic.", "topHeadlines": [ "Tesla beats Q2 delivery forecast – Yahoo Finance", "Cybertruck ramps up in Texas – Electrek", "Berlin Gigafactory expands battery production – CleanTechnica" ] } Its output feeds directly into the master trading agent’s final trade report. 📰 News Sources Used This agent collects real-time headlines from: Google News (filtered by “Tesla” or “TSLA”) Yahoo Finance (TSLA-specific feed) Electrek (Tesla archive) CleanTechnica (Tesla sustainability news) TeslaNorth (app/product release updates) These five tools are always queried together to ensure market-wide signal coverage. 🤖 What the Agent Does Pulls headlines from all 5 Tesla-specific RSS feeds Uses DeepSeek Chat to: Analyze narrative tone (bullish / bearish / neutral) Identify macro/financial drivers Generate a 2–3 sentence summary Return top 3–5 headlines Outputs structured JSON for downstream use 🛠️ Setup Instructions 1. Install & Name Import this file and name it: Tesla_News_and_Sentiment_Analyst_Tool 2. Add DeepSeek API Credentials Go to: Credentials → Add New → DeepSeek API Save as: DeepSeek account 3. Internet Access Required Ensure RSS feeds can fetch live headlines Works best with a cloud-hosted n8n instance or tunnel-enabled local install 4. Must Be Triggered by Parent Triggered via Execute Workflow by the Tesla Quant Trading AI Agent Requires these inputs: message: optional query context sessionId: passed to maintain short-term memory across executions 🧠 Agent Architecture | Node Name | Function | | ---------------------------------- | ------------------------------------------------ | | DeepSeek Chat Model | Performs AI-based sentiment analysis | | Tesla News and Sentiment Analyst | Combines results, formats output in strict JSON | | Simple Memory | Stores session-level context (short-term memory) | | 5x RSS nodes | Aggregate Tesla news from trusted media outlets | 📌 Sticky Notes Included 🟢 Trigger from Parent Workflow – Executed only by main TSLA agent 🟠 News Feeds Overview – Lists and explains each of the 5 feeds 🧠 DeepSeek Chat Notes – Describes LLM behavior and parsing role 🔵 Short-Term Memory – Buffers sentiment context during user session 📘 Sentiment Analyst Agent – Summarizes key responsibilities 📎 Licensing & Attribution © 2025 Treasurium Capital Limited Company This architecture, workflow structure, and prompt design are licensed for educational and operational use only. Commercial resale or rebranding prohibited without authorization. 🔗 Creator: Don Jayamaha 🔗 Templates: https://n8n.io/creators/don-the-gem-dealer/ 🚀 Power your TSLA trading with AI-driven sentiment—built with DeepSeek Chat and 5 trusted news sources. This tool is required by the Tesla Quant Trading AI Agent.
by Airtop
Automating Person Data Enrichment and CRM Update Use Case This automation enriches a person’s professional profile using their name and work email, scores them against an ICP (Ideal Customer Profile), and updates their record in HubSpot. It’s ideal for sales, marketing, and recruitment teams needing reliable contact insights. What This Automation Does This automation performs the following using the input parameters: Person name**: The full name of the individual. Work email**: The professional email address of the contact. Airtop Profile (connected to LinkedIn)**: An authenticated Airtop Profile used for LinkedIn-based enrichment. Hubspot object id**: The internal HubSpot ID for the contact to be updated. How It Works Initiates the workflow using a form or external trigger. Uses the name and email to extract and enrich the person’s data, including: LinkedIn profile and company page About section, job title, location ICP score, seniority level, AI interest, technical depth, connection and follower counts Formats and maps the enriched data. Pushes the updated data to HubSpot using the object ID. Setup Requirements Airtop API Key Airtop Profile logged in to LinkedIn. HubSpot access with object ID field for each contact to update. Next Steps Combine with Lead Generation**: Use as part of an end-to-end workflow that sources leads and enriches them in real time. Trigger from CRM**: Initiate this workflow when a new contact is added in HubSpot or another CRM. Customize Scoring Logic**: Tailor the ICP calculation to your team’s specific criteria. Read more about person data enrichment
by Trey
This workflow will archive your Spotify Discover Weekly playlist to an archive playlist named "Discover Weekly Archive" which you must create yourself. If you want to change the name of the archive playlist, you can edit value2 in the "Find Archive Playlist" node. It is configured to run at 8am on Mondays, a conservative value in case you forgot to set your GENERIC_TIMEZONE environment variable (see the docs here). Special thanks to erin2722 for creating the Spotify node and harshil1712 for help with the workflow logic. To use this workflow, you'll need to: Create then select your credentials in each Spotify node Create the archive playlist yourself Optionally, you may choose to: Edit the archive playlist name in the "Find Archive Playlist" node Adjust the Cron node with an earlier time if you know GENERIC_TIMEZONE is set Setup an error workflow like this one to be notified if anything goes wrong
by Emmanuel Bernard
🎉 Do you want to master AI automation, so you can save time and build cool stuff? I’ve created a welcoming Skool community for non-technical yet resourceful learners. 👉🏻 Join the AI Atelier 👈🏻 Monitor Zalando product pricing and get notified if a Zalando product price falls under a limit you have defined. This n8n workflow lets you follow the evolution of the price of products you select. For each product, you define a minimal price. The workflow automatically scrapes the price for you on a daily basis. If the price falls under your minimal price settings, you receive a notification. This workflow is very easy to use. From a simple form, just paste the URL of the Zalando product you want to monitor and fill in the minimal price. Features Monitor Zalando Product price: follow the price evolution of your favorite Zalando products. Email notification: set a minimal price, if the product price falls below this limit, you get notified by email. Visual price evolution: get a graphical overview of the product pricing evolutions. Automated Daily check-up: this workflow automatically checks the price of your selected Zalando products on a daily basis. Set up Copy this workflow to your n8n interface. Create a new Google Spreadsheet, copy this template Setup your workflow with your Google credential, your email, and your copy of the Spreadsheet. Activate the Workflow and start pasting Zalando product URLs. I hope you will enjoy this workflow that is probably one of the simplest ways to monitor the pricing evolution of your favorite Zalando products. Feel free to contact me should you have any questions or suggestions. Created by the n8n.inja ✨ follow on X 📺 follow on YT
by Sherlockes
What does this template help with? Save the data of activities recorded and stored in Strava to a Google Sheets document. How it works: We have a Google Sheets spreadsheet where each row represents a Strava activity with the date, reference, distance, time, and elevation. Periodically, the workflow checks the latest activities in our Strava account to see if any are missing from the spreadsheet and adds them to the list. All fields must be properly formatted according to how they are stored in the Google Sheets spreadsheet. Set up instructions Complete the Set up credentials step when you first open the workflow. You'll need a Google Sheets and Strava account. In the 'activities' node, you must enter the name of the file and the sheet where you want to save the imported data. In the 'Strava' node, you must select the corresponding credential. You can adjust the format of dates, times, and distances according to your needs in the 'strava_last' node. The rest of the information is available at sherblog.es Template was created in n8n v1.72.1
by Jimleuk
> Note: This template requires a self-hosted community edition of n8n. Does not work on cloud. Try It Out This n8n template shows how to validate API requests with Auth0 Authorization tokens. Auth0 doesn't work with the standard JWT auth option because: 1) Auth0 tokens use the RS256 algorithm. 2) RS256 JWT credentials in n8n require the user to use private and public keys and not secret phrase. 3) Auth0 does not give you access to your Auth0 instance private keys. The solution is to handle JWT validation after the webhook is received using the code node. How it works There are 2 approaches to validate Auth0 tokens: using your application's JWKS file or using your signing cert. Both solutions uses the code node to access nodeJS libraries to verify the token. JWKS**: the JWK-RSA library is used to validate the application's JWKS URI hosted on Auth0 Signing Cert**: the application's signing cert is imported into the workflow and used to verify token. In both cases, when the token is found to be invalid, an error is thrown. However, as we can use error outputs for the code node, the error does not stop the workflow and instead is redirected to a 401 unauthorized webhook response. When token is validated, the webhook response is forwarded on the success branch and the token decoded payload is attached. How to use Follow the instructions as stated in each scenario's sticky notes. Modify the Auth0 details with that of your application and Auth0 instance. Requirements Self-hosted community edition of n8n Ability to install npm packages Auth0 application and some way to get either the JWK url or signing cert.
by Yaron Been
✨ AI Client Onboarding Agent: Auto Welcome Email Generator Transform your client onboarding from manual follow-up into an intelligent automation system. This streamlined n8n workflow monitors Google Forms submissions, generates personalized welcome emails with onboarding checklists using AI, and delivers professional first impressions instantly to every new client. 🔄 How It Works This efficient 6-step automation ensures no new client is ever missed: Step 1: Continuous Form Monitoring The workflow monitors your Google Sheets (connected to Google Forms) every minute, instantly detecting new client submissions and triggering the onboarding process. Step 2: Intelligent Data Processing Client information is automatically extracted and formatted from form responses, including name, email, company details, service requirements, and special onboarding notes. Step 3: Dynamic Checklist Generation A comprehensive 6-step onboarding checklist is created, covering essential phases from account setup through first milestone review, ensuring consistent client experiences. Step 4: AI-Powered Email Creation Google Gemini generates personalized welcome emails featuring: Custom greetings using the client's actual name Service-specific onboarding instructions Professional checklist formatting Company-branded messaging and signatures Contextual guidance based on their specific needs Step 5: Instant Email Delivery Welcome emails are automatically sent to new clients within minutes of form submission, creating immediate engagement and professional first impressions. Step 6: Robust Error Handling Built-in error monitoring ensures workflow reliability, with automatic failure detection and recovery processes to prevent missed onboarding opportunities. ⚙️ Setup Steps Prerequisites Google Workspace account for Forms, Sheets, and Gmail Google Gemini API access for email generation n8n instance (cloud or self-hosted) Basic understanding of Google Forms and Sheets integration Required Google Forms Structure Create a client intake form with these essential fields: 📝 Required Form Fields: Client Name (Short answer text) Email Address (Email field with validation) Company Name (Short answer text) Services Needed (Paragraph text or multiple choice) Any Other Onboarding Info (Optional paragraph text) Form Settings: Enable "Collect email addresses" for verification Set responses to automatically populate Google Sheets Configure confirmation message for client experience Add form validation for required fields Configuration Steps 1. Credential Setup Google Sheets OAuth2**: Monitor form responses and access client data Google Gemini API Key**: Generate intelligent, personalized email content Gmail OAuth2**: Send automated welcome emails with professional formatting Google Forms Integration**: Ensure seamless data flow from forms to sheets 2. Google Sheets Configuration Verify your form responses sheet contains proper column headers: | Timestamp | Client name | email | Company Name | Services Needed | Any other onboarding info | 3. Onboarding Checklist Customization Default 6-step checklist includes: Account Setup**: User accounts, access credentials, initial configurations Welcome Call Scheduled**: Personal introduction and expectations setting Document Collection**: Contracts, requirements, project specifications Service Configuration**: Platform setup, integrations, custom settings Onboarding Session**: Training, walkthrough, initial guidance First Milestone Review**: Progress check, feedback collection, next steps 4. Email Template Personalization AI email generation can be customized for: Service-Specific Content**: Different messaging for different service types Company Branding**: Consistent voice, tone, and visual identity Client Segmentation**: Premium vs standard client experiences Industry Customization**: Specialized language for different business sectors 5. Workflow Activation and Testing Import workflow JSON into your n8n instance Configure all credential connections and verify permissions Test with sample form submissions to ensure accuracy Activate Google Sheets trigger for continuous monitoring 🚀 Use Cases Professional Service Providers Consultants**: Streamline client onboarding for multiple service offerings Agencies**: Maintain consistent welcome experiences across all new accounts Freelancers**: Create professional first impressions without manual effort Coaches**: Ensure every new client receives immediate, personalized guidance SaaS & Technology Companies Software Platforms**: Welcome new users with setup instructions and support App Developers**: Guide users through initial configuration and features Tech Consultants**: Provide immediate next steps for technical implementations Digital Services**: Establish clear expectations and timelines from day one Education & Training Organizations Online Course Creators**: Welcome students with course access and schedules Training Companies**: Provide immediate onboarding for corporate clients Educational Consultants**: Guide parents and students through program enrollment Certification Programs**: Establish clear pathways for certification completion Healthcare & Wellness Wellness Coaches**: Welcome new clients with program overviews and expectations Healthcare Practices**: Streamline patient onboarding with forms and procedures Therapy Practices**: Provide immediate guidance for new patient relationships Fitness Trainers**: Establish workout schedules and goal-setting sessions Financial Services Financial Advisors**: Welcome new clients with account setup and meeting scheduling Insurance Agents**: Guide clients through policy setup and documentation Accounting Firms**: Establish bookkeeping processes and document collection Investment Firms**: Provide immediate next steps for portfolio management 🔧 Advanced Customization Options Multi-Service Workflow Management Create specialized onboarding paths: Service Type Detection: Analyze form responses to determine service category Conditional Checklists: Generate different steps based on service requirements Tiered Onboarding: Premium clients receive enhanced welcome experiences Industry-Specific Templates: Customize messaging for different business sectors Enhanced Client Communication Expand beyond basic welcome emails: Multi-Step Email Sequences**: Follow-up emails for incomplete onboarding steps Calendar Integration**: Automatic welcome call scheduling with calendar links Document Sharing**: Automated access to onboarding portals and resources Progress Tracking**: Client-facing dashboards showing onboarding completion Team Collaboration Features Keep your team informed and engaged: Slack Notifications**: Alert team members about new client onboarding Task Assignment**: Automatically create tasks in project management tools CRM Integration**: Push new client data to Salesforce, HubSpot, or Pipedrive Calendar Scheduling**: Book welcome calls across team member calendars Quality Assurance & Analytics Monitor and improve onboarding effectiveness: Email Delivery Tracking**: Monitor open rates and engagement metrics Onboarding Completion Rates**: Track which clients complete all steps Response Time Analysis**: Measure speed from form submission to email delivery Client Feedback Integration**: Collect and analyze onboarding experience ratings 📊 Generated Email Examples Standard Service Welcome: Hi Sarah Johnson, Welcome to our service! We're excited to work with Digital Marketing Solutions on your upcoming project. Based on your submission, here's your personalized onboarding checklist: ✅ ONBOARDING CHECKLIST Account Setup - We'll create your project dashboard and send login credentials Welcome Call Scheduled - Let's discuss your goals and timeline in detail Document Collection - We'll gather all necessary project requirements and assets Service Configuration - Our team will customize our approach for your specific needs Onboarding Session - We'll walk you through our process and answer any questions First Milestone Review - We'll schedule a check-in to ensure everything is progressing smoothly Your project details: • Services Needed: SEO optimization and content strategy • Special Requirements: Focus on local search rankings What's next? Our team will reach out within 24 hours to schedule your welcome call and begin the account setup process. Best regards, Your Digital Marketing Solutions Team Premium Client Welcome: Hi Michael Chen, Welcome to our premium service tier! We're thrilled to partner with Tech Innovations Inc. on this exciting project. Your VIP onboarding experience includes: 🌟 PREMIUM ONBOARDING CHECKLIST Priority Account Setup - Dedicated account manager assignment within 2 hours Executive Welcome Call - Direct access to our senior team for strategic discussion Expedited Document Collection - Streamlined process with dedicated support Custom Service Configuration - Tailored solutions designed specifically for your needs Comprehensive Onboarding Session - Extended session with our technical experts Weekly Milestone Reviews - Regular check-ins to ensure optimal progress Your premium benefits: • Dedicated account manager: Will be assigned today • Priority support: 4-hour response time guarantee • Custom reporting: Weekly progress dashboards Next steps: Your dedicated account manager will contact you within 2 hours to schedule your executive welcome call. Best regards, Your Tech Innovations Inc. Premium Team 🛠️ Troubleshooting & Best Practices Common Issues & Solutions Google Forms Integration Field Mapping**: Ensure form field names exactly match workflow expectations Response Timing**: Verify Google Sheets updates immediately after form submission Permission Issues**: Confirm n8n has proper access to Google Workspace services Data Validation**: Implement form validation to prevent incomplete submissions Email Delivery Challenges Gmail Limits**: Monitor daily sending limits and implement appropriate delays Spam Prevention**: Use professional email templates and avoid promotional language Email Formatting**: Ensure AI-generated content maintains professional appearance Delivery Confirmation**: Implement tracking for email delivery and open rates AI Content Quality Prompt Refinement**: Continuously improve AI prompts based on output quality Brand Consistency**: Ensure generated emails match your company voice and tone Template Variations**: Create multiple templates for different service types Quality Review**: Implement periodic manual review of AI-generated content Optimization Strategies Response Time Enhancement Trigger Frequency**: Balance monitoring frequency with system resources Processing Efficiency**: Optimize data transformation steps for faster execution Error Recovery**: Implement retry logic for failed email deliveries Queue Management**: Handle high-volume periods with intelligent batching Client Experience Improvement Personalization Depth**: Use all available form data for maximum personalization Follow-up Automation**: Create additional workflows for onboarding step completion Feedback Collection**: Gather client feedback on onboarding experience quality Continuous Improvement**: Regular review and refinement of onboarding processes Business Process Integration CRM Synchronization**: Ensure new client data flows to all relevant systems Team Workflows**: Integrate onboarding triggers with internal task management Resource Allocation**: Automatically assign team members based on service types Progress Tracking**: Implement systems to monitor onboarding completion rates 📈 Success Metrics Efficiency Improvements Response Time**: Reduce new client response time from hours to minutes Consistency**: Achieve 100% consistent welcome experience for all new clients Team Productivity**: Eliminate manual onboarding email creation entirely Error Reduction**: Prevent missed follow-ups and incomplete onboarding processes Client Experience Measurements First Impression Quality**: Measure client satisfaction with initial welcome experience Onboarding Completion**: Track percentage of clients completing all onboarding steps Engagement Rates**: Monitor email open rates and response rates to welcome messages Time to Value**: Measure how quickly new clients achieve first project milestones 📞 Questions & Support Need assistance with your AI Client Onboarding Agent setup or optimization? 📧 Expert Implementation Support Email**: Yaron@nofluff.online Response Time**: Within 24 hours on business days Specialization**: Client onboarding automation, AI email generation, Google Workspace integration 🎥 Comprehensive Learning Resources YouTube Channel**: https://www.youtube.com/@YaronBeen/videos Complete setup and configuration tutorials for Google Forms and Sheets Advanced AI prompt engineering for personalized client communications Integration guides for popular CRM and project management platforms Best practices for professional service provider automation Troubleshooting common Google Workspace and Gmail integration issues 🤝 Professional Community & Networking LinkedIn**: https://www.linkedin.com/in/yaronbeen/ Connect for ongoing client onboarding automation support and consulting Share your client acquisition and onboarding success stories Access exclusive workflow templates for different service industries Join discussions about client experience automation and business growth 💬 Support Request Best Practices Include in your support message: Your service type and typical client onboarding process Current client volume and expected growth projections Specific customization requirements for your industry Integration needs with existing CRM or project management tools Any technical errors or workflow execution issues Ready to create unforgettable first impressions for every new client? Deploy this AI Client Onboarding Agent and transform your client acquisition process into a seamless, professional experience that starts strong relationships from day one!
by Bela
How it works: This workflow automates your customer service with built in notifications for your users & ticket creation with Asana. If a user submits a form, he gets send a confirmation message via WhatsApp a task is opened in Asana with his request in it. Setup: You need to add your credentials to the WhatsApp Business Cloud node. You need to add your credentials to the Asana node. Replace the placeholders with the correct phone number, id, and so on. Change the confirmation message to your liking. Optional Changes: You could extend this workflow to update your user on the progress of the ticket in Asana. You can change the messaging from WhatsApp to E-Mail. You can change the form submission service from n8n-native to Typeform or similar. You can change the task management software from Asana to the one you use. Click here to find a blog post with additional information.
by Simon
📦 Zip Multiple Files Dynamically This template enables you to dynamically bundle multiple files into a ZIP archive. Designed to be used as a Subworkflow, it’s modular, flexible, and easy to integrate into various workflows. The output is a single ZIP file with a name that includes the current date, time, and fileName. Shoutout: Code from: Tom (mutedjam) 👤 Who is this for? This workflow is perfect for: 🚀 Businesses automating file archiving tasks. 💻 Developers managing files programmatically. 📂 Anyone needing a reusable solution for bundling files into ZIP archives. ❓ What problem is this workflow solving? Manually zipping multiple files is: 🕒 Time-consuming. 🤔 Prone to errors. This workflow automates the process and, as a Subworkflow, ensures: ⚡ Consistent file archiving across different workflows. 🛠️ Reduced manual effort. 📈 Streamlined integration into existing automation. 🔧 What this workflow does 🗂️ Dynamically collects binary files from the input. 📦 Bundles them into a single ZIP archive. 🕒 Names the ZIP file with the current date, time, and a customizable fileName. ✅ Outputs the ZIP file, ready for storage or further processing. ⚙️ Setup 🔗 Add this Subworkflow to your existing workflows. 📥 Pass the binary files as input to the Subworkflow. ▶️ Call the Subworkflow to generate a ZIP file. 🛠️ How to customize this workflow to your needs 🌐 File Sources**: Adjust the input nodes in your parent workflow to connect to your preferred file sources. 📝 File Naming**: Customize the logic for the output fileName in the Subworkflow. 🚀 Additional Use Cases**: Use this Subworkflow in various scenarios, such as: ✉️ Sending ZIP files via email. ☁️ Uploading ZIP files to cloud storage. 🔄 Triggering further automation. 🎉 Why use this as a Subworkflow? Instead of building a fixed ZIP functionality for every workflow, this template offers a reusable solution that can be integrated into many different workflows effortlessly. Save time and ensure consistency across your automation projects! 💡