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 interacts with Bitrix24's Lists resource, specifically supporting the "Delete Field" operation. It allows users to delete a custom field from a specified list within Bitrix24. This is useful for maintaining and managing list schemas by removing obsolete or unwanted fields.
Common scenarios include:
- Cleaning up lists by removing deprecated fields.
- Automating list schema updates as part of larger workflows.
- Managing dynamic data structures in Bitrix24 Lists programmatically.
Example: Automatically deleting a custom field from a project task list when it is no longer needed.
Properties
| Name | Meaning |
|---|---|
| Authentication | Method of authenticating with Bitrix24: OAuth2 (recommended), Webhook (simpler but less secure), or API Key authentication. |
| List ID | The identifier of the list from which the field will be deleted. |
| Field ID | The identifier of the field to delete from the list. |
| Options | Additional optional parameters: |
| - Access Token | Use a specific access token instead of the one from credentials. |
| - Filter | JSON-formatted filter criteria (not typically used for delete field but available). |
| - Order | JSON-formatted sort order (not typically used for delete field but available). |
| - Select | Comma-separated list of fields to select (not typically used for delete field but available). |
Output
The node outputs an array of items where each item contains a json object representing the result of the delete operation. If successful, the output typically confirms the deletion or returns relevant status information from Bitrix24.
If an error occurs and the node is configured to continue on failure, the output includes an error field with the error message, the resource name, and a timestamp.
No binary data output is involved in this operation.
Dependencies
- Requires connection to Bitrix24 via one of the supported authentication methods (OAuth2, webhook URL, or API key).
- Needs appropriate permissions in Bitrix24 to delete fields from lists.
- No additional external services beyond Bitrix24 API are required.
- Proper configuration of credentials in n8n is necessary.
Troubleshooting
Common Issues:
- Invalid or missing List ID or Field ID will cause the operation to fail.
- Insufficient permissions in Bitrix24 to modify list fields.
- Incorrect authentication method or expired tokens.
Error Messages:
- Errors returned from Bitrix24 API will be propagated. Common messages might include "Field not found", "Access denied", or "Invalid list ID".
- If the node is set to continue on failure, errors are included in the output JSON under the
errorproperty.
Resolution Tips:
- Verify that the List ID and Field ID are correct and exist in Bitrix24.
- Ensure the authentication credentials have sufficient rights.
- Refresh or reconfigure authentication tokens if expired.
- Check network connectivity to Bitrix24 API endpoints.