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 integrates with the Bitrix24 platform, allowing users to interact with various Bitrix24 resources such as CRM entities and business processes. Specifically, for the Lists resource and the Get Iblock Type ID operation, it retrieves the identifier of an information block type (Iblock Type ID) within Bitrix24.
Common scenarios where this node is beneficial include:
- Automating workflows that require fetching metadata about lists or information blocks in Bitrix24.
- Integrating Bitrix24 list data into other systems by first identifying the correct Iblock Type ID.
- Dynamically querying or filtering Bitrix24 lists based on their type identifiers.
Practical example:
- A user wants to synchronize a specific Bitrix24 list with an external database. They use this node to get the Iblock Type ID to ensure they are referencing the correct list type before performing further operations like fetching or updating list items.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method to authenticate with Bitrix24. Options: OAuth2 (recommended for production), Webhook (simpler but less secure), API Key authentication. |
| Options | Additional parameters to customize the request: |
| Access Token | Use a specific access token instead of the one from credentials. |
| Filter | JSON-formatted filter criteria to narrow down results. |
| Order | JSON-formatted sort order specification. |
| Select | Comma-separated list of fields to select from the response. |
Output
The node outputs an array of items, each containing a json object with the data returned from Bitrix24 corresponding to the requested Iblock Type ID. The exact structure depends on the Bitrix24 API response but typically includes identifiers and metadata related to the information block type.
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.
The node does not output binary data.
Dependencies
- Requires valid authentication with Bitrix24 via one of the supported methods: OAuth2, webhook URL, or API key.
- Uses Bitrix24 API endpoints internally to fetch data.
- No additional external dependencies beyond standard n8n environment and Bitrix24 credentials.
Troubleshooting
- Authentication errors: Ensure the selected authentication method is correctly configured with valid credentials or tokens.
- API call failures: May occur due to incorrect filters, invalid access tokens, or network issues. Check the error message returned in the output for details.
- Empty or missing results: Verify that the filter and select options are correctly specified and that the targeted Iblock Type exists in Bitrix24.
- Rate limits or timeouts: Bitrix24 API may impose rate limits; consider adding delays or handling retries if necessary.
Links and References
- Bitrix24 REST API Documentation
- Bitrix24 Official Website
- n8n documentation on creating custom nodes