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 interacts with Bitrix24's Lists resource to retrieve the URL of a file attached to a specific list element. It is useful when you need to programmatically access or download files stored within Bitrix24 lists, such as documents, images, or other attachments linked to list items.
Practical scenarios include:
- Automating workflows that require fetching file URLs for further processing or sharing.
- Integrating Bitrix24 list files with external systems by obtaining direct access links.
- Building custom dashboards or reports that display or link to files stored in Bitrix24 lists.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method to authenticate with Bitrix24: OAuth2 (recommended), Webhook (simpler but less secure), or API Key |
| List ID | The identifier of the Bitrix24 list containing the element |
| Element ID | The identifier of the specific element within the list |
| Options | Additional optional parameters: - Access Token: Use a specific access token instead of credentials - Filter: JSON object to filter results - Order: JSON object specifying sort order - Select: Comma-separated list of fields to select |
Output
The node outputs JSON data containing the URL of the file associated with the specified list element. This URL can be used to access or download the file directly.
If the node supports binary data output (not explicitly shown in the provided code), it would typically represent the actual file content fetched from Bitrix24.
Dependencies
- Requires authentication with Bitrix24 via one of the supported methods: OAuth2, Webhook URL, or API Key.
- Depends on Bitrix24 API endpoints to fetch list and element data.
- No additional external services are required beyond Bitrix24 itself.
- Proper configuration of credentials in n8n is necessary to enable API communication.
Troubleshooting
Common Issues:
- Invalid or missing List ID or Element ID will cause the node to fail to find the requested file.
- Incorrect authentication setup may lead to authorization errors.
- Network issues or Bitrix24 API downtime can cause request failures.
Error Messages:
- Errors returned from Bitrix24 API will be included in the output if "Continue On Fail" is enabled.
- Typical error messages might include "Unauthorized", "Element not found", or "Invalid parameters".
Resolutions:
- Verify that the List ID and Element ID are correct and exist in your Bitrix24 account.
- Ensure that the selected authentication method is properly configured with valid credentials.
- Check network connectivity and Bitrix24 service status.
- Use the "Options" property to provide an explicit access token if needed.