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 Bitrix24, a CRM and business platform, to perform various operations on its resources. Specifically, the "Lists" resource with the "Add Section" operation allows users to add a new section to a specified list within Bitrix24. This is useful for organizing list data into sections, which can help segment or categorize entries more effectively.
Practical scenarios include:
- Adding a new category or grouping within a project management list.
- Creating sections in a customer feedback list to separate different types of feedback.
- Structuring inventory lists by adding sections for different product categories.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method to authenticate with Bitrix24: OAuth2 (recommended), Webhook (simpler but less secure), or API Key authentication. |
| List ID | The identifier of the Bitrix24 list where the new section will be added. |
| Fields | A collection of fields to set for the new section. Each field has a name and a corresponding value. |
| Options | Additional optional parameters: - Access Token: Use a specific access token instead of credentials. - Filter: JSON object to filter data. - Order: JSON object defining sort order. - Select: Comma-separated list of fields to select. |
Output
The node outputs an array of items, each containing a json property with the response from Bitrix24 after attempting to add the section. The exact structure depends on Bitrix24's API response but typically includes details about the newly created section such as its ID and any metadata returned by the API.
If an error occurs and the node is configured to continue on failure, the output item will contain an error field describing the issue, along with the resource name and a timestamp.
No binary data output is indicated.
Dependencies
- Requires valid authentication with Bitrix24 via one of the supported methods (OAuth2, Webhook URL, or API Key).
- Uses Bitrix24 API endpoints internally to perform operations.
- No additional external dependencies beyond standard n8n environment and Bitrix24 credentials.
Troubleshooting
Common Issues:
- Invalid or expired authentication tokens leading to authorization errors.
- Incorrect List ID causing the API to fail to find the target list.
- Malformed field names or values that do not conform to Bitrix24's expected schema.
Error Messages:
- Errors returned from Bitrix24 API are passed through; typical messages might include "Access Denied", "List Not Found", or validation errors on fields.
- If the node is set to continue on failure, errors are included in the output JSON under the
errorkey.
Resolutions:
- Verify and refresh authentication credentials.
- Double-check the List ID and ensure it exists in Bitrix24.
- Validate field names and values against Bitrix24 documentation for list sections.