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 allowing operations on various resources such as CRM entities and disk storage. For the Disk resource with the Delete Folder operation, it enables users to delete a folder identified by its ID from their Bitrix24 disk storage.
Common scenarios where this node is beneficial include:
- Automating cleanup of unused or temporary folders in Bitrix24 disk storage.
- Integrating folder management into workflows that synchronize or archive data.
- Managing disk space by programmatically removing obsolete folders.
Practical example:
- A workflow that deletes project folders after project completion to keep the Bitrix24 disk organized.
- Automatically deleting folders created for temporary file uploads once processing is done.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method to authenticate with Bitrix24: OAuth2 (recommended), Webhook (simpler but less secure), or API Key authentication. |
| Folder ID | The unique identifier of the folder to be deleted. |
| Options | Additional optional parameters: - Filter: JSON object to filter results (not typically used for delete). - Order: JSON object to specify sort order. - Start: Number indicating pagination start position. |
Output
The node outputs an array of items corresponding to the result of the delete operation. Each item contains a json field with the response from Bitrix24 API regarding the deletion status.
If an error occurs and "Continue On Fail" is enabled, the output will contain an item with an error message, the resource name, and a timestamp.
No binary data output is expected for this operation.
Dependencies
- Requires valid authentication credentials for Bitrix24 via one of the supported methods (OAuth2, Webhook URL, or API Key).
- The node depends on Bitrix24's API endpoints for disk operations.
- No additional external services are required beyond Bitrix24 itself.
- Proper configuration of credentials in n8n is necessary for successful API calls.
Troubleshooting
Common issues:
- Invalid or expired authentication credentials leading to authorization errors.
- Providing an incorrect or non-existent Folder ID causing the API to return not found errors.
- Insufficient permissions in Bitrix24 account to delete folders.
Error messages:
"error": "Folder not found": Verify the Folder ID is correct and exists."error": "Access denied": Check that the authentication method has sufficient rights.- Network or timeout errors: Ensure stable internet connection and Bitrix24 service availability.
Resolution tips:
- Double-check the Folder ID input.
- Confirm the authentication credentials are valid and have appropriate scopes/permissions.
- Enable "Continue On Fail" to handle errors gracefully within workflows.
Links and References
- Bitrix24 Disk API Documentation (official API reference for disk operations)
- Bitrix24 Developer Documentation