Bitrix24 icon

Bitrix24

Interact with Bitrix24 CRM and business platform

Actions290

Overview

This node interacts with the Bitrix24 platform, specifically allowing users to retrieve information about disk storage when using the "Disk" resource and the "Get Storage Info" operation. It is useful for scenarios where you need to monitor or manage storage usage within a Bitrix24 account, such as checking available space, used space, or other storage-related metadata.

Practical examples include:

  • Automating alerts when storage usage exceeds a threshold.
  • Integrating storage info into dashboards or reports.
  • Managing file storage quotas programmatically.

Properties

Name Meaning
Authentication Method of authenticating with Bitrix24: OAuth2 (recommended), Webhook (simpler but less secure), or API Key authentication.
Options Additional parameters to customize the request:
- Filter JSON object specifying filter criteria to narrow down the storage info results.
- Order JSON object defining the sort order of the returned data.
- Start Number indicating the start position for pagination in the results.

Output

The node outputs JSON data containing the storage information retrieved from Bitrix24. The exact structure depends on the Bitrix24 API response for storage info but typically includes fields such as total storage, used storage, free storage, and possibly detailed breakdowns by user or folder.

If binary data were involved (e.g., files), it would be indicated here, but this operation focuses on JSON metadata about storage.

Dependencies

  • Requires an active Bitrix24 account with appropriate permissions.
  • Needs one of the following authentication methods configured in n8n:
    • OAuth2 credentials for Bitrix24.
    • A Bitrix24 webhook URL.
    • An API key credential for Bitrix24.
  • The node relies on internal helper functions to make API calls to Bitrix24's endpoints.

Troubleshooting

  • Common issues:

    • Authentication failures due to incorrect or expired credentials.
    • Invalid JSON format in the "Filter" or "Order" options causing API errors.
    • Pagination parameters out of range leading to empty or partial results.
  • Error messages:

    • Errors thrown by the Bitrix24 API will be caught and can appear in the output if "Continue On Fail" is enabled.
    • Typical error messages might include authentication errors, invalid parameter formats, or rate limiting notices.
  • Resolutions:

    • Verify and refresh authentication credentials.
    • Ensure JSON inputs for filters and ordering are correctly formatted.
    • Adjust pagination parameters to valid ranges.

Links and References

Discussion