Bitrix24 icon

Bitrix24

Interact with Bitrix24 CRM and business platform

Actions290

Overview

This node integrates with the Bitrix24 CRM platform, allowing users to perform various operations on Bitrix24 resources. Specifically, for the Product resource and the Delete Product Property operation, it enables deleting a product property by its ID.

Typical use cases include automating the management of product properties in Bitrix24, such as removing outdated or incorrect product attributes programmatically within an n8n workflow. For example, if a product property is no longer relevant or was created by mistake, this node can delete it automatically based on the provided property ID.

Properties

Name Meaning
Authentication Method to authenticate with Bitrix24: OAuth2 (recommended), Webhook (simpler but less secure), or API Key authentication.
Property ID The unique identifier of the product property to delete. This is a required string input.

Output

The node outputs JSON data representing the result of the deletion operation. If successful, the output typically contains confirmation details from Bitrix24 about the deleted property. In case of failure, the output includes an error message with the reason for failure and a timestamp.

The output structure looks like:

{
  "json": {
    // Result of the delete operation or error details
  },
  "pairedItem": {
    "item": 0
  }
}

No binary data output is produced by this node.

Dependencies

  • Requires connection to Bitrix24 via one of the supported authentication methods:

    • OAuth2 authentication token
    • Webhook URL
    • API key credential
  • The node depends on Bitrix24's API endpoints to manage product properties.

  • Proper configuration of credentials in n8n is necessary to authenticate API requests.

Troubleshooting

  • Common Issues:

    • Invalid or missing Property ID: Ensure the Property ID is correct and exists in Bitrix24.
    • Authentication failures: Verify that the selected authentication method is correctly configured and valid.
    • API permission errors: The authenticated user must have sufficient permissions to delete product properties.
  • Error Messages:

    • Errors returned from Bitrix24 API will be included in the output JSON under the error field.
    • If the node is set to continue on fail, errors are captured and passed downstream; otherwise, the workflow execution stops.
  • Resolution Tips:

    • Double-check the Property ID value.
    • Confirm that the API credentials are active and have the necessary scopes/permissions.
    • Review Bitrix24 API limits or restrictions that might block deletion.

Links and References


This summary is based on static analysis of the node's source code and provided property definitions without runtime execution.

Discussion