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 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
errorfield. - 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.