Business Operations & ERPs Automation Workflows — Page 7 | Neura Market
    Neura Market
    Neura Market
    /Categories
    Marketplace
    Directories
    Resources
    Home/Categories/Business Operations & ERPs

    Business Operations & ERPs Workflows

    Enterprise resource planning and operations

    • Automate Zoho Inventory Adjustments via Android Barcode Scans

      Automatically create inventory adjustments in Zoho Inventory whenever a barcode is scanned using the Make Android App. Receive a push notification on your Android device upon successful adjustment.

      Make$4.99
    • Automated Workflow Backup System with Google Drive, Gmail, and Discord Alerts

      ## How it works This workflow automates the backup of all your n8n workflows to a specified Google Drive folder. It operates in two main phases: 1. **Orchestration (Scheduled Task):** - The workflow is initiated by a **Schedule Trigger** (e.g., daily at 1:30 AM by default). - It then uses an **n8n API Node** to fetch a list of all existing workflows in your n8n instance. - A **Loop Over Items** node processes each fetched workflow individually. - For every workflow in the list, an **Execute Workflow** node calls the worker part of this same workflow, passing the individual workflow's data. 2. **Individual Workflow Backup (Worker Task):** - This part is triggered by the **When Executed by Another Workflow** node (called by the orchestrator part). - It first retrieves the passed workflow data. - A **Parameters** node defines the target Google Drive directory. - The **Get Google Drive File Data** node searches the specified Google Drive folder to see if a backup file for the current workflow (named as `WorkflowName_WorkflowID.json`) already exists. - An **IF Node** (`ifDriveEmpty`) checks the result: - If a backup file **exists**, the workflow data is converted to a binary JSON file using a **Code Node**, and then the existing file on Google Drive is **updated** (`Backup to Google Drive2`). - If a backup file **does not exist**, the workflow data is first formatted as JSON, converted to a binary JSON file using another **Code Node**, and then **uploaded as a new file** to Google Drive (`Backup to Google Drive4`). - If any Google Drive upload/update operation fails, a **Failure Email** is sent. After the loop in the orchestration phase completes (all workflows processed), a **Limit** node ensures only one signal proceeds to send a **Success Email** and a **Discord** message indicating the overall backup process was completed. ## Setup 1. **Clone Workflow:** Clone this workflow into your n8n environment. 2. **Credentials:** - **n8n API:** In the Get all n8n Workflows node, select or create n8n API credentials. This allows the workflow to list all your other workflows. - **Google Drive:** In the getDriveFileData, Backup to Google Drive2, and Backup to Google Drive4 nodes, select or create your Google Drive OAuth2 API credentials. - **Gmail:** In the successEmail and failureEmail nodes, select or create your Gmail credentials. - **Discord (Optional):** If you wish to use Discord notifications, configure your Discord Bot API credentials in the Discord node. 3. **Configuration:** - **Schedule:** Open the Schedule Trigger node and adjust the trigger interval (e.g., time of day) as needed. - **Google Drive Folder:** Open the Parameters node (connected after Workflow Data). Edit the `directory` value to the full URL of the Google Drive folder where you want to store your backups (e.g., `https://drive.google.com/drive/folders/YOUR_FOLDER_ID`). - **Email Recipients:** Open the successEmail and failureEmail nodes and update the Send To field with your desired recipient email address(es). - **Discord Channel (Optional):** If using Discord, open the Discord node and set the Channel ID for notifications. - **Sub-Workflow ID:** The Execute Workflow node is pre-configured to call this workflow itself using its ID. If you import this workflow and its ID changes, you *may* need to update the `workflowId` in the Execute Workflow node to the new ID of this imported workflow. *However, n8n usually handles this if it's self-referential within the same imported workflow.* ## How to use 1. **Activate:** After completing the setup steps, activate the workflow. It will automatically run according to the defined schedule. 2. **Manual Execution:** You can also manually trigger the workflow by clicking the Execute Workflow play button on the Schedule Trigger node to perform an immediate backup of all workflows. 3. **Check Backups:** Your n8n workflows will be saved as `.json` files (named `WorkflowName_WorkflowID.json`) in the Google Drive folder you specified in the Parameters node. 4. **Notifications:** You will receive an email (and optionally a Discord message) upon successful completion of the entire backup process, or individual failure emails if a specific workflow backup to Google Drive fails. ## Author & Credits - **Creator:** Hochien Chang - **YouTube Channel (Chinese):** [HC AI](https://www.youtube.com/channel/UCvGfUB-wBdG4i_dDGBCwJg) - **YouTube Channel (English):** [HC HumanizeAI](https://www.youtube.com/@HC-HumanizeAI) - **Original Explanation Video:** [https://youtu.be/PA15H5qunC0](https://youtu.be/PA15H5qunC0) - **Based on:** [n8n Workflow Backup to Google Drive](https://n8n.io/workflows/3112-backup-n8n-workflows-to-google-drive/)

    Marketplace

    • Prompts
    • Workflows
    • Agent Hub
    • 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 Agent Guides
    • 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$14.99
  1. Automatically Add New Mailchimp Subscribers as QuickFile Clients

    Streamline your client management by automatically creating a QuickFile client for every new subscriber added to your Mailchimp list.

    MakeFree
  2. Sync Notion to Clockify Including Clients, Projects, and Tasks

    ## Purpose This workflow synchronizes three entities from Notion to Clockify, allowing tracked time to be linked to client-related projects or tasks. ## Demo & Explanation [![demo video](https://img.youtube.com/vi/qr0cvtAAMrc/0.jpg)](https://youtu.be/qr0cvtAAMrc) ## How it works - On every run, active Clients, Projects, and Tasks are retrieved from both Notion and Clockify before being compared by the Clockify ID, which is again stored in Notion for reference. - Potential differences are then applied to Clockify. - If an item has been archived or closed in Notion, it is also marked as archived in Clockify. - All entities are processed sequentially, since they are related hierarchically to each other. - By default, this workflow runs once per day or when called via webhook (e.g., embedded into a Notion Button). ## Prerequisites - A set of Notion databases with a specific structure is required to use this workflow. - You can either start with [this Notion template](https://steadfast-banjo-d1f.notion.site/1ae82b476c84808e9409c08baf382c45) or adapt your system based on the requirements described in the big yellow sticky note of this workflow template. ## Setup - Clone the workflow and select the belonging credentials. - Follow the instructions given in the yellow sticky notes. - Activate the workflow. ## Related workflows: - [Backup Clockify to GitHub based on monthly reports](https://n8n.io/workflows/3147-backup-clockify-to-github-based-on-monthly-reports/) - [Prevent simultaneous workflow executions with Redis](https://n8n.io/workflows/2270-prevent-simultaneous-workflow-executions-with-redis/)

    n8n$24.99
  3. Sync New Shopify Customers to Tookan

    Automatically add new customers from Shopify to Tookan, ensuring your customer data is always up-to-date across platforms.

    MakeFree
  4. Automatically Create Tasks in Sellsy When Opportunity Reaches Specific Stage

    This workflow automatically generates three tasks in Sellsy when an opportunity reaches a designated stage, streamlining task management and ensuring timely follow-ups.

    Make$4.99
  5. Automatically Add New Tapfiliate Affiliates to Google Sheets

    Streamline your affiliate management by automatically adding new Tapfiliate affiliates to a Google Sheets document, ensuring all affiliate information is organized and up-to-date.

    Make$2.99
  6. Sync New RepairShopr Customers to Google Sheets Automatically

    Automatically transfer new customer data from RepairShopr to a Google Sheets spreadsheet, keeping your records up-to-date effortlessly.

    MakeFree
  7. Automatically Sync New Xero Contacts to Autopilot

    Seamlessly transfer new contacts from Xero to your Autopilot list, ensuring your marketing efforts are always up-to-date.

    MakeFree
  8. Automate Daily Customer Creation from Shopify to Omise

    Automatically create new customers in Omise from Shopify every day at midnight, streamlining your customer management process.

    MakeFree
  9. Sync New Shopify Customers to Authvia

    Automatically create Authvia customer profiles whenever new customers are added to Shopify, ensuring seamless data integration.

    MakeFree
  10. Automate Customer Creation in AmeriCommerce from New Constant Contact Entries

    Automatically create new customers in AmeriCommerce whenever a new contact is added in Constant Contact, streamlining your customer management process.

    Make$2.99
  11. Automate Shopify Customer Creation from New Outgrow Leads

    Automatically create new Shopify customers from leads generated in Outgrow, ensuring seamless integration and data consistency.

    Make$3.99
  12. Automatically Create TradeGecko Companies from New Typeform Submissions

    Streamline your workflow by automatically creating new companies in TradeGecko whenever a Typeform form is submitted.

    MakeFree
  13. Bi-Directional Sync Between Google Contacts and Notion

    Effortlessly synchronize your Google Contacts with your Notion database, ensuring all contact information is consistently updated across both platforms.

    n8n$19.99
  14. Automatically Sync QuickBooks Invoices to ShipStation Orders

    Streamline your order management by automatically creating ShipStation orders from new QuickBooks invoices. This workflow ensures that your shipping process is initiated as soon as an invoice is generated.

    Make$4.99
  15. Automatically Update Katana Sales Order Status When Fulfilled in Squarespace

    Streamline your order management by syncing Squarespace fulfillment updates with Katana. When an order is marked as fulfilled in Squarespace, this workflow automatically updates the corresponding sales order status to 'Delivered' in Katana.

    Make$3.99
  16. Automate Zammad Role Updates from Excel Data

    This n8n workflow automates the process of updating user roles in Zammad using data from an Excel file. It ensures efficient role management by matching users via email and applying the specified role changes.

    n8n$9.99
  17. Add a new customer from a WooCommerce order to a Microsoft 365 Excel worksheet

    Every time a new order is created in WooCommerce, Make will automatically add a new row with the customers details in your Microsoft 365 Excel worksheet. Your Microsoft 365 Excel worksheet has to contain headers (at least 10 to see the templates default settings).

    Make$2.99
  18. Daily Sales Report emplate

    rack your daily sales efficiently with this Daily Sales Report emplate designed with Zapier ables. his template allows you to record and analyze sales data with ease, offering an embedded Send Email button that lets you share daily sales summaries...

    Zapier$2.99
  19. Automatically Sync New Stripe Customers to Xero Contacts

    Streamline your accounting by automatically creating Xero contacts whenever a new customer is added in Stripe. This workflow ensures your customer data is consistently updated across platforms.

    Make$2.99
  20. Execute Another Workflow

    This n8n workflow is triggered manually and uses the Execute Workflow node to run another automation. It serves as a practical example for chaining workflows, useful for testing modular setups or learning how to reuse processes.

    n8n$2.99
  21. Archive Empty Pages in Notion Database

    This workflow will archive empty pages in your Notion databases. Add your n8n integration to the Notion databases that you want to process. To configure this workflow, set the Notion credentials in the 4 Notion nodes and, if needed, change the time in the Cron node. The default is to run at 2 am every day.

    n8n$9.99
  22. Automate Monthly Energy Reports from PostgreSQL to PDF and Email

    This workflow automates the creation and distribution of monthly energy generation reports by extracting data from a PostgreSQL database, converting it into a PDF, and emailing it to stakeholders.

    n8n$4.99
  23. ← PreviousPage 7 of 65Next →

    Related categories

    Communication (2,463)AI (1,930)Other (1,425)Productivity (1,202)Marketing (1,146)Data & Analytics (995)File & Document Management (802)CRM - Sales (605)Notifications (580)Social Media (562)

    Need a custom business operations & erps workflow?

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

    Request a Custom Workflow