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 the "Disk" resource such as creating folders. The "Create Folder" operation allows users to create a new folder within a specified parent folder in their Bitrix24 Drive storage.
Common scenarios where this node is beneficial include:
- Automating document management workflows by programmatically organizing files into folders.
- Creating structured storage for project files or client documents within Bitrix24.
- Integrating Bitrix24 Drive folder creation into larger automation pipelines, e.g., after CRM deal creation.
Example: Automatically create a new folder named "Project Alpha" inside a specific parent folder whenever a new deal is created in Bitrix24.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authenticating with Bitrix24. Options: OAuth2 (recommended), Webhook, API Key. |
| Parent Folder ID | The ID of the existing folder under which the new folder will be created. |
| Folder Name | The name of the new folder to create. |
| Options | Additional optional parameters: - Filter: JSON filter criteria (not typically used here). - Order: JSON sort order. - Start: Pagination start position. These options are more relevant for listing operations but available here as generic options. |
Output
The node outputs an array of items representing the result of the folder creation operation. Each item contains a json object with details about the newly created folder, such as its ID and metadata returned from Bitrix24.
If an error occurs and "Continue On Fail" is enabled, the output will contain 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 authentication with Bitrix24 via one of the supported methods: OAuth2, webhook URL, or API key.
- The node relies on Bitrix24's REST API endpoints for disk operations.
- Proper credentials must be configured in n8n for the chosen authentication method.
Troubleshooting
Common issues:
- Invalid or missing Parent Folder ID: Ensure the parent folder exists and the ID is correct.
- Insufficient permissions: The authenticated user must have rights to create folders in the specified location.
- Authentication failures: Verify that the provided OAuth2 token, webhook URL, or API key is valid and has necessary scopes.
Error messages:
- Errors thrown by the Bitrix24 API will be surfaced in the node output if "Continue On Fail" is enabled.
- Typical errors include "Access Denied", "Folder Not Found", or "Invalid Parameter".
Resolution tips:
- Double-check folder IDs and names.
- Confirm authentication credentials and permissions.
- Use Bitrix24 API documentation to verify required parameters and scopes.