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 interaction with various Bitrix24 resources such as CRM entities and disk storage. The "Disk" resource with the "Get Storage" operation enables users to retrieve information about a specific storage entity within Bitrix24's file storage system.
Typical use cases include:
- Fetching metadata or details about a particular storage container in Bitrix24.
- Integrating Bitrix24 file storage data into workflows for document management or backup.
- Automating retrieval of storage info to trigger further processing or notifications.
For example, a user might configure this node to get details about a shared drive or folder by specifying its Storage ID, then use that data downstream to list files or manage permissions.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method to authenticate with Bitrix24: OAuth2 (recommended), Webhook (simpler but less secure), or API Key. |
| Storage ID | The unique identifier of the storage entity to retrieve information from. |
| Options | Additional optional parameters: |
| - Filter | JSON object specifying filter criteria to narrow down results. |
| - Order | JSON object defining sorting order of the returned data. |
| - Start | Number indicating the start position for pagination (offset). |
Output
The node outputs an array of items where each item's json property contains the response data from Bitrix24 related to the requested storage. This typically includes metadata fields describing the storage entity such as its ID, name, type, size, creation date, and other relevant attributes.
If an error occurs and the node is configured to continue on failure, 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 indicated 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 internal helper functions to make API calls to Bitrix24 endpoints.
- No additional external services beyond Bitrix24 are required.
- Proper configuration of the Bitrix24 credentials in n8n is necessary for successful execution.
Troubleshooting
Common issues:
- Invalid or expired authentication credentials leading to authorization errors.
- Incorrect or non-existent Storage ID causing "not found" errors.
- Malformed JSON in the filter or order options causing request failures.
- Network connectivity problems preventing API calls.
Error messages:
- Errors thrown by the node will include the message from Bitrix24 API responses.
- If "continue on fail" is enabled, errors are returned in the output JSON under the
errorkey.
Resolutions:
- Verify and refresh authentication credentials.
- Double-check the Storage ID value for correctness.
- Validate JSON syntax in filter and order fields before execution.
- Ensure network access to Bitrix24 API endpoints.