Bitrix24 User Field icon

Bitrix24 User Field

Работа с пользовательскими полями в Bitrix24

Overview

This node manages custom user fields in Bitrix24 CRM entities such as Leads, Deals, Contacts, and Companies. Specifically for the Contact - Delete operation, it deletes a specified custom user field from the Contact resource 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 is no longer needed for contacts, this node can remove it programmatically as part of 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 structure typically contains the API response confirming whether the deletion was successful.

Example output JSON snippet:

[
  {
    "result": true
  }
]

If the deletion fails, the output may contain an error message instead.

Dependencies

  • Requires an API authentication token credential for Bitrix24 with permissions to manage CRM user fields.
  • Needs the Bitrix24 webhook URL configured in the credentials to send API requests.
  • Uses HTTP POST requests to Bitrix24 REST API endpoints.

Troubleshooting

  • Missing Credentials or Webhook URL: The node will throw an error if the API credentials or webhook URL are not set or returned.
  • Invalid Field ID: If the provided Field ID does not exist or is incorrect, the Bitrix24 API will return an error indicating the field could not be found or deleted.
  • API Errors: Network issues or permission problems may cause API errors. The node surfaces these errors with messages from Bitrix24's API response.
  • To resolve errors, verify that the Field ID is correct, the API credentials have sufficient rights, and the webhook URL is valid.

Links and References

Discussion