AI Automation Series #3: Make.com (Integromat) – Build Your First Scenario

Make.com occupies a unique position in the automation landscape — it sits between Zapier’s beginner-friendliness and n8n’s power-user flexibility, offering a visual canvas that genuinely delights people who think visually about processes. When I first switched from Zapier to Make.com for a complex client project, I remember how much more natural it felt to map out a workflow where I could see all the branches, loops, and parallel paths laid out visually in front of me. If you’ve ever drawn a flowchart to explain a process to someone, Make.com will feel immediately intuitive. This guide takes you from zero to your first real Make.com scenario — and into the platform’s genuinely impressive advanced features.

Understanding Make.com’s Core Philosophy

Make.com was built around a visual, map-like interface called the Canvas. Every automation — called a “scenario” in Make.com’s terminology — is a visual flow of connected modules (their equivalent of nodes or actions). What makes this approach powerful is that complex scenarios with multiple parallel paths, loops, and conditional branches are visually comprehensible in a way that linear list-based automation builders (like Zapier) struggle to represent. When you’re building a workflow that processes data differently based on five different conditions, seeing all five paths simultaneously on the canvas helps you design and debug the logic much more effectively.

Make.com’s pricing model is based on “operations” — each module execution within a scenario counts as one operation. A scenario that runs through five modules counts as five operations. This is more granular than Zapier’s task counting and can be more cost-effective for scenarios that process large numbers of records, since Make.com charges per module execution rather than per entire workflow run. Understanding operations is important for designing cost-efficient scenarios, especially when working with loops that process hundreds of records.

Creating Your First Scenario: The Make.com Interface

Create your free Make.com account at make.com and click “Create a new scenario” from the dashboard. You’re immediately dropped into the canvas with a single empty module. This initial module is your trigger — the event that starts your scenario. Click it and you’ll see Make.com’s module search, which covers over 1,000 apps and services. For your first real scenario, let’s build something immediately useful: a system that captures new Google Sheets rows, enriches the data, and creates contacts in your CRM.

Search for “Google Sheets” and select the “Watch New Rows” trigger. After connecting your Google account and selecting your spreadsheet and sheet, Make.com will test the connection and return the data from your most recent rows so you can see what fields are available for subsequent modules. The test data preview is one of Make.com’s most helpful features — being able to see real data flowing through your scenario as you build it prevents the “run it and hope” approach that leads to hours of debugging.

Adding Modules: Filters, Transformers, and Actions

After your trigger, add a Filter — the diamond-shaped module that only lets data through when conditions are met. Click the small wrench icon between your trigger and the next module to add a filter. For our scenario, filter for rows where the “Status” column equals “Ready to Process” — this ensures only new contacts that need processing flow through, not every row in the spreadsheet. Filters are one of Make.com’s most powerful features for keeping your scenarios efficient and preventing unnecessary operations.

Next, add an HTTP module to call an enrichment API. Make.com’s HTTP module is the equivalent of n8n’s HTTP Request node — it lets you call any API endpoint. For contact enrichment, set up a call to Hunter.io or Apollo.io with the contact’s email address from your Google Sheet. The enrichment API returns company data, job title, LinkedIn URL, and other valuable fields that transform a basic email address into a comprehensive contact profile. Map the returned fields to variables you’ll use in subsequent modules.

Working with Routers: The Power of Parallel Paths

Make.com’s Router module is what really sets it apart from simpler automation tools. A Router takes a single input and sends it down different paths based on conditions — allowing fundamentally different handling for different types of data. Add a Router after your enrichment step. Create three routes: one for “Enterprise” contacts (company size > 500 employees) that sends to Salesforce and triggers a high-touch outreach sequence, one for “Mid-Market” contacts (50-500 employees) that goes to HubSpot with standard outreach, and one for “SMB” contacts (under 50 employees) that goes to a basic email nurture sequence. Each path handles the same initial data but processes it completely differently based on the routing condition.

Visualizing this on the Make.com canvas is where the platform truly shines — you can see all three routes simultaneously, trace the flow of data through each path, and immediately understand the complete logic without reading code or following a linear list of steps. This visual comprehension becomes increasingly valuable as your scenarios grow in complexity.

Adding AI to Your Make.com Scenarios

Scroll to Top