Bitrix24-Make Integration Setup

Our company is engaged in the development, support and maintenance of Bitrix and Bitrix24 solutions of any complexity. From simple one-page sites to complex online stores, CRM systems with 1C and telephony integration. The experience of developers is confirmed by certificates from the vendor.
Showing 1 of 1All 1626 services
Bitrix24-Make Integration Setup
Medium
~1-2 weeks
Frequently Asked Questions

Our competencies:

Development stages

Latest works

  • image_website-b2b-advance_0.webp
    B2B ADVANCE company website development
    1361
  • image_bitrix-bitrix-24-1c_fixper_448_0.webp
    Website development for FIXPER company
    948
  • image_bitrix-bitrix-24-1c_development_of_an_online_appointment_booking_widget_for_a_medical_center_594_0.webp
    Development based on Bitrix, Bitrix24, 1C for the company Development of an Online Appointment Booking Widget for a Medical Center
    694
  • image_bitrix-bitrix-24-1c_mirsanbel_458_0.webp
    Development based on 1C Enterprise for MIRSANBEL
    833
  • image_crm_dolbimby_434_0.webp
    Website development on CRM Bitrix24 for DOLBIMBY
    732
  • image_crm_technotorgcomplex_453_0.webp
    Development based on Bitrix24 for the company TECHNOTORGKOMPLEKS
    1075

Bitrix24 Integration with Make (Integromat) Setup

Standard integrations via Zapier handle simple links, but when branching by deal amount, processing an order array, or retrying on API error is needed, the linear model breaks. Make (formerly Integromat) works differently: visual scenarios with modules, routers, iterators, and error handling. For Bitrix24, this provides flexibility that simpler iPaaS solutions lack. We configure such integrations turnkey: we evaluate your project in 1 day, assemble the scenarios, and hand over documentation. Our experience includes over 50 complex integrations, and we guarantee stable 24/7 scenario operation.

Why Make is Better for Bitrix24 than Zapier

Make has a full-fledged module for Bitrix24 with extensive API coverage. Unlike Zapier, you can build scenarios with branching (Router), process arrays via Iterator/Aggregator, and handle errors flexibly. Additionally, Make is cheaper for complex scenarios: each step is one operation, not a separate "task". For example, a scenario with 10 modules on the Core plan costs a fraction of a cent per run, while Zapier would charge 10 tasks.

Bitrix24 Module in Make

Triggers (Watch):

  • New/updated leads, deals, contacts, companies
  • New tasks and task comments
  • Smart process items (via universal HTTP module)
  • Incoming webhooks from Bitrix24

Actions:

  • CRUD operations for all CRM entities
  • Task management: create, update, assign, complete
  • Timeline management: add comments and activities
  • Upload and download files from Bitrix24 Drive
  • Call any REST API method via Make an API Call

The last point is critical: if the standard module action doesn't cover the need, Make an API Call allows calling any REST API method with arbitrary parameters.

Scenarios with Branching (Router)

Router is a key difference of Make from linear iPaaS. One trigger launches several parallel routes with conditions.

Example: processing a new deal in Bitrix24.

[New Deal] → [Router]
                ├── Amount > 100,000 → [Create project in Planfix] → [Notify director via Telegram]
                ├── Amount 10,000–100,000 → [Task to manager in Bitrix24] → [Row in Google Sheets]
                └── Amount < 10,000 → [Automatic email to client]

Each branch executes independently. Conditions are set via filters on connections between modules.

Working with Arrays (Iterator + Aggregator)

Bitrix24 CRM entities often contain arrays: deal product items, multiple contact phones, related items. Make processes them via:

  • Iterator — splits an array into individual items. Each item passes through subsequent modules separately.
  • Aggregator — collects results back into an array or a single record.

Example: a deal contains 5 product items. Iterator creates 5 iterations. Each checks product availability via 1C API. Aggregator collects results and updates the deal: "3 out of 5 items in stock."

How to Set Up Error Handling in Make?

Make provides built-in tools for error handling:

Directive What it does When to use
Ignore Skip the error, continue scenario Non-critical actions (notifications)
Resume Substitute default value and continue Missing data
Rollback Rollback all actions of the scenario Transactional operations
Commit Commit the performed actions, stop scenario Partial execution acceptable
Break Queue execution and retry later Temporary API errors (rate limit)

For Bitrix24, Break is especially useful: when exceeding the API limit (2 requests/sec), Make automatically queues the request and retries after a set interval.

Scheduling and Triggers

