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 enabling operations on its Disk resource. The "Move Folder" operation allows users to move a folder from one location to another within the Bitrix24 Disk storage system. This is useful for organizing files and folders programmatically, automating file management workflows, or integrating Bitrix24 file storage with other systems.
Practical examples include:
- Automatically moving project folders into archive directories after project completion.
- Organizing incoming files into client-specific folders based on metadata.
- Integrating with other automation tools to restructure Bitrix24 Disk storage dynamically.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authenticating with Bitrix24: OAuth2 (recommended), Webhook (simpler but less secure), or API Key authentication. |
| Folder ID | The unique identifier of the folder you want to move. |
| Destination Folder ID | The unique identifier of the target folder where the source folder will be moved. |
| Options | Additional optional parameters: |
| - Filter | JSON-formatted filter criteria to refine selection (usage context-dependent). |
| - Order | JSON-formatted sort order specification (usage context-dependent). |
| - Start | Numeric start position for pagination (usage context-dependent). |
Output
The node outputs an array of items representing the result of the move folder operation. Each item contains a json object with details about the moved folder or error information if the operation failed.
- On success, the output JSON typically includes confirmation data from Bitrix24 about the moved folder.
- On failure (if "Continue On Fail" is enabled), the output JSON includes an
errorfield with the error message, theresourcename ("disk"), and a timestamp.
The node does not explicitly output binary data.
Dependencies
- Requires valid authentication credentials for Bitrix24 via one of the supported methods (OAuth2, webhook URL, or API key).
- Needs proper configuration of these credentials in n8n prior to use.
- Relies on Bitrix24's API endpoints for disk operations.
Troubleshooting
Common Issues:
- Invalid or expired authentication credentials can cause authorization failures.
- Incorrect Folder IDs or Destination Folder IDs will result in errors indicating that the folder was not found.
- Insufficient permissions on the Bitrix24 account may prevent moving folders.
Error Messages:
- Errors returned by Bitrix24 API are surfaced in the node output when "Continue On Fail" is enabled.
- Typical messages include "Folder not found", "Access denied", or "Invalid authentication".
Resolutions:
- Verify and refresh authentication credentials.
- Double-check folder IDs for correctness.
- Ensure the authenticated user has necessary permissions to move folders.
- Enable "Continue On Fail" to capture error details without stopping workflow execution.