Actions25
Overview
This node interacts with the Bitrix24 CRM system to manage "Deal" records. Specifically, the "Delete" operation removes a deal record identified by its unique ID from the Bitrix24 CRM database.
Common scenarios for using this node include automating cleanup of outdated or invalid deals, integrating with other systems to synchronize deal lifecycle events, or managing deals programmatically without manual intervention.
For example, after a deal is marked as lost in another system, this node can be used to automatically delete the corresponding deal in Bitrix24 to keep data consistent.
Properties
| Name | Meaning |
|---|---|
| ID | The unique identifier of the deal record to delete. This is required to specify which deal should be removed. |
Output
The output is a JSON array where each element corresponds to the result of a delete operation on a deal record. Each element contains the response data returned by the Bitrix24 API after attempting to delete the specified deal.
The structure typically includes success confirmation or error details if the deletion failed.
No binary data is output by this node.
Dependencies
- Requires an active Bitrix24 API connection configured via an API key credential or webhook URL.
- The node uses the Bitrix24 webhook URL to send HTTP POST requests to endpoints like
crm.deal.delete.json. - Proper permissions in Bitrix24 are necessary to delete deal records.
Troubleshooting
- Missing Credentials: If no credentials or webhook URL are provided, the node will throw an error indicating that credentials or the webhook URL are required.
- Invalid ID: Providing an incorrect or non-existent deal ID will cause the API to return an error, which the node will propagate.
- API Errors: Network issues or Bitrix24 API downtime may cause request failures.
- Continue On Fail: If enabled, the node will continue processing subsequent items even if some deletions fail, returning error messages in the output JSON.
To resolve errors:
- Ensure the webhook URL and API credentials are correctly set up.
- Verify the deal ID exists in Bitrix24 before attempting deletion.
- Check network connectivity and Bitrix24 service status.