Actions25
Overview
This node integrates with the Bitrix24 CRM system, allowing users to manage CRM records programmatically. Specifically for the Lead resource and the Delete operation, it deletes a lead record identified by its ID from the Bitrix24 CRM.
Common scenarios where this node is useful include:
- Automating cleanup of outdated or invalid leads.
- Integrating with other systems to remove leads after certain conditions are met (e.g., after conversion or disqualification).
- Managing lead lifecycle in bulk workflows.
Example: Automatically delete a lead when it is marked as "Lost" in another system by passing the lead's ID to this node.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the lead record to delete. This is required to specify which lead should be removed. |
Output
The node outputs an array of JSON objects corresponding to each input item processed. For the Delete operation on Lead, the output JSON typically contains the response from Bitrix24 API indicating success or failure of the deletion request. The exact structure depends on Bitrix24's API but generally includes status information.
No binary data output is produced by this operation.
Dependencies
- Requires a valid Bitrix24 API authentication token configured in n8n credentials.
- Needs the Bitrix24 webhook URL to send API requests.
- Uses HTTP POST requests to Bitrix24 endpoints following the pattern:
{webhookUrl}crm.lead.delete.json.
Troubleshooting
- Missing Credentials or Webhook URL: The node will throw errors if the API credentials or webhook URL are not set or invalid. Ensure these are properly configured.
- Invalid Lead ID: If the provided ID does not exist or is incorrect, the Bitrix24 API may return an error. Verify the ID before attempting deletion.
- API Errors: Network issues or Bitrix24 service downtime can cause request failures. Check connectivity and Bitrix24 service status.
- Continue On Fail: If enabled, the node will continue processing remaining items even if some deletions fail, returning error messages per failed item.