Actions290
- Task Actions
- Direct API Actions
- CRM Actions
- User Actions
- SPA Actions
- Activity Actions
- Automation Actions
- Document Generator Actions
- Data Storage Actions
- Get Entity
- Add Entity
- Update Entity
- Delete Entity
- Get Entity Rights
- Get Entity Sections
- Add Entity Section
- Update Entity Section
- Delete Entity Section
- Get Entity Item
- Add Entity Item
- Update Entity Item
- Delete Entity Item
- Get Entity Item Properties
- Add Entity Item Property
- Update Entity Item Property
- Delete Entity Item Property
- Chat Actions
- User Field Actions
- File Actions
- User Field Config Actions
- Duplicate Actions
- Timeline Actions
- Disk Actions
- Upload File
- Download File
- Delete File
- Get File Info
- List Files
- Create Folder
- Delete Folder
- Get Storage Info
- Get Storages
- Get Storage
- Get Folders
- Get Folder
- Add Folder
- Update Folder
- Copy Folder
- Move Folder
- Rename Folder
- Get Files
- Get File
- Copy File
- Move File
- Rename File
- Share Item
- Get Shared Items
- Get Sharing Rights
- Update Sharing Rights
- Workflow Actions
- Status Actions
- Calendar Actions
- Chatbot Actions
- Events Actions
- Lists Actions
- Product Actions
- Open Lines Actions
- Telephony Actions
- Register External Call
- Finish External Call
- Hide External Call
- Show External Call
- Search CRM Entities
- Attach Call Record
- Get External Line
- Add External Line
- Update External Line
- Delete External Line
- Get Voximplant Statistics
- Get Voximplant Line
- Get Voximplant SIP Connector
- Get Voximplant SIP Line
- Add Voximplant SIP Line
- Update Voximplant SIP Line
- Delete Voximplant SIP Line
- Message Service Actions
- Notify Actions
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
errorfield if the API call fails. Review these messages for clues on what went wrong.