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 products within the system. Specifically, for the Product - Delete operation, it deletes a product identified by its unique Product ID from the Arivo CRM database.
Common scenarios where this node is beneficial include:
- Automating cleanup of obsolete or discontinued products in your CRM.
- Synchronizing product deletions from other systems into Arivo CRM.
- Managing product lifecycle by programmatically removing entries when no longer needed.
For example, you might use this node in a workflow that triggers when a product is removed from your inventory system, ensuring the corresponding product is also deleted from Arivo CRM automatically.
Properties
| Name | Meaning |
|---|---|
| Product ID | The ID of the product to delete |
The Product ID property is required and must be provided as a string representing the unique identifier of the product you want to delete.
Output
The output of the node after executing the delete operation is a JSON object representing the result of the deletion request. Typically, this may include confirmation details such as success status or metadata about the deleted product.
If an error occurs during deletion (e.g., product not found), the output will contain an error message describing the issue.
No binary data output is involved in this operation.
Dependencies
- Requires an active connection to Arivo CRM via an API key credential configured in n8n.
- The node depends on the Arivo CRM API being accessible and the provided API key having sufficient permissions to delete products.
Troubleshooting
Common issues:
- Providing an invalid or non-existent Product ID will cause the deletion to fail.
- Network connectivity problems or incorrect API credentials can prevent successful communication with Arivo CRM.
- Insufficient permissions associated with the API key may result in authorization errors.
Error messages and resolutions:
"Product not found": Verify that the Product ID is correct and exists in Arivo CRM."Unauthorized"or"Forbidden": Check that the API key credential has the necessary permissions."Network Error"or timeouts: Ensure stable internet connection and that Arivo CRM API endpoints are reachable.
Links and References
- Arivo CRM Official Documentation (replace with actual URL)
- n8n Documentation on Credentials
- Arivo CRM API Reference (replace with actual URL)