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, allowing users to interact with various Bitrix24 resources such as CRM entities and business data. Specifically, for the Data Storage resource and the Delete Entity Section operation, it enables deleting a specified section (or segment) of an entity within Bitrix24.
Typical use cases include:
- Automating cleanup or removal of obsolete or unwanted sections in CRM entities.
- Managing entity structures dynamically based on workflow conditions.
- Integrating Bitrix24 entity management into broader automation pipelines.
For example, a user might delete a custom section from a CRM contact record when that section is no longer relevant, triggered by some external event or condition.
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 be deleted. |
Output
The node outputs JSON data representing the result of the deletion operation. On success, this typically includes confirmation details from Bitrix24 about the deleted section. If an error occurs, the output JSON contains an error field with the error message, along with the resource name and a timestamp.
No binary data output is produced by this operation.
Example successful output snippet:
{
"result": {
"success": true,
"deletedSectionId": "12345"
}
}
Example error output snippet (when continuing on failure):
{
"error": "Section not found",
"resource": "entity",
"timestamp": "2024-06-01T12:00:00.000Z"
}
Dependencies
- Requires valid authentication credentials for Bitrix24 via one of the supported methods (OAuth2, webhook URL, or API key).
- Relies on Bitrix24 API endpoints to perform operations; thus, network connectivity and proper API permissions are necessary.
- No additional external libraries beyond those bundled with the node are required.
Troubleshooting
Common Issues:
- Invalid or missing Section ID: Ensure the Section ID provided exists and is correct.
- Authentication failures: Verify that the chosen authentication method is correctly configured and authorized.
- API permission errors: The authenticated user must have rights to delete entity sections.
- Network or connectivity problems: Confirm that the node can reach Bitrix24 API endpoints.
Error Messages:
"Section not found": The specified Section ID does not exist or is inaccessible. Check the ID and permissions."Authentication failed": Credentials are invalid or expired. Re-authenticate or update credentials."Insufficient permissions": The user lacks rights to delete sections. Adjust user roles or permissions in Bitrix24.- Other API errors will be passed through in the
errorfield; consult Bitrix24 API documentation for details.
When the node is set to continue on fail, errors are returned in the output JSON instead of stopping execution.