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 the Bitrix24 CRM and business platform, specifically focusing on the "Timeline" resource's "Unbind" operation. The "Unbind" operation removes a previously established binding between a timeline event and a specified CRM entity (such as a Lead, Deal, Contact, or Company). This is useful when you want to dissociate timeline entries from entities, for example, cleaning up incorrect associations or managing event visibility in the CRM timeline.
Practical scenarios include:
- Removing an outdated or incorrect link between a timeline event and a CRM record.
- Managing timeline data by unbinding events that are no longer relevant to certain entities.
- Automating cleanup tasks in Bitrix24 workflows where timeline bindings need to be adjusted dynamically.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authenticating with Bitrix24: OAuth2 (recommended), Webhook (simpler), or API Key. |
| Entity Type | Type of CRM entity to unbind from: Lead, Deal, Contact, or Company. |
| Entity ID | Identifier of the specific CRM entity instance to unbind the timeline event from. |
| Binding Data | JSON object describing the binding details to remove (e.g., timeline event identifiers). |
| Options | Additional optional parameters including: |
| - Filter | JSON filter criteria to refine which bindings to affect. |
| - Order | JSON specifying sort order for processing bindings. |
| - Start | Number indicating start position for pagination if multiple bindings exist. |
Output
The node outputs an array of items, each containing a json field representing the result of the unbind operation. Typically, this includes confirmation of the unbinding action or error information if the operation failed.
If the operation encounters an error and the node is configured to continue on failure, the output item will contain an error field with the error message, along with the resource name and a timestamp.
No binary data output is indicated for this operation.
Dependencies
- Requires authentication credentials for Bitrix24 via one of the supported methods: OAuth2 token, webhook URL, or API key.
- Relies on Bitrix24 API endpoints to perform the unbind operation.
- No additional external services beyond Bitrix24 are required.
- Proper configuration of credentials in n8n is necessary for successful API communication.
Troubleshooting
Common Issues:
- Incorrect or missing authentication credentials leading to authorization errors.
- Invalid or non-existent Entity ID or Entity Type causing the API to reject the unbind request.
- Malformed JSON in the Binding Data property resulting in request failures.
- Network connectivity issues preventing access to Bitrix24 API.
Error Messages:
- Authorization errors typically indicate invalid or expired credentials; re-authenticate or update credentials.
- Validation errors may mention missing required fields or invalid formats; verify input properties carefully.
- API rate limits or timeouts can cause temporary failures; consider retrying after some delay.
Resolution Tips:
- Double-check the Entity Type and Entity ID values correspond to existing records in Bitrix24.
- Validate the JSON structure in Binding Data before execution.
- Ensure the selected authentication method is correctly set up and active.
- Enable "Continue On Fail" in the node settings to handle errors gracefully during batch operations.