Bitrix24 icon

Bitrix24

Interact with Bitrix24 CRM and business platform

Actions290

Overview

This node integrates with the Bitrix24 platform, specifically enabling operations on files stored in the Bitrix24 Disk resource. The "Move File" operation allows users to move a file from its current location to a specified destination folder within Bitrix24's file storage system.

Common scenarios for this node include:

  • Organizing files by moving them into appropriate folders based on workflow logic.
  • Automating file management tasks such as archiving or categorizing documents.
  • Integrating Bitrix24 file storage management into broader automation workflows.

For example, after processing a document, you might use this node to move the file to a "Processed" folder automatically.

Properties

Name Meaning
Authentication Method of authenticating with Bitrix24: OAuth2 (recommended), Webhook (simpler), or API Key.
File ID The unique identifier of the file to be moved.
Destination Folder ID The unique identifier of the folder where the file will be moved to.
Options Additional optional parameters:
- Filter: JSON criteria to filter files (not typically used in move).
- Order: JSON defining sort order.
- Start: Number indicating pagination start position.

Output

The node outputs an array of items corresponding to the processed files. Each item contains a json object representing the result of the move operation for the file. This typically includes metadata about the moved file such as its new location and status.

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.

The node does not output binary data.

Dependencies

  • Requires authentication credentials for Bitrix24, which can be provided via OAuth2, webhook URL, or API key.
  • Needs proper configuration of these credentials in n8n to access Bitrix24 APIs.
  • Relies on Bitrix24's REST API endpoints for file operations.

Troubleshooting

  • Common Issues:

    • Invalid or expired authentication credentials leading to authorization errors.
    • Incorrect File ID or Destination Folder ID causing "file not found" or "folder not found" errors.
    • Insufficient permissions to move files within Bitrix24.
  • Error Messages:

    • Errors returned from Bitrix24 API are surfaced in the node output if "Continue On Fail" is enabled.
    • Typical messages include authentication failures, invalid IDs, or permission denials.
  • Resolutions:

    • Verify that the authentication method and credentials are correctly set up and valid.
    • Double-check the File ID and Destination Folder ID values.
    • Ensure the authenticated user has rights to move files in the target folders.

Links and References

Discussion