Bitrix24 icon

Bitrix24

Interact with Bitrix24 CRM and business platform

Actions290

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

Discussion