Bitrix24 icon

Bitrix24

Interact with Bitrix24 CRM and business platform

Actions290

Overview

This node interacts with the Bitrix24 platform, specifically focusing on managing and retrieving data related to "Lists" within Bitrix24. The "Get Sections" operation under the "Lists" resource fetches sections (subdivisions or categories) of a specified list by its ID.

Common scenarios where this node is beneficial include:

  • Organizing and categorizing items in Bitrix24 lists by retrieving their sections.
  • Automating workflows that depend on list structure, such as syncing list sections with external systems.
  • Reporting or analytics tasks that require understanding the segmentation of list data.

Practical example:

  • A user wants to retrieve all sections of a particular project task list to display them in a dashboard or use them for further processing in an automation workflow.

Properties

Name Meaning
Authentication Method to authenticate with Bitrix24: OAuth2 (recommended), Webhook URL (simpler but less secure), or API Key authentication.
List ID The unique identifier of the Bitrix24 list from which to get sections.
Options Additional optional parameters:
β€’ Access Token: Use a specific access token instead of credentials.
β€’ Filter: JSON object to filter sections.
β€’ Order: JSON object to specify sorting order.
β€’ Select: Comma-separated list of fields to retrieve for each section.

Output

The node outputs an array of JSON objects representing the sections retrieved from the specified Bitrix24 list. Each object corresponds to a section and contains fields as per the selection or default response from Bitrix24's API.

If binary data were involved (not indicated here), it would typically represent files or attachments related to sections, but this operation focuses on JSON data only.

Dependencies

  • Requires connection to Bitrix24 via one of the supported authentication methods: OAuth2, Webhook URL, or API Key.
  • Needs proper configuration of credentials in n8n corresponding to the chosen authentication method.
  • Uses Bitrix24 API endpoints internally to fetch list sections.
  • Optional: If using the "Access Token" option, a valid token must be provided explicitly.

Troubleshooting

  • Common Issues:

    • Invalid or missing List ID: Ensure the List ID is correct and exists in Bitrix24.
    • Authentication failures: Verify that the selected authentication method is properly configured and credentials are valid.
    • API rate limits or permission errors: Check Bitrix24 account permissions and API usage limits.
  • Error Messages:

    • Errors returned from Bitrix24 API will be included in the output JSON under an error field if "Continue On Fail" is enabled.
    • Common error messages might indicate invalid tokens, insufficient permissions, or malformed filters/orders.
  • Resolutions:

    • Double-check List ID and ensure it matches an existing list.
    • Re-authenticate or update credentials if authentication errors occur.
    • Validate JSON syntax for filter and order options.
    • Enable "Continue On Fail" to handle errors gracefully in workflows.

Links and References

Discussion