Custom Make Scenarios Development

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
Custom Make Scenarios Development
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

Developing Custom Scenarios in Make

Custom Make scenarios go beyond simple trigger → action: they include data transformation, conditional logic, multiple API calls, array iteration, and error handling.

Working with Data via Make Functions

Make has a built-in functional language for transformations:

# Strings
{{upper(1.name)}}                           → "IVAN"
{{substring(1.email; 0; indexOf(1.email; "@"))}}  → "ivan"
{{replace(1.phone; " "; "")}}              → "+79001234567"

# Numbers
{{round(1.price * 1.19; 2)}}               → 1190.00 (with 19% VAT)
{{formatNumber(1.total; 2; "."; " ")}}     → "1,234,567.89"

# Dates
{{formatDate(now; "DD.MM.YYYY HH:mm")}}    → "28.03.2026 14:30"
{{addDays(1.created_at; 30)}}              → date + 30 days

# Arrays
{{length(1.items)}}                        → 5
{{map(1.items; "product_id")}}             → [1, 2, 3, 4, 5]
{{sum(map(1.items; "price"))}}             → sum of prices

Scenario: Order Synchronization Between Systems

Task: sync new orders from WooCommerce to 1C via REST API every hour, with error notifications in Telegram.

[Schedule: every hour]
         │
[WooCommerce: Get Orders
 status=processing
 after={{addHours(now; -1)}}]
         │
[Router]
    ├── [Filter: order_count > 0]
    │         │
    │   [Iterator: for each order]
    │         │
    │   [HTTP POST: 1C API
    │    /api/orders/create]
    │         │
    │   [Router: by response status]
    │      ├── [201: update WooCommerce
    │      │   meta _synced_to_1c = true]
    │      └── [Error: Telegram
    │          orderId + error message]
    │
    └── [Filter: order_count == 0]
              │
        [ignore]

Custom App (HTTP + OAuth2)

For APIs without a built-in Make module — use custom HTTP with authentication:

// OAuth2 configuration
{
  "type": "oauth2",
  "clientId": "{{connection.clientId}}",
  "clientSecret": "{{connection.clientSecret}}",
  "authorizeUrl": "https://api.example.com/oauth/authorize",
  "accessTokenUrl": "https://api.example.com/oauth/token",
  "scope": "read write",
  "tokenPlacement": "header",
  "tokenHeaderName": "Authorization",
  "tokenHeaderPrefix": "Bearer "
}

Working with JSON and XML

// Parse JSON in Data Store scenario
// Incoming text: '{"orders": [{"id": 1}, {"id": 2}]}'

// Use Make's parseJSON function
{{parseJSON(1.response_body).orders}}

// For XML — use XML → JSON module
// Then work with object
{{2.root.order[].id}}

Data Store (Built-in Storage)

Make Data Store — simple key-value database for storing state between runs:

// Store last sync timestamp
// On each run:
1. Read last_sync_at from Data Store
2. Make request with after=last_sync_at
3. Process data
4. Write current time to Data Store

Handling Rate Limits

[HTTP Request]
     │
[Router: status 429]
     │
[Sleep: 60 seconds]  ←── (built-in wait module)
     │
[HTTP Request]      ←── retry

Timeframe

Medium complexity custom scenario (10–15 modules) — 2–4 days. Complex with Data Store, multiple APIs, and error handling — 1 week.