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 interacts with the Bitrix24 platform, specifically focusing on managing and retrieving data related to "Lists" within Bitrix24. The "Get Sections" operation under the "Lists" resource fetches sections (subdivisions or categories) of a specified list by its ID.
Common scenarios where this node is beneficial include:
- Organizing and categorizing items in Bitrix24 lists by retrieving their sections.
- Automating workflows that depend on list structure, such as syncing list sections with external systems.
- Reporting or analytics tasks that require understanding the segmentation of list data.
Practical example:
- A user wants to retrieve all sections of a particular project task list to display them in a dashboard or use them for further processing in an automation workflow.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method to authenticate with Bitrix24: OAuth2 (recommended), Webhook URL (simpler but less secure), or API Key authentication. |
| List ID | The unique identifier of the Bitrix24 list from which to get sections. |
| Options | Additional optional parameters: β’ Access Token: Use a specific access token instead of credentials. β’ Filter: JSON object to filter sections. β’ Order: JSON object to specify sorting order. β’ Select: Comma-separated list of fields to retrieve for each section. |
Output
The node outputs an array of JSON objects representing the sections retrieved from the specified Bitrix24 list. Each object corresponds to a section and contains fields as per the selection or default response from Bitrix24's API.
If binary data were involved (not indicated here), it would typically represent files or attachments related to sections, but this operation focuses on JSON data only.
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.
- Uses Bitrix24 API endpoints internally to fetch list sections.
- Optional: If using the "Access Token" option, a valid token must be provided explicitly.
Troubleshooting
Common Issues:
- Invalid or missing List ID: Ensure the List ID is correct and exists in Bitrix24.
- Authentication failures: Verify that the selected authentication method is properly configured and credentials are valid.
- API rate limits or permission errors: Check Bitrix24 account permissions and API usage limits.
Error Messages:
- Errors returned from Bitrix24 API will be included in the output JSON under an
errorfield if "Continue On Fail" is enabled. - Common error messages might indicate invalid tokens, insufficient permissions, or malformed filters/orders.
- Errors returned from Bitrix24 API will be included in the output JSON under an
Resolutions:
- Double-check List ID and ensure it matches an existing list.
- Re-authenticate or update credentials if authentication errors occur.
- Validate JSON syntax for filter and order options.
- Enable "Continue On Fail" to handle errors gracefully in workflows.