Zoho

Zoho CRM and Make (Integromat) Integration: Build Multi-Step Automations Beyond Zoho Flow

Amit Prabhu Amit Prabhu · May 29, 2026 · 13 min read #Automation #Integration #Integromat
Zoho CRM and Make (Integromat) Integration: Build Multi-Step Automations Beyond Zoho Flow

Zoho Flow handles simple two-app automations well, but the moment you need branching logic, error handling routes, or a scenario that connects five apps in sequence, you hit its ceiling. The Zoho CRM and Make integration opens up a different category of workflow automation entirely. Make (formerly Integromat) gives you a visual canvas where each module processes data and passes it to the next, with full control over filters, routers, iterators, and error handlers. This guide walks through building a production-grade multi-step scenario that moves data from Zoho CRM through Google Sheets, Slack, and Asana, with proper error handling at every stage. You will also learn how to optimize your operations quota, when Make is the right choice over Zoho Flow, and how to test scenarios before they touch live data.

Make vs Zoho Flow: Where Each Tool Fits

Both Make and Zoho Flow connect Zoho CRM to other applications, but they serve different complexity tiers. Zoho Flow is a native Zoho product designed for straightforward app-to-app connections within the Zoho ecosystem. Make is a third-party automation platform built for multi-step, multi-branch workflows that span dozens of applications.

CapabilityZoho FlowMake
Connected apps~900 (Zoho-heavy)2,000+
Visual builderLinear flowCanvas with branching
Error handlingBasic retryError routes, break, resume, rollback
Data transformationLimited functionsFull function library (text, math, date, array, JSON)
Routers / filtersSingle path onlyMulti-path routers with filter conditions
Iterators / aggregatorsNot availableBuilt-in modules
Webhook triggersYesYes, with custom parsing
Pricing modelTasks per monthOperations per month
Best forSimple Zoho-to-Zoho linksComplex multi-app automations

Use Zoho Flow when your workflow connects two Zoho apps with a single trigger and action. Switch to Make when you need conditional branching, multi-app chains, or error recovery logic that Zoho Flow cannot express.

Setting Up the Zoho CRM and Make Integration

Before building scenarios, you need to establish the connection between Make and your Zoho CRM instance. Make uses OAuth 2.0 to authenticate with Zoho, so you will not need to manage API keys manually.

Step 1: Create a Make Account and Scenario

Sign up at make.com and create a new scenario. The scenario canvas opens with a blank starting module. Click the plus icon to add your first module.

Step 2: Add the Zoho CRM Module

Search for “Zoho CRM” in the module library. Make provides verified Zoho CRM modules covering triggers, actions, and searches. Select “Watch Records” as your trigger if you want to detect new or updated records automatically.

Step 3: Authorize the Connection

Click “Create a connection” inside the Zoho CRM module. Make redirects you to Zoho’s OAuth consent screen. Approve the requested scopes (ZohoCRM.modules.ALL, ZohoCRM.settings.ALL at minimum). Once authorized, the connection persists across all scenarios in your Make account.

Step 4: Configure the Trigger Module

Select the module (Deals, Contacts, Leads) you want to monitor. Set the trigger field, typically “Modified Time” or “Created Time.” Choose the polling interval. Make checks Zoho CRM at this interval, consuming one operation per check even if no new records are found.

Building a Multi-Step Scenario: CRM to Sheets to Slack to Asana

This scenario demonstrates the kind of multi-app workflow that Make handles and Zoho Flow cannot replicate. When a deal in Zoho CRM reaches “Closed Won” status, the scenario logs it in Google Sheets, notifies the team in Slack, and creates an onboarding task in Asana.

Module 1: Zoho CRM Watch Records (Trigger)

Configure the Watch Records module for the Deals module. Add a filter condition on the Stage field: Stage equals “Closed Won.” Set the limit to 10 records per execution cycle. Each matching record triggers the downstream modules independently.

Module 2: Google Sheets Add a Row

Connect the Google Sheets module after the Zoho CRM trigger. Map the deal fields: Deal Name to Column A, Amount to Column B, Close Date to Column C, Account Name to Column D. Use Make’s built-in formatDate function to convert Zoho’s date format to your spreadsheet format: formatDate(deal.Closing_Date; "DD/MM/YYYY").

Module 3: Slack Send a Message

