Business Process Automation via Make (Integromat)

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Showing 1 of 1 servicesAll 2065 services
Business Process Automation via Make (Integromat)
Medium
~3-5 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Setting Up Business Process Automation with Make (Integromat)

Make (formerly Integromat) is an automation platform with a visual scenario editor. Unlike Zapier (linear chains), Make supports branching, iterations, data aggregation, and complex scenarios with multiple input streams.

When Make is Better Than Zapier

  • Processing arrays (iterating over orders list)
  • Conditional logic with multiple branches
  • Data aggregation from multiple sources before sending
  • Format transformation (JSON → CSV, XML → JSON)
  • More than 100 operations per month on free plan

Key Concepts

Module — a single action (trigger, search, create, update, delete, iterator, aggregator).

Scenario — a graph of modules connected by routes.

Bundle — a package of data passing through the scenario (one array element, one webhook).

Example Scenario: Order Processing

[Webhook trigger: POST /make/orders]
           │
[Router: branch by type]
    │              │
[Filter:      [Filter:
status=paid]  status=cancelled]
    │              │
[HTTP: POST    [HTTP: POST
 to shipping]   to refund API]
    │              │
[Email: send      [Slack: notify
 invoice]         manager]
    │
[Google Sheets:
 add row
 to report]

HTTP Module — Custom APIs

{
  "url": "https://api.example.com/orders",
  "method": "POST",
  "headers": [
    { "name": "Authorization", "value": "Bearer {{1.api_token}}" },
    { "name": "Content-Type", "value": "application/json" }
  ],
  "body": {
    "orderId": "{{1.id}}",
    "customer": {
      "email": "{{1.customer.email}}",
      "name": "{{1.customer.first_name}} {{1.customer.last_name}}"
    },
    "amount": "{{1.total_price}}",
    "currency": "RUB"
  }
}

Iterator + Aggregator

Processing items array from order:

[Webhook: new order with items[]]
           │
[Iterator: split items[] into bundles]
    │ (one items[i] at a time)
[Search: find product in DB by SKU]
    │
[HTTP: decrease warehouse stock]
    │
[Aggregator: collect results]
    │
[Email: final processing report]

Error Handling

Make provides an Error handler module — a special branch executed on error:

  • Ignore — skip error, continue
  • Break — stop current bundle, continue next
  • Retry — retry with delay (up to 5 times)
  • Rollback — revert changes in supporting modules

Scheduling

Make supports scheduled runs (from 1 minute on paid plans):

  • Daily reports: every day at 08:00 Moscow time
  • Weekly digests: every Monday
  • Status checks: every 15 minutes

Timeframe

5–8 module scenario with conditions — 1–2 days. Complex scenario with iterators, aggregators, and error handling — 3–5 days.