Bitrix24 icon

Bitrix24

Interact with Bitrix24 CRM and business platform

Actions290

Overview

The Bitrix24 node allows users to interact with the Bitrix24 CRM and business platform. Specifically, the "Add Product" operation under the "Product" resource enables creating new product entries in a Bitrix24 catalog. This is useful for automating product management workflows such as adding inventory items, updating product catalogs, or integrating product data from other systems.

Practical examples include:

  • Automatically adding new products from an e-commerce platform into Bitrix24.
  • Syncing product details from ERP systems to keep Bitrix24 catalogs up-to-date.
  • Creating products programmatically during marketing campaigns or promotions.

Properties

Name Meaning
Authentication Method of authenticating with Bitrix24: OAuth2 (recommended), Webhook (simpler), or API Key.
Product Name The name/title of the product to add.
Price The price of the product.
Currency Currency code for the price (e.g., RUB, USD, EUR).
Catalog ID Identifier of the catalog where the product will be added.
Section ID Identifier of the product section or category within the catalog.
Active Boolean indicating if the product is active/enabled.
Sort Order Numeric value defining the product's sort order in listings.
Description Text description of the product.
Code Product code or SKU identifier.
XML ID External ID used for integration purposes.
Weight Weight of the product.
Width Width dimension of the product.
Length Length dimension of the product.
Height Height dimension of the product.
Measure Unit of measure for the product (e.g., pcs, kg).
VAT ID Identifier for the VAT rate applied to the product.
VAT Included Boolean indicating whether VAT is included in the price.
Quantity Available quantity of the product in stock.
Quantity Trace Mode of quantity tracking; options are "D", "Y", or "N".
Can Buy Zero Boolean indicating if the product can be purchased when quantity is zero.
Subscribe Boolean indicating if subscription is allowed for out-of-stock products.

Output

The node outputs JSON data representing the result of the product addition operation. This typically includes confirmation details such as the newly created product's ID and any relevant metadata returned by the Bitrix24 API.

If the operation fails and "Continue On Fail" is enabled, the output will contain an error object with the error message, resource name, and timestamp.

The node does not output binary data.

Dependencies

  • Requires connection to Bitrix24 via one of the supported authentication methods: OAuth2, webhook URL, or API key.
  • Needs proper configuration of credentials in n8n corresponding to the chosen authentication method.
  • Relies on Bitrix24 API endpoints to perform product creation.
  • No additional external dependencies beyond Bitrix24 API access.

Troubleshooting

  • Common Issues:

    • Authentication failures due to incorrect or expired credentials.
    • Missing required fields like Product Name, Price, or Catalog ID causing API errors.
    • Invalid currency codes or VAT IDs leading to rejection by Bitrix24.
    • Network connectivity issues preventing API calls.
  • Error Messages:

    • Errors returned from Bitrix24 API will be surfaced in the node output if "Continue On Fail" is enabled.
    • Typical messages may include validation errors for missing or invalid parameters.
    • Authentication errors suggest checking credential setup and permissions.
  • Resolutions:

    • Verify all required input properties are correctly set.
    • Ensure credentials are valid and have necessary scopes/permissions.
    • Confirm network access to Bitrix24 API endpoints.
    • Use the node’s error output to diagnose specific API response errors.

Links and References

Discussion