Actions15
Overview
This node integrates with the Tripletex API v2 to manage products, including deleting a product by its ID. The "Delete Product" operation sends a DELETE request to the Tripletex API to remove a specified product from the system.
Common scenarios for this node include:
- Automating inventory cleanup by removing discontinued or obsolete products.
- Integrating product lifecycle management workflows where products are deleted after certain conditions.
- Synchronizing product data between Tripletex and other systems by deleting products no longer needed.
Example: Automatically delete a product in Tripletex when it is removed from an external e-commerce platform.
Properties
| Name | Meaning |
|---|---|
| Product ID | The ID of the product to delete |
Output
The output JSON contains the response from the Tripletex API after attempting to delete the product. Typically, this will be an empty object or confirmation message indicating successful deletion. If an error occurs, the output JSON will contain an error field with the error message.
No binary data is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the Tripletex API.
- The node uses the Tripletex API base URL, which depends on the environment (test or production).
- Proper network access to the Tripletex API endpoints is necessary.
Troubleshooting
- Validation errors: If the Product ID is missing or empty, the node will throw a validation error before making the API call.
- Authentication errors: Ensure that the API key credential is correctly configured and has sufficient permissions.
- API errors: If the product ID does not exist or cannot be deleted due to dependencies, the API may return an error message visible in the node output.
- Network issues: Connectivity problems to the Tripletex API endpoint can cause failures; verify network settings and firewall rules.
Links and References
- Tripletex API Documentation (official API docs)
- n8n documentation on HTTP Request Node (for understanding HTTP calls)