← Back to all products

Make (Integromat) Scenario Library

$29

40+ Make.com automation scenarios for e-commerce, marketing, finance, and operations with error handling and logging.

📁 34 files
JSONMarkdownLLMGoogle Sheets

📄 Product Preview

Try the interactive reader and demo tools below, or get the full product with all content unlocked.

📖 Interactive Reader (Free Preview) ⚙ Try Demo Tools 📦 Download Free Sample

📁 File Structure 34 files

make-integration-library/ ├── LICENSE ├── README.md ├── free-sample.zip ├── guide/ │ ├── 01_data-store-usage.md │ ├── 02_error-handling-logging.md │ └── 03_setup-import-guide.md ├── guides/ │ ├── data-store-usage.md │ ├── error-handling-logging.md │ └── setup-import-guide.md ├── index.html └── scenarios/ ├── ecommerce/ │ ├── ecommerce-catalog-sync.json │ ├── ecommerce-orders-fulfillment.json │ ├── fraud-screening.json │ ├── loyalty-points-tracker.json │ ├── review-monitor.json │ ├── review-request-sequence.json │ └── supplier-purchase-order.json ├── finance/ │ ├── expense-receipt-processor.json │ ├── invoice-generation.json │ ├── overdue-invoice-reminders.json │ ├── payment-reconciliation.json │ └── revenue-dashboard-sync.json ├── marketing/ │ ├── competitor-price-monitor.json │ ├── content-calendar-publisher.json │ ├── customer-winback.json │ ├── marketing-campaign-automation.json │ ├── marketing-lead-capture.json │ ├── referral-tracking.json │ └── webinar-followup.json └── operations/ ├── approval-workflow.json ├── incident-response.json ├── onboarding-checklist.json ├── scheduled-report-generator.json └── standup-collector.json

📖 Documentation Preview README excerpt

Make.com Integration Library

40 ready-to-import Make.com scenario blueprints covering e-commerce, marketing, finance, and operations workflows. Each blueprint includes complete module configurations, error handlers, data transformations, and scheduling — just import, connect your apps, and activate.

What's Inside

E-commerce (7 scenario files, 15 scenarios)

FileScenariosUse Cases
ecommerce-orders-fulfillment.json5Order notifications, inventory sync, shipping tracking, abandoned cart recovery, returns processing
ecommerce-catalog-sync.json5Product sync, price updates, stock alerts, image processing, category mapping
review-monitor.json1Route reviews by star rating to marketing (positive) or support (negative)
fraud-screening.json1Score orders for fraud signals, alert on high-risk purchases
review-request-sequence.json1Post-delivery review request emails with follow-up
loyalty-points-tracker.json1Award points per purchase, track tiers, send milestone notifications
supplier-purchase-order.json1Auto-generate POs for low-stock items, email suppliers

Marketing (7 scenario files, 15 scenarios)

FileScenariosUse Cases
marketing-lead-capture.json5Form-to-CRM, webinar registration, social leads, lead scoring, newsletter management
marketing-campaign-automation.json5Email sequences, social scheduling, campaign reporting, UTM tracking, A/B test analysis
content-calendar-publisher.json1Publish scheduled blog posts from Google Sheets to WordPress
referral-tracking.json1Track referral codes, attribute purchases, generate reward discount codes
webinar-followup.json1Segment attendees vs no-shows, send appropriate follow-up emails
competitor-price-monitor.json1Daily competitor price checks, alert on significant changes
customer-winback.json1Identify lapsed customers, send tiered win-back emails with escalating incentives

Finance (5 scenario files, 5 scenarios)

FileScenariosUse Cases
invoice-generation.json1CRM deal closed → create QuickBooks invoice → log to tracking sheet
payment-reconciliation.json1Match Stripe payments to QuickBooks invoices, flag unmatched for review
expense-receipt-processor.json1Scan Gmail for receipts, extract amounts, categorize, log to QuickBooks
overdue-invoice-reminders.json1Graduated reminder emails (gentle → firm → final) with Slack alerts
revenue-dashboard-sync.json1Weekly Stripe revenue aggregation, MRR/ARR calculation, dashboard sync

Operations (5 scenario files, 5 scenarios)

FileScenariosUse Cases
standup-collector.json1Send async standup prompts via Slack DM, aggregate responses
approval-workflow.json1Multi-level approval routing via Slack with SLA tracking
onboarding-checklist.json1New hire → Asana project with templated tasks → welcome email → team announcement
incident-response.json1Classify severity, assign on-call, create incident record, alert via Slack
scheduled-report-generator.json1Pull from multiple sources, compile executive report, email + Slack

Total: 24 scenario files containing 40 scenario blueprints

Quick Start

Importing a Blueprint

1. Open Make.com and go to ScenariosCreate a new scenario

2. Open the desired .json file from this library

3. Follow the module flow to build your scenario — each JSON describes every module, its parameters, mapper fields, filters, and error handlers

4. Configure your connections (each module will prompt you to authenticate the relevant app)

... continues with setup instructions, usage examples, and more.

📄 Content Sample guides/data-store-usage.md

Data Store Usage Guide

Make.com Data Stores are lightweight key-value databases built into the platform. Many scenarios in this library use data stores to track state between runs — abandoned cart status, drip campaign progress, approval records, loyalty points, and more.

This guide covers creation, schema design, and common patterns.

What Data Stores Solve

Make.com scenarios are stateless by default — each run processes new data without remembering what happened in previous runs. Data stores add memory:

  • Deduplication: "Have I already processed this item?"
  • Multi-step workflows: "Which step is this contact on in the drip sequence?"
  • Accumulation: "What's this customer's total loyalty points?"
  • Coordination: "Has an approver responded to this request?"

Creating a Data Store

1. In Make.com, go to Data stores in the left sidebar

2. Click Add data store

3. Enter the name — use the exact name referenced in the scenario (e.g., abandoned_cart_tracking)

4. Set the data structure — see schema definitions below

5. Set the data store size — the free tier includes 1 MB storage; most tracking use cases fit easily

Defining the Schema

When you create a data store, you define its fields (called a "data structure"):

1. Click Add to create a new data structure

2. Name it (e.g., "Abandoned Cart Schema")

3. Click Generator and paste a sample JSON object to auto-detect fields, OR manually add fields:

  • Name: Field identifier (e.g., checkout_id)
  • Type: Text, Number, Date, Boolean, Collection, Array
  • Required: Whether the field must have a value
  • Default: Value to use if not provided

Example: Creating the Abandoned Cart Tracking Store

Name: abandoned_cart_tracking

FieldTypeRequiredNotes
checkout_idNumberYesUsed as the record key
emailTextYesCustomer's email address
cart_valueNumberNoTotal cart value in dollars
first_email_sentBooleanYesDefault: false
second_email_sentBooleanYesDefault: false
first_sent_atDateNoWhen the first reminder was sent
second_sent_atDateNoWhen the discount follow-up was sent

... and much more in the full download.

Buy Now — $29 Back to Products