Make supports three scenario launch modes:

  • Scheduled — every N minutes. Minimum interval is 1 minute on paid plans. The Watch module checks if new records have appeared since the last run.
  • Instant — via webhook. Bitrix24 sends an event → Make processes immediately. Setup: outgoing webhook from Bitrix24 → scenario URL in Make.
  • On Demand — manual launch for testing or one-off tasks.

For production scenarios, we recommend instant triggers: no delay, no unnecessary API polls, operations consumed only on real events.

Data Mapping and Transformations

Each Make module accepts and returns structured data. Field mapping is done through a visual interface with access to variables from previous modules.

Built-in functions:

  • String: substring, replace, lower, upper, trim, split
  • Numeric: round, floor, ceil, max, min, arithmetic
  • Date: formatDate, parseDate, addDays, dateDifference
  • Array: map, get, length, slice, merge
  • Logical: if, switch, emptystring, ifempty

Example: the "Full Name" field from an external form needs to be split into "First Name" and "Last Name" for a Bitrix24 contact.

First Name: {{split(triggerData.fullName; " "; 1)}}
Last Name: {{split(triggerData.fullName; " "; 2)}}

Complex Scenarios for Bitrix24

1C to Bitrix24 Product Catalog Synchronization

  1. Webhook from 1C on product update.
  2. Search for product in Bitrix24 catalog by SKU (crm.product.list).
  3. Router: found → update, not found → create.
  4. Update prices in related deals.

Automatic Processing of Website Leads

  1. Webhook from site form.
  2. Deduplication: search for contact by email and phone.
  3. Create or update contact.
  4. Create deal in the appropriate pipeline (depends on lead type).
  5. Distribute to manager via round-robin using Make Data Store.
  6. Notify manager in Bitrix24 chat.

Daily Funnel Report

  1. Scheduled run at 9:00.
  2. Get all deals by stages (crm.deal.list with filter).
  3. Aggregator: count and sum per stage.
  4. Generate text report.
  5. Send to management Telegram channel.

Make Pricing

Make counts operations — each module in a scenario = 1 operation. A 5-module scenario consumes 5 operations per run. This is cheaper than Zapier for complex scenarios: in Zapier, each step is a separate "task."

Make Plan Operations/month Scenarios Minimum Interval
Free 1,000 2 15 min
Core 10,000 Unlimited 1 min
Pro 150,000 Unlimited 1 min + instant

For a typical Bitrix24 integration (10–20 scenarios, 100–500 events per day), the Core plan is sufficient. The cost per run of a 5-module scenario is 5 operations, which at the Core plan is a fraction of a cent.

What's Included in Integration Setup

  • Connecting Bitrix24 to Make via OAuth, setting up instant webhooks
  • Designing scenarios: process analysis, module selection, data mapping
  • Implementing branching, iterators, and aggregators for complex logic
  • Configuring error handling: strategy for each critical module
  • Optimizing operation consumption: merging modules, filters, conditional branches
  • Testing scenarios on real data and monitoring in production
  • Documentation: diagram of each scenario, logic description, contact persons

Contact us to get a timeline and cost estimate for your project. We provide free consultation on integration architecture. Get a consultation for your project — we will assess the timeline and choose the optimal integration architecture.

How a corporate portal on Bitrix24 solves the problem of information chaos?

Employees spend up to 2 hours a day searching for files, emails, and solutions. Tasks get lost in dozens of chats, approvals get stuck for weeks. The manager learns about missed deadlines only at a meeting. A corporate portal on Bitrix24 ties every message, document, and task to a single context. You get a transparent picture of work: who is working on what, which stages, where bottlenecks are. Wikipedia: Information silo describes how unorganized data reduces productivity – a portal cuts that loss by 60–70%.

We will evaluate your project for free – contact us to get the architecture in 2 days. A medium‑sized company typically saves 2.5 million rubles annually after deployment (based on our projects).

What does the portal offer in daily work and why is it better than messengers?

In messengers, information is unstructured – discussions get buried within a week. On the portal, every message is tied to a task, project, or document. Employees spend up to 30% of their work time searching for data (McKinsey). The portal reduces this time by 2–3 times thanks to structured repositories and full‑text search.

Communications. Activity stream, messenger, and video calls are tied to specific tasks. Any discussion can be found six months later – in a messenger it would be buried within a week.

Tasks and projects. Kanban, Gantt, checklists, dependencies, time tracking. Each employee's efficiency is visible in reports – no need to wait for a meeting.

