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 Workflow resource and the Get Task operation, it retrieves detailed information about a specific task by its ID.
Common scenarios where this node is beneficial include:
- Automating task management workflows by fetching task details dynamically.
- Integrating Bitrix24 tasks into other systems or automations.
- Monitoring task status or metadata within larger automation pipelines.
For example, you might use this node to fetch a task's current status and due date in order to trigger notifications or update related records elsewhere.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authenticating with Bitrix24. Options: - OAuth2 (recommended for production) - Webhook (simpler but less secure) - API Key |
| Task ID | The unique identifier of the task to retrieve. This is required to specify which task to get. |
Note: The provided property definition shows that the "Task ID" input is required and must be supplied when using the "Get Task" operation under the "Workflow" resource.
Output
The node outputs JSON data representing the retrieved task details from Bitrix24. The exact structure depends on the Bitrix24 API response for the task but typically includes fields such as task ID, title, description, status, assigned users, deadlines, and other metadata.
If an error occurs during execution and the node is configured to continue on failure, the output will contain an error field with the error message, along with the resource name and a timestamp.
The node does not output binary data.
Dependencies
Requires valid authentication credentials for Bitrix24, which can be provided via:
- OAuth2 token
- Webhook URL
- API key
The node relies on Bitrix24's REST API endpoints to fetch task data.
No additional external services are required beyond Bitrix24 itself.
Troubleshooting
Common Issues:
- Invalid or missing Task ID: The node requires a valid task ID; ensure this is correctly provided.
- Authentication failures: Verify that the chosen authentication method is properly configured and credentials are valid.
- API rate limits or connectivity issues with Bitrix24 may cause errors.
Error Messages:
- Errors returned from Bitrix24 API calls will be surfaced in the node's output if "Continue On Fail" is enabled.
- Common error messages include authentication errors, "task not found," or network timeouts.
Resolutions:
- Double-check the Task ID value.
- Confirm authentication credentials and permissions.
- Ensure network connectivity to Bitrix24.
- Review Bitrix24 API documentation for any changes or limitations.
Links and References
- Bitrix24 Official API Documentation
- Bitrix24 Tasks REST API Reference
- n8n Documentation on Creating Custom Nodes