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 disk files. Specifically, for the Disk resource and the Delete File operation, it enables deleting a file stored in Bitrix24's disk storage by specifying its file ID.
Common scenarios where this node is beneficial include:
- Automating cleanup of outdated or temporary files in Bitrix24.
- Managing file lifecycle within business workflows by programmatically removing files no longer needed.
- Integrating Bitrix24 file management into broader automation pipelines.
For example, after processing a document uploaded to Bitrix24, you might want to delete the original file automatically to save storage space.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method to authenticate with Bitrix24: - OAuth2 (recommended for production) - Webhook (simpler but less secure) - API Key authentication |
| File ID | The unique identifier of the file to be deleted from Bitrix24 disk storage. This is required. |
| Options | Additional optional parameters: - Filter: JSON object to specify filter criteria. - Order: JSON object to specify sort order. - Start: Number indicating start position for pagination. (These options are general and may not affect the delete operation directly.) |
Output
The node outputs an array of items corresponding to the processed input items. Each output item contains a json field with the response from Bitrix24 after attempting the delete operation.
- On success, the output typically includes confirmation details from Bitrix24 about the deletion.
- On failure, if "Continue on Fail" is enabled, the output item will contain an
errorfield with the error message, along with the resource name and a timestamp.
No binary data output is produced by this operation.
Dependencies
- Requires connection to Bitrix24 via one of the supported authentication methods (OAuth2, webhook URL, or API key).
- Proper credentials must be configured in n8n for the chosen authentication method.
- Network access to Bitrix24 API endpoints is necessary.
Troubleshooting
Common issues:
- Invalid or missing File ID: The node requires a valid file ID; ensure the correct ID is provided.
- Authentication errors: Verify that the selected authentication method is correctly configured and the credentials are valid.
- Insufficient permissions: The authenticated user or token must have rights to delete files in Bitrix24.
- Network connectivity problems can cause API call failures.
Error messages:
- Errors returned from Bitrix24 API will be included in the output if "Continue on Fail" is enabled.
- Typical errors include "File not found", "Access denied", or "Invalid authentication".
Resolution tips:
- Double-check the file ID and ensure the file exists.
- Confirm that the API credentials have appropriate permissions.
- Test the authentication separately to verify connectivity.
- Enable "Continue on Fail" during testing to capture error details without stopping workflow execution.