Actions20
Overview
This node manages custom user fields in Bitrix24 CRM entities such as Leads, Deals, Contacts, and Companies. Specifically for the Company resource with the Delete operation, it deletes a specified custom user field from a company record in Bitrix24.
Common scenarios include cleaning up unused or obsolete custom fields in your Bitrix24 CRM to keep data structures tidy and relevant. For example, if a custom field created earlier is no longer needed for company records, this node can remove it programmatically within an automated workflow.
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 the delete operation for each input item. The JSON structure typically contains the API response confirming whether the deletion was successful.
Example output JSON snippet:
[
{
"result": true
}
]
If the node encounters errors (e.g., invalid Field ID), the output may contain an error message object instead.
Dependencies
- Requires an active Bitrix24 API authentication credential that provides a webhook URL.
- The webhook URL is used to construct API endpoints for managing user fields.
- The node uses HTTP POST requests to Bitrix24 REST API endpoints.
- No additional external dependencies beyond standard HTTP client libraries bundled with n8n.
Troubleshooting
- Missing Credentials or Webhook URL: The node will throw an error if credentials are missing or the webhook URL is not provided. Ensure valid Bitrix24 API credentials are configured.
- Invalid Field ID: If the specified Field ID does not exist or is incorrect, the Bitrix24 API will return an error. Verify the Field ID before running the node.
- API Errors: Network issues or permission problems on Bitrix24 side may cause API errors. The node surfaces these errors with descriptive messages from Bitrix24.
- Continue On Fail: If enabled, the node continues processing remaining items even if some deletions fail, returning error details per failed item.