Bitrix24 icon

Bitrix24

Interact with Bitrix24 CRM and business platform

Actions290

Overview

The Bitrix24 node integrates with the Bitrix24 CRM and business platform, enabling users to perform various operations on different resources such as products, deals, contacts, and more. Specifically, for the Product resource with the Get Product operation, this node retrieves detailed information about a single product identified by its ID.

This node is beneficial in scenarios where you need to fetch up-to-date product data from Bitrix24 within an automated workflow. For example, you might use it to:

  • Retrieve product details before creating or updating related records.
  • Synchronize product information between Bitrix24 and other systems.
  • Display product data dynamically in reports or dashboards.

Properties

Name Meaning
Authentication Method of authenticating with Bitrix24:
- OAuth2 (recommended for production)
- Webhook (simpler but less secure)
- API Key
Product ID The unique identifier of the product to retrieve. This is a required string input.

Output

The node outputs JSON data representing the product's details as returned by the Bitrix24 API. The exact structure depends on the product fields defined in the Bitrix24 system but typically includes identifiers, names, descriptions, prices, and other product attributes.

If the node encounters an error during execution and "Continue On Fail" is enabled, it outputs a JSON object containing:

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

The node does not output binary data.

Dependencies

  • Requires connection to a Bitrix24 instance via one of the supported authentication methods:

    • OAuth2 authentication (recommended for production).
    • Webhook URL authentication.
    • API key authentication.
  • The user must configure appropriate credentials in n8n corresponding to the chosen authentication method.

  • The node relies on Bitrix24's REST API endpoints to fetch product data.

Troubleshooting

  • Common Issues:

    • Invalid or missing Product ID will cause the API call to fail.
    • Incorrect or expired authentication credentials can lead to authorization errors.
    • Network connectivity issues may prevent successful API calls.
  • Error Messages:

    • Errors returned from Bitrix24 API are propagated as exceptions.
    • If "Continue On Fail" is enabled, errors are returned in the output JSON under the error field.
    • Common error messages include authentication failures, resource not found, or invalid parameters.
  • Resolution Tips:

    • Verify that the Product ID exists in your Bitrix24 account.
    • Ensure that the selected authentication method is correctly configured and valid.
    • Check network connectivity and firewall settings.
    • Enable "Continue On Fail" to handle errors gracefully in workflows.

Links and References

Discussion