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
This node integrates with the Bitrix24 platform, specifically allowing users to add new entries to Bitrix24 Lists (iblocks). It is useful for automating the creation of list items within Bitrix24, such as adding records to custom or standard lists used in business processes. Typical scenarios include syncing data from other systems into Bitrix24 lists, automating task or inventory management, or populating CRM-related lists dynamically.
For example, a user might use this node to add a new contact or deal record to a Bitrix24 list whenever a form is submitted on their website, or to create a new item in a project tracking list when a new issue is logged in an external system.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authenticating with Bitrix24: OAuth2 (recommended), Webhook URL (simpler), or API Key |
| Iblock Type ID | The identifier of the iblock type where the new list item will be added |
| Iblock Code | The code of the iblock (list) to which the item will be added |
| Fields | A collection of fields to set on the new list item; each field has a name and a value |
| Options | Additional options including: |
| - Access Token | Optionally specify an access token to override the one from credentials |
| - Filter | JSON filter criteria (not typically used for add operation but available) |
| - Order | JSON sort order (not typically used for add operation but available) |
| - Select | Comma-separated list of fields to select (not typically used for add operation but available) |
The Fields property allows specifying multiple field name-value pairs that define the data for the new list entry.
Output
The node outputs an array of JSON objects representing the result of the add operation. Each output item contains the response from Bitrix24 after attempting to add the list item, typically including identifiers and status information about the newly created entry.
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 valid authentication with Bitrix24 via one of the supported 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 for list management.
- No additional external dependencies beyond Bitrix24 API access.
Troubleshooting
- Common issues:
- Incorrect or expired authentication tokens leading to authorization errors.
- Invalid or missing
Iblock Type IDorIblock Codecausing API failures. - Improperly formatted field names or values resulting in rejected requests.
- Error messages:
- Authorization errors: Check that the authentication credentials are correct and have sufficient permissions.
- Validation errors from Bitrix24 API: Verify that all required fields are provided and correctly named.
- Network or connectivity issues: Ensure that the n8n instance can reach Bitrix24 endpoints.
- To resolve errors, verify credentials, confirm field names against Bitrix24 list schema, and enable "Continue On Fail" to handle errors gracefully in workflows.