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 allows interaction with the Bitrix24 CRM and business platform. Specifically, for the Task resource with the Pause operation, this node enables pausing tasks within Bitrix24. This can be useful in automation workflows where task progress needs to be temporarily halted based on certain conditions or triggers.
Common scenarios include:
- Automatically pausing a task when waiting for external input or approval.
- Temporarily suspending task execution during off-hours or holidays.
- Integrating with other systems to control task states dynamically.
Example: A workflow that pauses a project task when a related document is under review, preventing further actions until the review completes.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authenticating with Bitrix24. Options: OAuth2 (recommended for production), Webhook (simpler but less secure), API Key authentication. |
| Options | Collection of optional parameters to customize the request: |
| - Filter | JSON object specifying filter criteria to narrow down tasks. |
| - Order | JSON object defining sorting order of results. |
| - Select | JSON array listing specific fields to retrieve. |
| - Group | JSON object specifying grouping criteria. |
| - Custom Parameters | JSON object for any additional parameters supported by the Bitrix24 API. |
Output
The node outputs an array of items, each containing a json property with the response data from Bitrix24 after processing the pause operation on tasks. The exact structure depends on the Bitrix24 API response but generally includes details about the paused task(s).
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.
No binary data output is indicated.
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
- Authentication errors: Ensure correct credentials are configured according to the selected authentication method.
- API call failures: Check network connectivity and Bitrix24 API availability.
- Invalid filter/order/select/group JSON: Malformed JSON in options may cause errors; validate JSON syntax before use.
- Error messages: If the node throws errors, they will be included in the output if "Continue On Fail" is enabled, helping diagnose issues.
- Missing resource or operation: Confirm that "Task" resource and "Pause" operation are correctly selected.
Links and References
- Bitrix24 Official API Documentation
- Bitrix24 CRM Tasks API
- OAuth2 Authentication overview for Bitrix24: available in Bitrix24 developer docs