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
The Bitrix24 node integrates with the Bitrix24 CRM and business platform, enabling automation workflows to interact with various Bitrix24 resources. Specifically, for the Task resource with the Complete operation, this node allows users to mark tasks as completed within their Bitrix24 environment.
This is useful in scenarios such as:
- Automatically completing tasks when certain conditions are met in a workflow.
- Synchronizing task statuses between Bitrix24 and other systems.
- Streamlining project management by programmatically updating task progress.
For example, after a deal is closed in a sales pipeline, a workflow could automatically complete all related tasks in Bitrix24 using this node.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authenticating with Bitrix24: - OAuth2 (recommended for production) - Webhook (simpler but less secure) - API Key |
| Options | Collection of optional parameters to customize the request: - Filter: JSON criteria to filter tasks - Order: JSON defining sort order - Select: JSON array specifying which fields to retrieve - Group: JSON criteria for grouping results - Custom Parameters: Additional JSON parameters to include in the API call |
Output
The node outputs an array of items where each item contains a json object representing the response from Bitrix24 after attempting to complete the specified task(s). The structure typically includes:
- Confirmation or status of the completion action.
- Any error messages if the operation failed.
- Metadata such as timestamps and resource identifiers.
If the node encounters an error during execution and "Continue On Fail" is enabled, it outputs an item with an error field describing the issue, along with the resource name and timestamp.
The node does not output binary data.
Dependencies
- Requires connection to Bitrix24 via one of the supported authentication methods (OAuth2, webhook URL, or API key).
- Needs proper configuration of credentials in n8n corresponding to the chosen authentication method.
- Relies on Bitrix24 API endpoints to perform operations on tasks.
Troubleshooting
Common Issues:
- Authentication failures due to incorrect or expired credentials.
- Invalid or malformed JSON in the options properties (Filter, Order, Select, Group, Custom Parameters).
- Attempting to complete a task that does not exist or is already completed.
- Network connectivity issues preventing API calls.
Error Messages:
- Errors returned from Bitrix24 API will be included in the output if "Continue On Fail" is enabled.
- Typical errors might include permission denied, invalid parameters, or resource not found.
Resolutions:
- Verify and refresh authentication credentials.
- Ensure JSON inputs are valid and correctly formatted.
- Confirm the task ID or criteria used to identify tasks are correct.
- Check network connectivity and Bitrix24 service status.