Add the Slack module and select “Send a Message.” Choose the target channel (e.g., #won-deals). Build the message using mapped values from the Zoho CRM output. Include the deal amount formatted with the formatNumber function: formatNumber(deal.Amount; 2; "."; ",").

Module 4: Asana Create a Task

Add the Asana module to create an onboarding task. Map the task name to include the account name from Zoho CRM. Set the due date 14 days from today using the addDays function: addDays(now; 14). Assign it to the onboarding team member and add a description that pulls key deal details.

This four-module chain executes in sequence. Each record that matches the trigger condition consumes four operations total, one per module.

Error Handling Routes in Make Scenarios

Production workflows fail. APIs return errors, rate limits kick in, and data formats change. Make provides dedicated error handling routes that let you control what happens when a module fails, rather than letting the entire scenario stop.

Adding an Error Handler

Right-click any module and select “Add error handler.” This creates a separate execution path that activates only when that module throws an error. You can chain error-handling modules together just like regular modules.

Error Handler Types

For the CRM-to-Sheets-to-Slack-to-Asana scenario, add a Break error handler to the Google Sheets module and the Asana module. If either API is temporarily down, the affected bundles queue up and retry automatically after the break interval you specify (default: 15 minutes).

Data Transformation and Mapping in Make

Zoho CRM stores data in its own formats, and target applications expect different structures. Make’s built-in function library handles the conversion between systems without requiring custom code. This is where Make’s advantage over native Zoho automation tools becomes clear.

Common Transformations for Zoho CRM Data

Working with Arrays and Iterators

When a Zoho CRM record contains line items (common in Quotes, Sales Orders, and Invoices), the data arrives as an array. Use Make’s Iterator module to process each line item individually, then an Aggregator module to collect the results. For example, iterate over quote line items to create individual rows in a Google Sheet, then aggregate the total to post in a Slack summary.

Operations Quota Optimization

Make charges by operations, where each module execution in a scenario counts as one operation. A scenario with five modules processing ten records uses 50 operations. On the free plan (1,000 operations/month), this adds up fast. On paid plans, operations scale with your tier but still represent a real cost.

Strategies to Reduce Operations

Monitoring Operations Usage

Make’s dashboard shows operations consumed per scenario and per execution. Set up notifications at 80% of your monthly quota. Review the scenario execution logs weekly to identify modules that run frequently but produce no useful output, then add filters to eliminate those runs.

When to Use Make vs Zoho Flow vs Custom API

The choice between Make, Zoho Flow, and a custom Zoho CRM integration depends on three factors: workflow complexity, technical capacity, and budget.

ScenarioRecommended ToolReason
New Zoho CRM contact syncs to Zoho CampaignsZoho FlowTwo Zoho apps, one trigger, one action
Closed deal creates Google Sheet row, Slack notification, and Asana taskMakeMulti-app chain with data transformation
CRM record update triggers conditional logic across 3 branchesMakeRouter with filter conditions
Bi-directional sync between Zoho CRM and external databaseCustom APIRequires conflict resolution logic
Quarterly report pulls from CRM, formats PDF, emails to stakeholdersMakeScheduled execution with data aggregation
Simple CRM field update triggers email notificationZoho FlowSingle action, native integration sufficient

Make sits in the middle ground between Zoho Flow’s simplicity and a full custom API build. For teams that need multi-app workflows but lack developer resources to build and maintain API integrations, Make delivers the complexity handling without the code maintenance burden.

Testing and Deploying Make Scenarios

Never deploy a Make scenario to production without testing it against real Zoho CRM data structures. Make provides several tools that reduce the risk of errors in live execution.

Run Once Mode

Click “Run once” to execute the scenario a single time with live data. Each module shows its input and output in the execution inspector. Check every mapped field to confirm the data arrives in the expected format. Pay attention to null values, unexpected array structures, and date format mismatches.

Using Test Records

Create a test deal in Zoho CRM with known values, including edge cases: a deal with no contact associated, a deal with special characters in the name, a deal with zero amount. Run the scenario against each test record and verify every downstream module handles the data correctly.

Scheduling

Once tested, set the scenario to run on a schedule. Options include immediate (processes as soon as data is available), at regular intervals (every 15 minutes, hourly), or on specific days. For CRM integrations, a 15-minute interval balances timeliness with operations cost.

Version History

Make maintains a version history for each scenario. Before making changes to a production scenario, note the current version number. If the update causes errors, you can revert to the previous version without rebuilding from scratch.

For a full overview of all available options, explore our complete guide to Zoho integrations.

Frequently Asked Questions

Can Make connect to Zoho CRM’s custom modules and custom fields?

Yes. Make’s Zoho CRM module reads your instance’s schema dynamically. Custom modules appear in the module selector, and custom fields appear in the field mapping interface. If you add a new custom field to Zoho CRM, refresh the module connection in Make to pull the updated schema.

How many operations does a typical Zoho CRM scenario use per month?

A scenario with five modules running every 15 minutes processes approximately 2,880 trigger checks per month. If 10% of those checks find matching records and each record passes through all five modules, you consume roughly 2,880 + (288 x 5) = 4,320 operations monthly. Use webhook triggers instead of polling to reduce the trigger operations to only the records that match.

Is Make more expensive than Zoho Flow for simple workflows?

For simple two-app workflows within the Zoho ecosystem, Zoho Flow is more cost-effective. It is included in many Zoho plans and charges by tasks rather than operations. Make becomes more economical when you need to connect non-Zoho apps or require features like routers, error handling routes, and iterators that Zoho Flow does not offer.

Can I trigger a Make scenario from a Zoho CRM workflow rule?

Yes. Create a webhook trigger in Make, which gives you a unique URL. In Zoho CRM, create a workflow rule that fires a webhook action pointing to that URL. This approach is more efficient than polling because Make only processes data when Zoho CRM sends it, saving operations on your Make plan.

What happens if Make is down while Zoho CRM sends a webhook?

Make’s webhook infrastructure queues incoming requests. When the service recovers, queued webhooks process in order. For critical workflows, add a secondary notification (email or SMS via a separate Zoho Flow) that alerts you if the Make scenario has not executed within the expected timeframe.

Aaxonix builds multi-app Zoho CRM integrations using Make, Zoho Flow, and custom APIs, matched to your workflow complexity and budget. Book a free consultation to get a no-obligation review of your current automation stack and a recommended integration architecture.

Book a free consultation

The Zoho CRM and Make integration fills a specific gap: workflows too complex for Zoho Flow but not complex enough to justify custom development. Start with the four-module scenario described above, test it thoroughly, and expand from there. As your automation requirements grow, Make’s routers, error handlers, and data transformation functions scale with you, keeping your CRM data flowing accurately across every application your team depends on.

Share this article LinkedIn Twitter / X
# Automation # Integration # Integromat # Make # Zoho CRM # Zoho Flow

Thinking about Zoho or NetSuite?

Our team builds systems that actually work. No fluff, just honest architecture and clean implementation.