Actions290
- Task Actions
- Direct API Actions
- CRM Actions
- User Actions
- SPA Actions
- Activity Actions
- Automation Actions
- Document Generator Actions
- Data Storage Actions
- Get Entity
- Add Entity
- Update Entity
- Delete Entity
- Get Entity Rights
- Get Entity Sections
- Add Entity Section
- Update Entity Section
- Delete Entity Section
- Get Entity Item
- Add Entity Item
- Update Entity Item
- Delete Entity Item
- Get Entity Item Properties
- Add Entity Item Property
- Update Entity Item Property
- Delete Entity Item Property
- Chat Actions
- User Field Actions
- File Actions
- User Field Config Actions
- Duplicate Actions
- Timeline Actions
- Disk Actions
- Upload File
- Download File
- Delete File
- Get File Info
- List Files
- Create Folder
- Delete Folder
- Get Storage Info
- Get Storages
- Get Storage
- Get Folders
- Get Folder
- Add Folder
- Update Folder
- Copy Folder
- Move Folder
- Rename Folder
- Get Files
- Get File
- Copy File
- Move File
- Rename File
- Share Item
- Get Shared Items
- Get Sharing Rights
- Update Sharing Rights
- Workflow Actions
- Status Actions
- Calendar Actions
- Chatbot Actions
- Events Actions
- Lists Actions
- Product Actions
- Open Lines Actions
- Telephony Actions
- Register External Call
- Finish External Call
- Hide External Call
- Show External Call
- Search CRM Entities
- Attach Call Record
- Get External Line
- Add External Line
- Update External Line
- Delete External Line
- Get Voximplant Statistics
- Get Voximplant Line
- Get Voximplant SIP Connector
- Get Voximplant SIP Line
- Add Voximplant SIP Line
- Update Voximplant SIP Line
- Delete Voximplant SIP Line
- Message Service Actions
- Notify Actions
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.