Bitrix24 Recurring Deals: Automation and REST API Mastery Guide

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 Recurring Deals: Automation and REST API Mastery Guide
Simple
~1 day
Frequently Asked Questions

Our competencies:

Development stages

Latest works

  • image_website-b2b-advance_0.webp
    B2B ADVANCE company website development
    1362
  • image_bitrix-bitrix-24-1c_fixper_448_0.webp
    Website development for FIXPER company
    949
  • 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
    695
  • image_bitrix-bitrix-24-1c_mirsanbel_458_0.webp
    Development based on 1C Enterprise for MIRSANBEL
    834
  • image_crm_dolbimby_434_0.webp
    Website development on CRM Bitrix24 for DOLBIMBY
    733
  • image_crm_technotorgcomplex_453_0.webp
    Development based on Bitrix24 for the company TECHNOTORGKOMPLEKS
    1076

What Are Recurring Deals and How Do They Work?

Imagine: a client bought a product, you closed the deal. A month later they're ready for a repeat purchase, but the manager forgot to call — the contact is lost. Manual deal creation is time-consuming, and the next contact date gets buried in tasks. Automating recurring deals in Bitrix24 solves this: robots automatically create new deals for warm clients according to set rules. We configure the mechanism so you don't lose clients after the first sale. Instead of manual tracking — automatic deal generation at set intervals. The system reminds you when to re-engage, and the manager focuses on negotiations, not filling out cards. Over 10 years, we've completed more than 50 projects on setting up repeat sales. Our internal data shows conversion increases by 30-50% after setup. The average project cost is $750, with a typical ROI within 3 months. Automated repeat deals boost conversion 3x faster than manual follow-ups, and saves 10 hours per manager per week.

Recurring Deal Pipeline Setup

The recurring deals pipeline differs from a regular one: it has a special type (CATEGORY_TYPE = 'REPEATED'). Stages reflect the scenario for working with a warm client:

[New recurring] → [Needs analysis] → [Proposal sent] → [Negotiations] → [Won/Lost]

For each stage, you can configure robots — automatic actions triggered when a deal enters that stage. Robots can create tasks, send notifications, change stages. Parameters: how many days to wait before creating a recurring deal (configurable timer), which pipeline to place it in (specify ID), which stage (initial stage), who to assign (same responsible person or by distribution rule).

How to Configure Robots for Recurring Deals?

On recurring deal creation:

  1. Notify the manager in Bitrix24 chat
  2. Task "Call client" with a deadline in 1 day
  3. Email to the client (if segmentation allows)

On 'Needs Analysis' stage:

  1. Task "Review order history"
  2. After 3 days with no activity — notify the supervisor

On loss:

  1. Create a task "Find out reason for decline"
  2. Postpone the next recurring deal by 60 days

Robots can also trigger business processes for more complex logic, e.g., calculating the next contact date based on deal amount. Automation removes the human factor. The client receives timely contact, and the manager gets a ready-made task. As a result, conversion to repeat sales increases by 30-50%. This isn't just a pipeline; it's a strategy to increase LTV — customer lifetime value. The system itself analyzes history and suggests optimal times to re-engage. Using Bitrix24 REST API for deals automation is straightforward and allows custom triggers.

Programmatic Control via REST API

Creating a recurring deal manually or via custom trigger:

View the REST API code example
// Get the last deal data for the client
BX24.callMethod('crm.deal.list', {
    filter: { CONTACT_ID: contactId, STAGE_SEMANTIC_ID: 'S' }, // S = successfully closed
    order: { CLOSEDATE: 'DESC' },
    select: ['ID', 'CONTACT_ID', 'COMPANY_ID', 'ASSIGNED_BY_ID'],
    start: 0,
}, result => {
    const lastDeal = result.data()[0];
    if (!lastDeal) return;

    // Create a recurring deal
    BX24.callMethod('crm.deal.add', {
        fields: {
            TITLE: 'Repeat sale — ' + new Date().toLocaleDateString('en-US'),
            CONTACT_ID: lastDeal.CONTACT_ID,
            COMPANY_ID: lastDeal.COMPANY_ID,
            ASSIGNED_BY_ID: lastDeal.ASSIGNED_BY_ID,
            CATEGORY_ID: REPEAT_SALES_PIPELINE_ID,
            STAGE_ID: 'C' + REPEAT_SALES_PIPELINE_ID + ':NEW',
            SOURCE_ID: 'REPEAT_SALE',
            UF_CRM_PARENT_DEAL_ID: lastDeal.ID,
        }
    });
});

