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, allowing users to interact with various Bitrix24 resources such as CRM entities and business platform features. Specifically, for the Disk resource with the Get Shared Items operation, it retrieves items that have been shared within the Bitrix24 disk storage system.
Common scenarios where this node is beneficial include:
- Automating retrieval of files or folders shared across a Bitrix24 workspace.
- Integrating Bitrix24 shared disk content into workflows for further processing or notifications.
- Synchronizing shared disk items with other systems or databases.
For example, a user might use this node to fetch all shared documents in a team folder to generate reports or trigger alerts when new shared items appear.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method to authenticate with Bitrix24. Options: OAuth2 (recommended), Webhook (simpler), API Key |
| Options | Additional parameters to customize the request: |
| - Filter | JSON object specifying filter criteria to narrow down shared items |
| - Order | JSON object defining sorting order of results |
| - Start | Number indicating the start position for pagination (offset) |
Output
The node outputs an array of items representing the shared disk objects retrieved from Bitrix24. Each itemβs json field contains the data returned by the Bitrix24 API for shared disk items, which typically includes metadata such as file/folder IDs, names, sharing details, timestamps, and permissions.
If the node supports binary data output (e.g., file contents), it would be included accordingly, but based on the provided code and context, the output focuses on JSON metadata about shared items.
Dependencies
- Requires authentication credentials for Bitrix24, which can be configured using one of the supported methods: OAuth2, webhook URL, or API key.
- The node depends on internal helper functions to make standardized API calls to Bitrix24 endpoints.
- No additional external services are required beyond Bitrix24 itself.
Troubleshooting
- Authentication errors: Ensure the selected authentication method is correctly configured with valid credentials or tokens.
- API call failures: Errors may occur if the filter or order JSON is malformed; verify JSON syntax and correctness.
- Pagination issues: If many shared items exist, use the
Startproperty to paginate through results properly. - Permission errors: The authenticated user must have sufficient rights to access shared disk items in Bitrix24.
- Error messages: If the node throws errors containing messages from Bitrix24 API, check the message details for invalid parameters or access issues.
To resolve common errors:
- Double-check authentication setup.
- Validate JSON inputs for filters and ordering.
- Confirm user permissions in Bitrix24.
- Use "Continue On Fail" option to handle intermittent API errors gracefully.
Links and References
- Bitrix24 Official API Documentation
- Bitrix24 Disk API Reference
- OAuth2 Authentication Guide for Bitrix24
- Bitrix24 Webhook Usage Instructions