Bitrix24 icon

Bitrix24

Interact with Bitrix24 CRM and business platform

Actions290

Overview

This node interacts with Bitrix24's Lists resource, specifically to retrieve details about a particular section within a list. It is useful when you want to fetch metadata or information about a specific section in a Bitrix24 list, such as its properties or configuration.

Common scenarios include:

  • Automating workflows that require fetching section details before processing list elements.
  • Integrating Bitrix24 lists with other systems by retrieving section data dynamically.
  • Validating or displaying section information in custom dashboards or reports.

For example, you might use this node to get the details of a project phase (section) within a task list to decide subsequent automation steps based on the section's attributes.

Properties

Name Meaning
Authentication Method to authenticate with Bitrix24: OAuth2, Webhook URL, or API Key authentication.
List ID The unique identifier of the Bitrix24 list containing the section.
Section ID The unique identifier of the section within the specified list to retrieve.
Options Additional optional parameters:
- Access Token Override the default credential token with a specific access token string.
- Filter JSON-formatted filter criteria to narrow down results (if applicable).
- Order JSON-formatted sort order for returned data (if applicable).
- Select Comma-separated list of fields to select from the section data.

Output

The node outputs an array of items where each item contains a json object representing the retrieved section's data. This typically includes all available fields and metadata of the specified section in the Bitrix24 list.

If binary data were involved (not indicated here), it would be included in a separate binary property, but this operation focuses on JSON data only.

Example output structure (simplified):

{
  "ID": "123",
  "NAME": "Section Name",
  "DESCRIPTION": "Description of the section",
  "CREATED_BY": "User ID",
  "DATE_CREATE": "2023-01-01T12:00:00Z",
  ...
}

Dependencies

  • Requires valid authentication credentials for Bitrix24 via one of the supported methods (OAuth2, webhook URL, or API key).
  • The node depends on Bitrix24 API endpoints to fetch list and section data.
  • No additional external services are required beyond Bitrix24 itself.
  • Proper configuration of credentials in n8n is necessary to enable successful API calls.

Troubleshooting

  • Invalid Credentials: If authentication fails, verify that the provided OAuth2 tokens, webhook URLs, or API keys are correct and have sufficient permissions.
  • Missing or Incorrect IDs: Ensure that both the List ID and Section ID are accurate and correspond to existing entities in Bitrix24.
  • API Rate Limits: Bitrix24 may impose rate limits; if requests fail due to throttling, consider adding delays or retries.
  • Malformed JSON in Options: When using the Filter or Order options, ensure the JSON syntax is correct to avoid parsing errors.
  • Error Messages: The node returns error messages in the output JSON under the error field if the API call fails. Review these messages for clues on what went wrong.

Links and References

Discussion