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 product categories. Specifically, the Delete operation for the Product Category resource allows users to remove a product category from their CRM database by specifying its unique ID.
Common scenarios where this node is beneficial include:
- Cleaning up obsolete or unused product categories in your CRM.
- Automating category management workflows where categories are dynamically created and deleted.
- Integrating with other systems that require synchronization of product category data, including deletions.
For example, you might use this node in an automation workflow that deletes product categories which have not been used for a certain period or after migrating products to new categories.
Properties
| Name | Meaning |
|---|---|
| Category ID | The unique identifier (ID) of the product category to delete. This is required to specify which category should be removed from Arivo CRM. |
Output
The output of this node's execute method returns JSON data representing the result of the deletion operation. Typically, this will include confirmation details such as success status or any relevant metadata returned by the API after deleting the product category.
If the deletion fails and "Continue On Fail" is enabled, the output will contain an error message describing the failure.
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 product categories.
Troubleshooting
Common issues:
- Invalid or missing Category ID: Ensure the Category ID is correctly specified and exists in Arivo CRM.
- Insufficient permissions: The API key must have rights to delete product categories.
- Network or API errors: Connectivity issues or API downtime can cause failures.
Error messages:
"Category ID is required": Indicates the Category ID input was not provided."Not found"or similar: The specified Category ID does not exist."Unauthorized"or"Forbidden": The API key lacks permission to perform deletion.
To resolve these errors:
- Double-check the Category ID value.
- Verify API credentials and permissions.
- Check network connectivity 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 API authentication and error handling in n8n workflows