Bitrix24 icon

Bitrix24

Interact with Bitrix24 CRM and business platform

Actions290

Overview

This node integrates with the Bitrix24 CRM and business platform, allowing users to interact with various CRM entities such as contacts, deals, leads, companies, quotes, invoices, products, and activities. Specifically, the "CRM" resource with the "Get" operation enables retrieving a single record by its ID from one of these entity types.

Common scenarios where this node is beneficial include:

  • Fetching detailed information about a specific contact or lead for follow-up actions.
  • Retrieving deal data to update sales pipelines or generate reports.
  • Accessing company or invoice records to synchronize with other systems.

Practical example:

  • A user wants to get the details of a contact with a known ID to enrich customer data in another application.
  • Another use case is fetching a deal record to check its current stage before triggering an automation workflow.

Properties

Name Meaning
Authentication Method to authenticate with Bitrix24: OAuth2 (recommended), Webhook (simpler), or API Key.
Entity The type of CRM entity to work with. Options: Contact, Deal, Lead, Company, Quote, Invoice, Product, Activity.
Record ID The unique identifier of the record to retrieve within the selected entity type.

Output

The node outputs JSON data representing the retrieved CRM record. The structure of the json output field corresponds directly to the fields of the selected entity type in Bitrix24, including standard and custom fields.

If the node supports binary data output (not indicated explicitly here), it would typically represent attachments or files related to the CRM record, but this node primarily returns JSON data.

Example output snippet (conceptual):

{
  "ID": "123",
  "NAME": "John Doe",
  "EMAIL": "john.doe@example.com",
  "PHONE": "+1234567890",
  ...
}

Dependencies

  • Requires authentication credentials configured in n8n for Bitrix24, which can be OAuth2, webhook URL, or API key.
  • Relies on Bitrix24's REST API endpoints to fetch CRM data.
  • No additional external dependencies beyond Bitrix24 API access.

Troubleshooting

  • Common issues:

    • Invalid or expired authentication credentials leading to authorization errors.
    • Incorrect or non-existent Record ID causing "record not found" errors.
    • Network connectivity problems preventing API calls.
  • Error messages and resolutions:

    • "Failed to load CRM fields": Indicates issues fetching metadata; verify API access and permissions.
    • "record not found" or similar: Check that the Record ID is correct and exists in the specified entity.
    • Authentication errors: Reconfigure credentials ensuring they have sufficient permissions.
  • To handle failures gracefully, the node supports continuing on fail, returning error details in the output JSON.

Links and References

Discussion