Document flow. Approval routes through the business process designer: leave request → manager → HR → accounting. Electronic signature, versioning, deadline control. Integration with electronic document management (SBIS, Diadoc) via REST API.

HR. Onboarding of new employees, leave/travel requests, organizational structure, absence schedule. An employee knows where to go from day one.

Knowledge base. Bitrix24 wiki engine: regulations, instructions. Knowledge does not leave with departing employees.

Implementation example. For a manufacturing company with 320 employees, we deployed a portal with integration of 1C:SALARY AND HR MANAGEMENT and Active Directory in 4 months. Travel request approval time decreased from 3 days to 4 hours. Savings on employee idle time amounted to 1.5 million rubles per year. Managers receive automatic reports on department efficiency. Customer response time decreased by 20%. Portal payback period is 7 months.

How does integration with 1C and Active Directory accelerate HR management?

Integration with 1C:Enterprise via the b24connector module or custom REST handler: a leave request is approved on the portal through a business process and automatically enters 1C:SALARY AND HR MANAGEMENT for vacation pay calculation. Active Directory (SSO via the ldap module) – the employee account is created once in AD and synchronized to the portal, email, VPN. Upon dismissal, it is blocked everywhere. Manual account creation is eliminated, errors are minimized.

Types of corporate portals and key integrations

Type Purpose Key Feature
Intranet Internal communications and services News, phone directory (sync with AD), meeting room booking, IT requests via BP
HR portal HR management and development Profiles, KPI/OKR on custom HL blocks, training, electronic document flow
Knowledge portal Documentation and regulations Categorization, tags, ratings, subscriptions to updates
Extranet Work with partners and contractors Granular permissions via CGroup and extranet module, access without VPN
Holding portal Management of multi‑company structure Separate workspaces, consolidated reporting, cross‑cutting BPs

Additional integrations that deliver real value:

  • Email: Exchange via EWS API or IMAP, calendar synchronization, creating a task from an email.
  • IP telephony: Asterisk, Mango Office, Zadarma via REST API – calls from the portal, contact card, call recording.
  • Video conferencing: built‑in video calls or integration with Zoom/Teams via marketplace.
  • EDI: SBIS, Diadoc via REST API – fully electronic document flow with counterparties.

Security and compliance with Federal Law 152‑FZ

The portal contains personal data, financial reports, strategic plans. We guarantee protection:

  • role model via CGroup and section‑level permissions;
  • two‑factor authentication (OTP, Yandex.Key, SMS);
  • audit of all actions (b_event_log);
  • TLS encryption for transmission and disk encryption;
  • full compliance with Federal Law No. 152‑FZ "On Personal Data".

How is implementation carried out? Step‑by‑step plan

Stage Duration What we do
1. Audit 2–3 weeks Interviews, process analysis, architecture, integration plan
2. Setup and customization 3–6 weeks Structure, roles, BPs, branding (CSS template)
3. Integrations 2–4 weeks 1C, AD, email, telephony, EDI
4. Data migration 1–2 weeks Documents, directories, employees from current systems
5. Training and pilot 1–2 weeks Administrators, key users, pilot of 20–30 people
6. Scaling 2–4 weeks Connecting departments, fine‑tuning based on feedback
  1. Audit — we record current processes, measure time losses.
  2. Design — choose portal type, plan integrations.
  3. Implementation — configure business processes, permissions, interface.
  4. Test — pilot group tests scenarios, we fix issues.
  5. Launch — connect all employees, train, hand over documentation.

What you receive after implementation

  • Project documentation: architecture, integration scheme, business process diagrams.
  • Configured portal with all integrations (1C, AD, telephony, EDI).
  • Business process descriptions and instructions for administrators and users.
  • 30 days of technical support after launch.
  • Access to our knowledge base and migration scripts.

Post‑launch support: how to prevent the portal from becoming obsolete

After six months, many portals become abandoned. To avoid this, we offer packages with fixed SLA and a dedicated administrator. Performance monitoring, platform updates, user administration, development of new modules. Our team has over 10 years of experience and more than 50 implemented corporate portals on Bitrix24. We are a certified 1C‑Bitrix partner, guaranteeing quality and deadlines.

Mobile access. Native Bitrix24 app (iOS/Android) with push notifications, tasks, chats. Responsive web interface for extranet users (no app installation required). Offline access to documents and tasks, sync when connectivity is restored.

Order a turnkey corporate portal implementation

Schedule a free audit – we will evaluate your project, propose architecture, and give clear timelines. Get a comprehensive proposal and see that the portal pays for itself within the first six months. Contact us today.