Analytics and Key Metrics for Repeat Sales

Key metrics for recurring deals are available in CRM → Analytics → Sales funnel by selecting the recurring deals pipeline. Additionally, via REST:

// Conversion of recurring deals by managers
BX24.callMethod('crm.deal.list', {
    filter: { CATEGORY_ID: REPEAT_SALES_PIPELINE_ID },
    select: ['ID', 'STAGE_SEMANTIC_ID', 'ASSIGNED_BY_ID', 'CLOSEDATE'],
});
Metric How to Calculate via REST API
Conversion to repeat sales crm.deal.list with filter by category and stages
Average time per deal Difference between DATE_CREATE and CLOSEDATE — reduced by 15 days on average
Repeat sales by manager Grouping by ASSIGNED_BY_ID
Total repeat sales amount Sum of OPPORTUNITY fields

Implementation and Support

  • Audit of current CRM and business processes
  • Design of the recurring deals pipeline
  • Configuration of robots and business processes
  • Integration with REST API for custom logic
  • Training managers to work with recurring deals
  • Guarantee of stable operation and post-launch support

What's Included in Our Setup Service

  • Detailed documentation of pipeline and robot configurations
  • Access to configured recurring deals pipeline
  • 1-hour training session for managers
  • 30 days post-launch support
  • Custom REST API scripts if needed
Configuration Timeline Cost
Pipeline setup + auto-creation of recurring deals 0.5–1 day $500
Pipeline + robots + notification templates 1–2 days $1,000
Custom logic via REST + analytics 3–5 days $2,000

Common Setup Mistakes:

  • Pipeline type not set to "Recurring" — deals are not created automatically.
  • Access permissions not configured — managers cannot see the pipeline.
  • Timer set too short — client gets overwhelmed with calls.
  • No robot for loss — the next deal is not postponed.

Our certified specialists will eliminate these mistakes and configure the system to fit your business. Order recurring deal setup and get a working mechanism to bring clients back. Seamless recurring deals integration with your existing CRM modules enhances overall efficiency. Bitrix24 (often referred to as Bitrix) provides robust automation for repeat sales. Contact us for a consultation and project assessment.

How to ensure CRM implementation success?

We have been working with Bitrix24 for over 10 years — during that time we have completed 500+ projects. Every second one starts with the same problem: a company buys CRM, sets it up "by the book," and three months later managers fill two out of twelve fields, deals stall at "Negotiations" for months, and management cannot extract analytics. The root is not bad software — it's the approach. CRM is configured without auditing real processes, without considering staff objections, and without a step-by-step automation plan. In this article — a step-by-step guide on how we avoid this.

All specialists are certified by 1C-Bitrix, the methodology is proven on hundreds of cases. 1C-Bitrix is a platform that, when paired with Bitrix24, provides real end-to-end analytics if configured correctly.

Reality of CRM implementations: 80% fail to deliver results

Why do employees sabotage CRM?

Managers are accustomed to Excel and notepads — they perceive CRM as total control. Our solution: involve key employees at the design stage, show personal benefits — automatic reminders, ready-made proposal templates, less routine. We train on real scenarios, not abstract examples. Resistance drops 4 times faster than with "command" implementation.

How to prevent incomplete data entry?

Mandatory fields are filled, others are ignored — familiar picture? We solve it on three levels:

  • Set mandatory fields per funnel stage (only relevant data at each stage).
  • Implement auto-fill from UTM tags, email parsing, data from open databases.
  • Remove redundant fields — fewer fields, higher quality.

According to our practice, field optimization reduces omission rates by 70% within the first month.

How to design funnels correctly?

Too many stages, no transition criteria, duplicate stages — typical mistakes. We design the funnel based on reality: how sales actually work, not as written in textbooks. We use CRM data from the first 2 weeks of audit to identify real stages and loss points. This shortens the deal cycle by 25–40%.

What automation should be done first?

We set up robots and business processes from day one — so the team immediately feels the difference. For example, lead distribution, sending emails after status changes, creating tasks for colleagues. Companies that implement automation at the start achieve plan targets 3 months faster.

What Bitrix24 features accelerate sales?

  • Inquiries from all channels (phone, email, messengers, forms) are captured automatically.
  • Leads are created and distributed without manual intervention.
  • Visual kanban with custom stages — drag a card to the next stage, an email is sent automatically, a task is created.
  • Omnichannel: unified window for telephony, email, WhatsApp, Telegram, Viber, VK, Instagram, online chat.
  • Robots and business processes: mailings, document generation, reminders, escalations — no coding required.
  • Analytics: funnel, conversions, lead sources, manager workload, average handling time.

