How to Automate SMS Notifications in Belarus Using life:) and Bitrix24

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
How to Automate SMS Notifications in Belarus Using life:) and Bitrix24
Medium
~1-2 weeks
Frequently Asked Questions

Our competencies:

Development stages

Latest works

  • image_website-b2b-advance_0.webp
    B2B ADVANCE company website development
    1359
  • image_bitrix-bitrix-24-1c_fixper_448_0.webp
    Website development for FIXPER company
    947
  • 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
    832
  • 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

A manager opens a deal card in Bitrix24, copies the client's number, switches to the life:) SMS interface, pastes the number, types the text, and sends. Delivery status—somewhere in the life:) cabinet; the CRM doesn't know. No automatic notifications based on funnel stages. We solve this with direct integration: sending from CRM, automation via robots, returning delivery statuses to the card. Our experience shows that after setup, companies save up to 80% of managers' time and eliminate manual copy-paste errors. This typically translates into savings of $200–$500 per month per manager, depending on volume. Get a consultation on your configuration—we'll choose the optimal protocol and robot scheme. We guarantee project delivery within agreed timelines and provide a 30-day support period for all integrations.

How to Connect life:) SMS to Bitrix24 via messageservice?

life:) (brand of Turkcell, operator #3 in Belarus) provides an SMS gateway through two protocols. HTTP API—a REST interface for sending SMS via HTTP/HTTPS requests with JSON payload. Simple integration: one request, one message. Suitable for transactional SMS and small volumes (up to a few hundred messages per day). SMPP (Short Message Peer-to-Peer)—a binary protocol with a persistent TCP connection using PDU frames. Advantages: higher sending speed (up to 100+ SMS/sec), built-in delivery reports over the same connection, lower latency. Suitable for bulk mailings. The choice depends on volume:

Criteria HTTP API SMPP
Volume Up to 500 SMS/day From 500 SMS/day
Speed 5–10 SMS/sec 50–100+ SMS/sec
Delivery reports Callback URL Inline over connection
Infrastructure Simple handler (PHP/Node.js) SMPP client (daemon, persistent process)
Implementation cost Lower (~$200) Higher (~$1500)

For most implementations we use HTTP API. We connect SMPP for bulk mailings via CRM marketing when a single campaign sends 5000+ messages.

Connection via the messageservice module:

messageservice.sender.add({
  CODE: "life_sms_by",
  TYPE: "SMS",
  HANDLER: "https://your-domain.com/handler/life-sms.php"
})

The handler receives requests from B24 and translates them to the life:) API:

  1. Gets POST from B24: message_to, message_body, message_id.
  2. Normalizes the number to format +375XXXXXXXXX (life:) API requires international format).
  3. Sends request to life:) API: endpoint, authorization data, number, text, Sender ID.
  4. Gets response: message ID, queue status.
  5. Saves mapping message_id (B24) ↔ msg_id (life:)).
  6. Returns confirmation to Bitrix24.
Example handler (PHP)
<?php
// life-sms.php
$params = json_decode(file_get_contents('php://input'), true);
$phone = normalizePhone($params['message_to']);
$response = sendSms($phone, $params['message_body'], 'YourSenderID');
storeMapping($params['message_id'], $response['msg_id']);
echo 'OK';

Why is Registering a Sender ID Important?

life:) Belarus requires registration of an alphanumeric sender name. According to official life:) SMS documentation, Sender ID is mandatory for sending. The procedure:

  • Application through a life:) manager or corporate client account.
  • Name—up to 11 Latin characters. Cyrillic is not supported in Sender ID.
  • Attachments: copy of company registration certificate, description of mailing purpose.
  • Approval time—5 to 10 business days.
  • Multiple names can be registered: one for transactional, another for marketing SMS.

Without a registered Sender ID, the life:) API rejects the send request. We ensure correct application filing and support at all stages.

Receiving Delivery Reports from life:) SMS

life:) supports delivery reports (DLR) in two ways:

Via HTTP callback:

  • In life:) settings, specify a handler URL.
  • When status changes, life:) sends POST with msg_id and status.
  • The handler finds the related message_id in B24 and updates the status.

Via SMPP (when using SMPP protocol):

  • DLR arrives over the same SMPP connection as a deliver_sm PDU.
  • Parsing: id, stat (DELIVRD, EXPIRED, UNDELIV, REJECTD).
  • Faster than HTTP callback—status arrives almost instantly.

life:) SMS delivery report statuses:

Status Description In B24
DELIVRD Delivered Delivered
EXPIRED Delivery expired Not delivered
UNDELIV Unreachable Not delivered
REJECTD Rejected Error
ACCEPTD Accepted, pending delivery Sent

Without DLR processing, all messages in the CRM show as "Sent", even if the subscriber was unreachable for a week.

Belarus Phone Number Format

The handler normalizes numbers from the B24 database:

  • +375251234567 → unchanged
  • 80251234567+375251234567
  • 375 25 123-45-67+375251234567
  • 25 1234567+375251234567

Belarus mobile operator codes: 25, 29, 33, 44—life:) historically uses 25 and 29 (partially). SMS via the life:) gateway go to numbers of any operator—not just life:).

Setting Up CRM Robots for Automatic SMS

Typical scenarios:

Sales funnel:

  • New lead → SMS "{NAME}, your request has been accepted. We'll contact you within 15 minutes."
  • Deal "Awaiting payment" → SMS with payment link (ERIP or bank acquiring)
  • Deal closed → SMS with thanks

Service and reminders:

  • Appointment booking → reminder one day before
  • Missed call → automatic SMS

CRM field substitution in the text: #CONTACT_NAME#, #DEAL_TITLE#, #DEAL_UF_XXX#.

Cost Optimization

  • Message length: Cyrillic—70 characters per segment (67 with concatenation). Every extra character after 70 triggers a second segment. Templates should fit within 70 characters.
  • Duplicate filtering: add a condition in the robot—send only if the field UF_CRM_SMS_SENT is empty.
  • Number validation: before bulk mailing, run the database through normalization and remove invalid numbers.

Implementation Timeline and Costs

Scope What's Included Time Typical Cost
Basic (HTTP API) Connect life:) SMS, manual sending, one robot 3–5 days $200
Standard 3–5 robots, callback DLR, number normalization 1 week $500
Extended (SMPP) SMPP client, bulk mailings, inline DLR, analytics 2–3 weeks $1500

What's Included in the Work

  • Register life:) SMS as a provider via messageservice.sender.add
  • Handler for B24 → life:) SMS API (HTTP or SMPP)
  • Assistance with Sender ID registration in life:)
  • Normalization of Belarusian numbers
  • Delivery report processing (callback or SMPP inline)
  • CRM robots for transactional SMS by funnel stages
  • Bulk mailings via CRM marketing
  • SMS templates with CRM field substitution
  • Testing: manual send, robots, DLR, bulk mailing on a test segment

Our experience—over 30 successful Bitrix24 integrations with SMS providers. We are a certified Bitrix24 partner with proven expertise. Order automatic notification setup—it takes from 3 days. Cost is calculated individually based on the chosen protocol and number of scenarios. Contact us to discuss the details of your project.

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.