Bitrix24 icon

Bitrix24

Interact with Bitrix24 CRM and business platform

Actions290

Overview

This node integrates with the Bitrix24 platform, specifically enabling operations on the "Disk" resource such as creating folders. The "Create Folder" operation allows users to create a new folder within a specified parent folder in their Bitrix24 Drive storage.

Common scenarios where this node is beneficial include:

  • Automating document management workflows by programmatically organizing files into folders.
  • Creating structured storage for project files or client documents within Bitrix24.
  • Integrating Bitrix24 Drive folder creation into larger automation pipelines, e.g., after CRM deal creation.

Example: Automatically create a new folder named "Project Alpha" inside a specific parent folder whenever a new deal is created in Bitrix24.

Properties

Name Meaning
Authentication Method of authenticating with Bitrix24. Options: OAuth2 (recommended), Webhook, API Key.
Parent Folder ID The ID of the existing folder under which the new folder will be created.
Folder Name The name of the new folder to create.
Options Additional optional parameters:
- Filter: JSON filter criteria (not typically used here).
- Order: JSON sort order.
- Start: Pagination start position. These options are more relevant for listing operations but available here as generic options.

Output

The node outputs an array of items representing the result of the folder creation operation. Each item contains a json object with details about the newly created folder, such as its ID and metadata returned from Bitrix24.

If an error occurs and "Continue On Fail" is enabled, 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 involved in this operation.

Dependencies

  • Requires authentication with Bitrix24 via one of the supported methods: OAuth2, webhook URL, or API key.
  • The node relies on Bitrix24's REST API endpoints for disk operations.
  • Proper credentials must be configured in n8n for the chosen authentication method.

Troubleshooting

  • Common issues:

    • Invalid or missing Parent Folder ID: Ensure the parent folder exists and the ID is correct.
    • Insufficient permissions: The authenticated user must have rights to create folders in the specified location.
    • Authentication failures: Verify that the provided OAuth2 token, webhook URL, or API key is valid and has necessary scopes.
  • Error messages:

    • Errors thrown by the Bitrix24 API will be surfaced in the node output if "Continue On Fail" is enabled.
    • Typical errors include "Access Denied", "Folder Not Found", or "Invalid Parameter".
  • Resolution tips:

    • Double-check folder IDs and names.
    • Confirm authentication credentials and permissions.
    • Use Bitrix24 API documentation to verify required parameters and scopes.

Links and References

Discussion