Bitrix24 icon

Bitrix24

Interact with Bitrix24 CRM and business platform

Actions290

Overview

This node interacts with the Bitrix24 CRM and business platform, specifically providing functionality to find duplicate records based on communication details such as phone numbers or email addresses. The "Find By Communication" operation under the "Duplicate" resource allows users to search for duplicates by specifying a communication type (phone or email) and the corresponding value.

Common scenarios where this node is beneficial include:

  • Identifying duplicate contacts or leads in Bitrix24 by their phone number or email address.
  • Cleaning up CRM data by detecting repeated entries before importing new data.
  • Automating workflows that require validation of unique communication channels.

For example, a user can input an email address to find all duplicate CRM entities associated with that email, helping maintain data integrity.

Properties

Name Meaning
Authentication Method of authenticating with Bitrix24: OAuth2 (recommended), Webhook (simpler), or API Key.
Communication Type Type of communication to search by; options are Phone or Email.
Communication Value The actual phone number or email address to search for duplicates.
Options Additional optional parameters:
- Entity ID Specific entity ID to exclude from the duplicate search (useful to avoid self-matching).
- Access Token Access token string for authentication (alternative to main credentials).

Output

The node outputs JSON data representing the results of the duplicate search. This typically includes information about the found duplicate entities matching the specified communication criteria.

If an error occurs during execution and the node is configured to continue on failure, the output will contain an error object with fields:

  • error: The error message.
  • resource: The resource name ("duplicate").
  • timestamp: The ISO timestamp when the error occurred.

No binary data output is indicated in the source code.

Dependencies

  • Requires valid authentication with Bitrix24 via one of the supported methods: OAuth2, Webhook URL, or API Key.
  • The node depends on Bitrix24's API endpoints to perform the duplicate search.
  • Proper configuration of credentials within n8n is necessary to authenticate API calls.
  • No additional external services beyond Bitrix24 are required.

Troubleshooting

  • Common Issues:

    • Invalid or expired authentication tokens may cause authorization failures.
    • Incorrect communication type or malformed communication value can lead to no results or errors.
    • Excluding an entity ID that does not exist or is incorrect might affect search accuracy.
  • Error Messages:

    • Errors returned from Bitrix24 API calls will be surfaced in the node's output if "Continue On Fail" is enabled.
    • Typical errors include authentication failures, invalid parameters, or network issues.
  • Resolutions:

    • Verify that the selected authentication method is correctly configured and active.
    • Ensure the communication value matches the expected format for phone numbers or emails.
    • Check network connectivity and Bitrix24 service status if API calls fail.

Links and References

Discussion