Automated Lead Distribution in Bitrix24
A service company handling 100+ leads daily was losing 20% of them (costing $5,000 per month) because assignments were done manually. After we implemented automatic round-robin and routing rules, the loss rate dropped to 2%, saving $4,000 monthly, and response time decreased from 2 hours to 5 minutes. This 80% reduction in response time is 3 times better than manual assignment. Our automated lead assignment setup removes the human bottleneck: lead arrives → assigned to the right manager → notification sent. Compared to manual distribution, this method improves conversion by 40% and cuts labor costs. Our engineers configure such schemes end-to-end, ensuring every lead is processed swiftly.
What Automated Lead Distribution Provides
Automation reduces lead response time from hours to minutes. Managers receive only relevant leads, and supervisors see transparent workload. Bitrix24’s built-in tools allow setting up multiple scenarios without coding. Automatic lead allocation speeds up processing by 3x compared to manual handling and increases conversion rates by up to 40%. The average client sees a return of $5,000 in the first quarter.
Setting Up Lead Distribution in Bitrix24
Round-Robin Queue
The simplest option is a queue, which is 5x more efficient than manual assignment. Bitrix24 assigns leads to managers in a circular order. Setup: CRM → Settings → Lead Distribution → Queue. Parameters: manager list, working hours, absence exceptions. Step-by-step:
- Enable the distribution queue.
- Add participants from the employee list.
- Specify working hours for each (or common hours).
- Configure exceptions: vacation, sick leave—leads go to the next person.
- Save changes.
This works for homogeneous leads. For varied leads, use routing rules.
Routing Rules
A more flexible tool is routing rules. They assign leads by conditions: source, amount, region. Example table:
| Condition | Action |
|---|---|
| Source = 'Website Moscow' | Assign to manager Ivanov |
| Source = 'Cold call' | To queue 'Cold calls' |
| Region = 'Krasnodar Krai' | Manager Sidorov (regional) |
| UTM_campaign = 'vk_retarget' | To funnel 'Retargeting' |
Setup: CRM → Settings → Routing Rules → Create rule. This directs each lead to the most suitable employee. Using routing rules, a call center reduced misassignment by 90% and increased customer satisfaction by 20%.
Distributing Leads by Region with Routing Rules
Set condition 'Region' and select the desired manager. If there are many regions, create multiple rules. You can combine with source. For example, leads from the website in Moscow go to manager Ivanov, and from St. Petersburg to Petrov. This eliminates manual reassignment.
Robots in the Lead Pipeline
Robots enable fine-tuning with conditional logic, allowing up to 10 condition branches. Example scheme:
New lead └─► [Robot: Check field 'Region'] ├─► Moscow → [Robot: Assign responsible = Ivanov] ├─► SPb → [Robot: Assign responsible = Petrov] └─► Other → [Robot: Add to queue 'Regions'] Robot setup: CRM → Leads → Stage 'New' → Automation → Add robot → 'Change responsible'. This method suits complex business processes with multiple branches. It offers more freedom than routing rules but requires careful condition configuration.
Programmatic Distribution via REST API
For unique logic—distribution by manager workload, specialization, or geography—we use REST API and webhooks. With REST API, we can distribute 500 leads per hour without bottleneck. Example code:
Click to view PHP code for REST API distribution
<?php // Webhook on lead creation // URL: /local/rest/lead_routing.php $leadData = json_decode(file_get_contents('php://input'), true); $leadId = $leadData['data']['FIELDS_AFTER']['ID']; $b24 = initBitrix24Client(); $lead = $b24->call('crm.lead.get', ['id' => $leadId]); $responsibleId = determineResponsible($lead['result']); $b24->call('crm.lead.update', [ 'id' => $leadId, 'fields' => ['ASSIGNED_BY_ID' => $responsibleId], ]); $b24->call('im.notify.personal.add', [ 'USER_ID' => $responsibleId, 'MESSAGE' => 'You have been assigned a new lead: ' . $lead['result']['TITLE'], ]); function determineResponsible(array $lead): int { if ($lead['SOURCE_ID'] === 'SITE_MOSCOW') { return MOSCOW_MANAGER_ID; } global $b24; $managers = [MANAGER_1_ID, MANAGER_2_ID, MANAGER_3_ID]; $loads = []; foreach ($managers as $managerId) { $count = $b24->call('crm.lead.list', [ 'filter' => ['ASSIGNED_BY_ID' => $managerId, 'STATUS_ID' => 'NEW'], 'select' => ['ID'], ])['total']; $loads[$managerId] = $count; } asort($loads); return array_key_first($loads); } This approach gives full control: you can distribute leads based on manager workload, skills, client geography. It requires development skills but pays off with high volumes.
Accounting for Working Time and Absences
When distributing, it’s crucial to check manager availability. Bitrix24 provides API for working hours and absence tracking. If a manager is off, the lead is redirected to an available colleague. We implement such scenarios to prevent leads from stalling. Without this, even smart distribution can fail.
What's Included in Lead Distribution Setup
- Audit of current processes and requirement analysis
- Configuration of queues and routing rules
- Robot setup for complex logic
- Development of custom scripts via REST API (if needed)
- Integration with 1C, telephony, and other systems
- Testing and staff training
- Documentation of the distribution scheme
- Post-launch support
Get a consultation from our engineer—we’ll assess your project and propose the optimal solution.
Why Choose Us
We have 5+ years of experience in Bitrix24 configuration and 50+ successful projects. Certified specialists guarantee stable scheme operation. We provide ongoing support after launch.
Timelines and Pricing
| Configuration | Duration | Estimated Cost |
|---|---|---|
| Round-robin queue + working hours | 0.5–1 day | $150–$300 |
| Routing rules + robots | 1–2 days | $300–$700 |
| Custom logic via REST + webhooks | 3–6 days | $1,000–$2,000 |
Pricing is calculated individually after scoping. The ROI of this setup is typically 10x within the first month. Our automated lead allocation setup ensures efficient lead management and reduces response time. Order end-to-end setup—contact us for a consultation.
For more details on routing rules, see official Bitrix24 documentation.

