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 manage files and folders on Bitrix24's Disk resource. The "Add Folder" operation enables creating a new folder inside an existing parent folder on the Bitrix24 Disk.
Common scenarios for this node include:
- Organizing documents by programmatically creating folder structures in Bitrix24.
- Automating file management workflows where new folders are needed based on business logic.
- Integrating Bitrix24 Disk storage with other systems by dynamically managing folders.
For example, a user might automate project document organization by creating a new folder for each project under a common parent folder.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authenticating with Bitrix24: OAuth2 (recommended), Webhook (simpler), or API Key. |
| Parent Folder ID | The identifier of the existing folder under which the new folder will be created. |
| Folder Name | The name to assign to the newly created folder. |
| Options | Additional optional parameters: - Filter: JSON criteria to filter results (not used here). - Order: JSON defining sort order (not used here). - Start: Number indicating pagination start position (not used here). |
Output
The node outputs an array of items, each containing a json object representing the result of the folder creation operation. This typically includes details about the newly created folder such as its ID and metadata returned from Bitrix24.
If an error occurs and the node is configured to continue on failure, the output item will contain an error field with the error message, the resource name, and a timestamp.
No binary data output is indicated.
Dependencies
- Requires authentication credentials for Bitrix24 via one of the supported methods: OAuth2, Webhook URL, or API Key.
- Uses Bitrix24 API endpoints internally to perform operations.
- No additional external services beyond Bitrix24 are required.
- Proper configuration of authentication credentials in n8n is necessary.
Troubleshooting
Common issues:
- Invalid or missing Parent Folder ID: Ensure the parent folder exists and the ID is correct.
- Authentication failures: Verify that the selected authentication method is correctly configured and valid.
- API rate limits or permission errors from Bitrix24 may cause failures.
Error messages:
- Errors thrown during execution will include the message from Bitrix24 API or internal processing.
- If "Continue On Fail" is enabled, errors are returned in the output JSON with an
errorproperty.
Resolution tips:
- Double-check folder IDs and names for correctness.
- Confirm that the API credentials have sufficient permissions to create folders.
- Review Bitrix24 API documentation for any limitations or required scopes.