Actions68
- Email Actions
- File Actions
- Note Actions
- Product Category Actions
- Task Actions
- Address Actions
- Company Actions
- Custom Record Actions
- Deal Actions
- Deal Item Actions
- Person Actions
- Phone Actions
- Product Actions
Overview
This node integrates with Arivo CRM to manage "Deal Item" resources. Specifically, the "Delete" operation removes a deal item from a specified deal in the CRM system. This is useful when you want to programmatically clean up or correct deal data by removing items that are no longer relevant or were added by mistake.
Practical examples include:
- Automatically deleting obsolete or canceled deal items during a workflow.
- Cleaning up deal items after a product return or cancellation event.
- Managing deal contents dynamically based on external triggers or business logic.
Properties
| Name | Meaning |
|---|---|
| Deal ID | The unique identifier of the deal from which the item will be deleted. |
| Item ID | The unique identifier of the specific deal item to delete. |
Output
The output JSON contains the response from the deletion operation. Typically, this will confirm whether the deal item was successfully deleted or provide error information if the deletion failed.
Since this operation deletes an item, no binary data output is expected.
Example output structure (conceptual):
{
"success": true,
"message": "Deal item deleted successfully",
"deletedItemId": "itemIdValue"
}
Or in case of failure:
{
"error": "Error message describing why deletion failed"
}
Dependencies
- Requires an API key credential for authenticating with Arivo CRM.
- The node depends on network connectivity to Arivo CRM's API endpoints.
- Proper permissions in Arivo CRM to delete deal items are necessary.
Troubleshooting
Common issues:
- Invalid or missing Deal ID or Item ID parameters will cause the deletion to fail.
- Insufficient permissions in Arivo CRM to delete deal items.
- Network or authentication errors due to invalid API credentials.
Common error messages and resolutions:
"Invalid Deal ID": Verify that the provided Deal ID exists and is correctly formatted."Invalid Item ID": Ensure the Item ID corresponds to an existing deal item within the specified deal."Authentication failed": Check that the API key credential is valid and has not expired."Permission denied": Confirm that the API user has rights to delete deal items."Network error": Check internet connection and Arivo CRM service status.
Links and References
- Arivo CRM API Documentation (replace with actual URL)
- n8n documentation on Creating Custom Nodes
- General best practices for managing CRM data via API