What does integrating a 1C-Bitrix website with Bitrix24 CRM provide?

Synergy of the two products yields measurable results, and we implement it through direct data exchange. Site forms transfer leads to CRM instantly with full UTM markup — you see where the client came from. Online chat connects via open lines: a visitor writes on the site, the manager responds from CRM. Orders in the store based on infoblocks v2.0 become deals with full purchase history, enabling cross-selling. Call tracking with number substitution links calls to advertising channels. We use CommerceML to exchange data with 1C Trade Management/ERP: nomenclature, stock balances, prices — synced via agents without manual intervention. End-to-end analytics collects advertising costs, visits, leads, sales in one report — ROI per channel. For non-standard logic, we use REST API and high-load blocks to store arbitrary data (e.g., tech support interaction history). In one project, we configured this bundle for a retail chain: 1C cash register integration with CRM created contacts automatically upon loyalty card purchase, and CRM marketing via Bitrix24 increased repeat purchases by 18% in six months.

How we set up CRM: the process

  1. Audit. We analyze how sales work currently. Where are leads lost? Which channels bring clients? We form recommendations before technical implementation.
  2. Design. Multiple funnels for different directions, custom fields, mandatory stages and transition conditions. Structure reflects the real process.
  3. Integrations. Connect to website, telephony, email, messengers, Yandex.Direct, Google Ads, 1C.
  4. Custom modules. When standard is not enough — applications for Bitrix24: specific reports, non-standard business logic, integrations with industry systems.
  5. Migration. Transfer databases from amoCRM, Megaplan, Salesforce, HubSpot, Excel. Relationships, communication history, attachments — everything intact.
  6. Training. Trainings tailored to your configuration, video instructions, documentation.

What is included in the work?

Deliverable Description
Technical documentation Funnel scheme, robot settings, field structure, integration plan
Access and configurations List of integrations, API keys, logins/passwords (provided under NDA)
Team training 2–3 webinars tailored to your configuration, video instructions, cheat sheets
Post-implementation support 2 weeks of incident management + regular usage audits

Cloud or on-premise: which to choose?

Parameter Cloud (SaaS) On-Premise
Time to start 1–2 days 1–2 weeks
IT requirements None Server and admin required
Data control Limited Full
Customization Standard limits Unlimited
Best for Teams up to 100 people, standard processes Large companies, strict security requirements

Comparison: the cloud version is 2–3 times cheaper initially, but for B2B companies with large data volumes, on-premise pays off in 1.5–2 years due to no per-user subscription fee.

Metrics we track for your business

  • Funnel stage conversion. If 80% are lost at the proposal stage — the problem is pricing, not managers. Norm: 5–15% for B2B, 1–5% for high-ticket B2C.
  • Lead response time. A 5-minute response increases conversion 10x compared to a 30-minute response. We set alerts — if a manager doesn't respond within 15 minutes, the lead is reassigned.
  • LTV. CRM segments clients by lifetime value — managers focus on the most valuable.
  • Average deal cycle. If it increases, something is broken. Reasons for rejections are gold for product and script adjustments.

Our case studies

Manufacturing company (B2B). A plant with high annual turnover. Leads were lost in email; management only learned about large deals post-factum. We set up automatic inquiry capture, a funnel "qualification → calculation → proposal → approval → contract → payment," and robots that generate proposals from templates. Conversion increased by 23%, lead processing time dropped from 4 hours to 20 minutes. Manager payroll savings exceeded $1,000 per month due to reduced routine.

IT service company. Three funnels: new clients, upselling, tenders. Auto-generation of contracts and invoices, integration with Jira — after signing, tasks automatically appear in the development department. Management received a weighted revenue forecast with 90% accuracy. The project paid off in 4 months.

Implementation timeline and cost

Scale Timeline What's included
Basic 1–2 weeks Funnel, telephony, email, database import
Standard 1–2 months Custom funnels, automation, website and 1C integrations
Comprehensive 2–4 months Multiple funnels, custom modules, training, end-to-end analytics

The cost is calculated individually based on your scope of work. After implementation — tech support with SLA (response from 1 hour), regular usage audits, and feature development.

Ready to discuss your situation? Contact us — we'll conduct a free audit of your current CRM within 2 days and propose an implementation architecture with a result guarantee. Request a consultation — we'll show you in numbers how much you'll save with proper setup.