Bitrix24 Auxiliary icon

Bitrix24 Auxiliary

Управление вспомогательными сущностями в Bitrix24

Actions10

Overview

This node interacts with Bitrix24 CRM to manage sales funnels ("Воронка продаж") and their statuses. Specifically, the "Delete" operation for the "Воронка продаж" (category) resource allows users to delete a sales funnel category by its ID.

Common scenarios include:

  • Automating cleanup of outdated or unused sales funnel categories in Bitrix24.
  • Integrating Bitrix24 sales funnel management into broader workflows where categories need to be programmatically removed.
  • Maintaining data hygiene by removing obsolete sales funnel stages.

Example use case:

  • A user wants to delete a specific sales funnel category identified by its ID after archiving related deals elsewhere.

Properties

Name Meaning
ID The unique identifier of the sales funnel category to delete. This is required to specify which category to remove.

Output

The output is a JSON array where each element corresponds to one input item processed. For the delete operation on a sales funnel category, each output object includes:

  • success: Boolean indicating if the deletion was successful.
  • id: The ID of the deleted sales funnel category.

Example output JSON:

[
  {
    "success": true,
    "id": "123"
  }
]

No binary data is produced by this node.

Dependencies

  • Requires an active Bitrix24 API connection via a webhook URL credential.
  • The node uses HTTP POST requests to Bitrix24's webhook endpoints to perform operations.
  • The webhook URL must be configured correctly in the node credentials.
  • Optionally sets the default language environment variable based on credential settings (defaults to Russian).

Troubleshooting

  • Missing Credentials: If no credentials or webhook URL are provided, the node will throw an error indicating these are required.
  • API Errors: If Bitrix24 returns an error (e.g., invalid ID, permission denied), the node surfaces the API error message prefixed with "Bitrix24 API error:".
  • Invalid ID: Providing an incorrect or non-existent category ID will cause the API to fail; verify the ID before running the node.
  • Network Issues: Connectivity problems to Bitrix24 webhook URL can cause request failures.
  • Continue On Fail: If enabled, the node continues processing other items even if some deletions fail, returning error messages per failed item.

Links and References

Discussion