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, specifically providing access to various Bitrix24 resources and operations. For the Timeline resource with the Get Bindings Fields operation, it retrieves binding field information related to timeline entries in Bitrix24.
Common scenarios where this node is beneficial include:
- Automating retrieval of timeline-related metadata or fields for CRM activities.
- Integrating Bitrix24 timeline data into workflows for reporting or synchronization.
- Filtering and sorting timeline bindings based on custom criteria.
For example, a user might want to fetch all binding fields associated with timeline events filtered by certain conditions or sorted by date, then use that data downstream in an automation workflow.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method to authenticate with Bitrix24: - OAuth2 (recommended for production) - Webhook (simpler but less secure) - API Key |
| Options | Collection of optional parameters to customize the request: - Filter: JSON object specifying filter criteria - Order: JSON object specifying sort order - Start: Number indicating start position for pagination |
Output
The node outputs an array of items where each item contains a json object representing the response from Bitrix24 for the requested resource and operation.
- The
jsonoutput includes the binding fields data retrieved from Bitrix24 according to the specified filters, order, and pagination. - If an error occurs and "Continue On Fail" is enabled, the output will contain an error object with keys:
error(error message),resource(requested resource), andtimestamp(ISO timestamp of the error).
No binary data output is indicated for this operation.
Dependencies
- Requires connection to Bitrix24 via one of the supported authentication methods (OAuth2, webhook URL, or API key).
- Uses internal helper functions to make API calls to Bitrix24 endpoints.
- No additional external dependencies beyond Bitrix24 API access.
Troubleshooting
Common issues:
- Incorrect or expired authentication credentials can cause authorization failures.
- Malformed JSON in the "Filter" or "Order" options may lead to API errors.
- Pagination parameters out of range could result in empty responses.
Error messages:
- Errors thrown during execution will be surfaced unless "Continue On Fail" is enabled.
- Error objects include the message and resource context to aid debugging.
- To resolve errors, verify authentication setup, validate JSON syntax in options, and check API limits or permissions.
Links and References
- Bitrix24 Official API Documentation
- Bitrix24 Timeline API Reference
- OAuth2 Authentication Guide for Bitrix24
- n8n Documentation on Creating Custom Nodes and Using Credentials