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 update an entity section within Bitrix24's CRM or business data storage. The "Update Entity Section" operation modifies properties of a specified section such as its name, code, active status, sort order, and description.
Typical use cases include:
- Renaming or re-coding sections in a CRM entity to reflect organizational changes.
- Activating or deactivating sections without deleting them.
- Adjusting the display order of sections for better UI arrangement.
- Updating descriptive information to clarify the purpose of a section.
For example, a user might automate updating a customer segment section's name and description after a marketing campaign restructure.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method to authenticate with Bitrix24: OAuth2 (recommended), Webhook (simpler), or API Key. |
| Section ID | The unique identifier of the entity section to update. |
| Section Name | The new name to assign to the entity section. |
| Section Code | The new code string representing the entity section. |
| Section Active | Boolean flag indicating whether the section is active (true) or inactive (false). |
| Section Sort Order | Numeric value defining the order in which the section appears relative to others (default 100). |
| Section Description | Text description providing additional details about the section. |
Output
The node outputs an array of items where each item contains a json object representing the result of the update operation on the entity section. The exact structure depends on the Bitrix24 API response but typically includes confirmation of the updated fields or error details if the update failed.
If the node encounters an error and is configured to continue on failure, it outputs an item with an error field describing the issue, along with the resource name and a timestamp.
No binary data output is involved in this operation.
Dependencies
- Requires valid authentication credentials for Bitrix24 via one of the supported methods: OAuth2, webhook URL, or API key.
- The node relies on Bitrix24's REST API endpoints to perform the update operation.
- Proper configuration of credentials in n8n is necessary to authorize API calls.
Troubleshooting
Common Issues:
- Invalid or expired authentication tokens can cause authorization failures.
- Incorrect Section ID will result in errors indicating the section was not found.
- Insufficient permissions in Bitrix24 may prevent updates.
- Network connectivity issues can cause request timeouts or failures.
Error Messages:
- Errors returned from Bitrix24 API are passed through; typical messages include "Section not found", "Access denied", or "Invalid parameters".
- If the node is set to continue on fail, errors are included in the output JSON under the
errorproperty.
Resolutions:
- Verify that the authentication credentials are correct and have not expired.
- Confirm the Section ID exists and is accessible by the authenticated user.
- Check Bitrix24 user permissions for modifying entity sections.
- Ensure stable network connection and Bitrix24 service availability.