Actions20
Overview
This node manages custom user fields in Bitrix24 CRM entities such as Leads, Deals, Contacts, and Companies. Specifically for the Lead resource with the Delete operation, it deletes a specified custom user field from a Lead entity in Bitrix24.
Common scenarios include cleaning up unused or obsolete custom fields in your CRM to keep data structures tidy and relevant. For example, if a custom field used for a marketing campaign is no longer needed, this node can remove it programmatically.
Properties
| Name | Meaning |
|---|---|
| Field ID | The unique identifier of the custom user field to delete |
Output
The output is a JSON array where each element corresponds to the result of deleting a user field. The structure typically contains the API response confirming success or failure of the deletion request. If an error occurs and "Continue On Fail" is enabled, the output will contain an object with an error property describing the issue.
No binary data is produced by this node.
Example output snippet:
[
{
"result": true
}
]
or on error (if continuing on fail):
[
{
"error": "Field not found"
}
]
Dependencies
- Requires an active Bitrix24 API authentication credential that provides a webhook URL.
- The webhook URL must be configured correctly in the node credentials.
- Uses HTTP POST requests to Bitrix24 REST API endpoints.
- Optionally respects a language setting from credentials to set environment language for responses.
Troubleshooting
- Missing Credentials or Webhook URL: The node throws errors if credentials are missing or the webhook URL is not provided. Ensure you have configured valid Bitrix24 API credentials with a webhook URL.
- Invalid Field ID: Deletion will fail if the specified Field ID does not exist. Verify the Field ID before running the node.
- API Errors: If Bitrix24 returns an error, the node surfaces the error description. Common issues include permission problems or invalid parameters.
- Network Issues: Axios errors may occur due to connectivity problems; check network access to Bitrix24.
- Continue On Fail: When enabled, the node continues processing other items even if one fails, returning error details in the output.