Actions21
- Orders Actions
- Products Actions
- Repairs Actions
- Customers Actions
Overview
This node integrates with the Livo API to manage various business entities such as orders, products, repairs, and customers. Specifically, for the Delete Product operation under the Products resource, it allows users to delete a product from their e-commerce system by specifying the product's unique ID.
This operation is useful in scenarios where products are discontinued, out of stock permanently, or need to be removed due to errors or updates in the catalog. For example, an online store manager can automate the removal of obsolete products from their inventory system using this node.
Properties
| Name | Meaning |
|---|---|
| Product ID | The unique identifier of the product to delete. This is required to specify which product should be removed from the system. |
Output
The output of the Delete Product operation is the JSON response returned by the Livo API after attempting to delete the specified product. Typically, this will include confirmation of deletion or error details if the operation failed.
The node outputs an array of items, each containing a json property with the API response. There is no binary data output for this operation.
Example output structure:
{
"json": {
// API response confirming deletion or error message
}
}
Dependencies
- Requires an API key credential for authenticating requests to the Livo API.
- The node expects the Livo API base URL and API key to be configured in the credentials.
- No additional external dependencies are needed beyond the HTTP request helper provided by n8n.
Troubleshooting
Common issues:
- Invalid or missing Product ID: The operation requires a valid product ID; ensure this is correctly set.
- Authentication failures: Verify that the API key credential is correct and has sufficient permissions.
- Network or SSL errors: The node skips SSL certificate validation, but network connectivity issues may still cause failures.
Error messages:
- If the product does not exist or was already deleted, the API might return a 404 or similar error.
- Permission denied errors indicate insufficient rights to delete products.
Resolution tips:
- Double-check the Product ID input.
- Confirm API key validity and permissions.
- Review API documentation or contact support if unexpected errors occur.
Links and References
- Livo API Documentation (hypothetical link)
- n8n HTTP Request Node documentation for understanding request handling: https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/