Actions10
Overview
This node interacts with Bitrix24 CRM to manage sales funnels (referred to as "Воронка продаж" or "category" in the code). Specifically, the Get operation for the sales funnel resource retrieves detailed information about a particular sales funnel by its ID. This is useful when you want to fetch and use existing sales funnel data within your automation workflows.
Common scenarios include:
- Retrieving a specific sales funnel's details to display or process further.
- Integrating Bitrix24 sales funnel data into reports or dashboards.
- Using sales funnel data as input for conditional logic or other workflow steps.
Example: You have a sales funnel ID and want to get its name, sorting order, and default status to update another system or trigger notifications based on funnel properties.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the sales funnel to retrieve. Required for Get, Update, and Delete operations on the sales funnel resource. |
Output
The output is a JSON array where each item corresponds to the result of the executed operation per input item.
For the Get operation on the sales funnel resource, the output JSON object contains the full details of the requested sales funnel, including fields such as:
ID: The sales funnel's unique identifier.- Other properties returned by the Bitrix24 API related to the sales funnel (e.g., name, sort order, default flag).
No binary data is output by this node.
Dependencies
- Requires an active Bitrix24 API credential configured in n8n that provides a webhook URL for API calls.
- The node uses HTTP POST requests to Bitrix24 webhook endpoints to perform operations.
- Optionally sets the environment language variable based on credential settings (defaulting to Russian if not specified).
Troubleshooting
- Missing credentials or webhook URL: The node throws errors if no credentials are found or if the webhook URL is missing. Ensure the Bitrix24 API credential is properly set up with a valid webhook URL.
- API errors from Bitrix24: If the Bitrix24 API returns an error, the node surfaces the error message prefixed with "Bitrix24 API error:". Check the error description for issues like invalid IDs or permissions.
- Network or Axios errors: Network failures or unexpected responses will cause errors. Verify network connectivity and webhook URL correctness.
- Continue on Fail: If enabled, the node continues processing subsequent items even if some fail, returning error messages in the output JSON.