Actions290
- Task Actions
- Direct API Actions
- CRM Actions
- User Actions
- SPA Actions
- Activity Actions
- Automation Actions
- Document Generator Actions
- Data Storage Actions
- Get Entity
- Add Entity
- Update Entity
- Delete Entity
- Get Entity Rights
- Get Entity Sections
- Add Entity Section
- Update Entity Section
- Delete Entity Section
- Get Entity Item
- Add Entity Item
- Update Entity Item
- Delete Entity Item
- Get Entity Item Properties
- Add Entity Item Property
- Update Entity Item Property
- Delete Entity Item Property
- Chat Actions
- User Field Actions
- File Actions
- User Field Config Actions
- Duplicate Actions
- Timeline Actions
- Disk Actions
- Upload File
- Download File
- Delete File
- Get File Info
- List Files
- Create Folder
- Delete Folder
- Get Storage Info
- Get Storages
- Get Storage
- Get Folders
- Get Folder
- Add Folder
- Update Folder
- Copy Folder
- Move Folder
- Rename Folder
- Get Files
- Get File
- Copy File
- Move File
- Rename File
- Share Item
- Get Shared Items
- Get Sharing Rights
- Update Sharing Rights
- Workflow Actions
- Status Actions
- Calendar Actions
- Chatbot Actions
- Events Actions
- Lists Actions
- Product Actions
- Open Lines Actions
- Telephony Actions
- Register External Call
- Finish External Call
- Hide External Call
- Show External Call
- Search CRM Entities
- Attach Call Record
- Get External Line
- Add External Line
- Update External Line
- Delete External Line
- Get Voximplant Statistics
- Get Voximplant Line
- Get Voximplant SIP Connector
- Get Voximplant SIP Line
- Add Voximplant SIP Line
- Update Voximplant SIP Line
- Delete Voximplant SIP Line
- Message Service Actions
- Notify Actions
Overview
This node allows users to delete a User Field Configuration in Bitrix24 CRM. User Field Configurations define custom fields for various CRM entities such as Deals, Leads, Contacts, or Smart Processes. Deleting a user field configuration removes the custom field definition from the specified entity.
Common scenarios include:
- Cleaning up obsolete or unused custom fields from CRM entities.
- Automating the management of CRM schema by removing fields no longer needed.
- Integrating with workflows that dynamically adjust CRM data structures.
Example: A sales automation workflow detects that a custom "Customer Feedback" field is no longer relevant and deletes it from the Deal entity automatically.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authenticating with Bitrix24 API. Options: OAuth2 (recommended), Webhook (simpler), API Key. |
| ID | The unique identifier of the user field configuration to delete. |
| Entity ID | The target entity's ID where the user field config exists. Examples: DEAL, LEAD, CONTACT, or CRM_[ID] for Smart Process. |
| Options | Additional options collection. Contains: Access Token (string) for authentication purposes. |
Output
The node outputs JSON data representing the result of the deletion operation. Typically, this will confirm success or provide error details if the deletion failed.
If an error occurs and the node is configured to continue on failure, the output JSON includes:
error: The error message string.resource: The resource name ("userFieldConfig").timestamp: ISO timestamp of when the error occurred.
No binary data output is produced by this node.
Dependencies
- Requires connection to Bitrix24 CRM via one of the supported authentication methods (OAuth2, webhook URL, or API key).
- Needs appropriate permissions in Bitrix24 to delete user field configurations.
- No additional external services beyond Bitrix24 API are required.
Troubleshooting
Common issues:
- Invalid or missing ID or Entity ID parameters will cause the API call to fail.
- Insufficient permissions in Bitrix24 to delete user fields.
- Incorrect authentication setup leading to authorization errors.
- Network connectivity issues preventing API calls.
Error messages:
"Failed to load fields"or similar indicates problems fetching necessary metadata before deletion.- Authorization errors suggest checking API credentials and scopes.
- If the node throws an error but is set to continue on fail, the error details appear in the output JSON under the
errorproperty.
Resolutions:
- Verify the correctness of the ID and Entity ID values.
- Ensure the API credentials have delete permissions.
- Confirm network access to Bitrix24 endpoints.
- Use OAuth2 authentication for production environments for better security and reliability.