Actions15
Overview
This node connects to the Tripletex API v2 and allows you to perform various operations on different resources such as customers, products, orders, inventory, invoices, and webhooks. Specifically, for the Product resource with the Get operation, it retrieves detailed information about a single product by its ID.
Typical use cases include:
- Fetching product details to display or process in workflows.
- Integrating product data from Tripletex into other systems.
- Automating inventory or sales processes that require up-to-date product information.
For example, you might use this node to get the price, description, and SKU of a product before creating an order or updating your e-commerce platform.
Properties
| Name | Meaning |
|---|---|
| Product ID | The unique identifier of the product to retrieve. This is required for the Get, Update, and Delete operations on the Product resource. |
Output
The node outputs JSON data representing the product details returned from the Tripletex API. The structure corresponds to the product object in Tripletex, typically including fields like:
id(product identifier)name(product name)number(SKU or product number)description(textual description)unitPrice(price per unit)costPrice(cost price)currency(currency code)
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the Tripletex API.
- The node uses the Tripletex environment setting to determine whether to connect to the test or production API endpoint.
- Proper configuration of the API credentials in n8n is necessary for successful requests.
Troubleshooting
- Validation errors: If the Product ID is missing or empty when performing Get, Update, or Delete operations, the node will throw a validation error indicating the missing required field.
- Authentication failures: Ensure the API key credential is correctly set up and has the necessary permissions.
- API errors: If the product ID does not exist or is invalid, the API may return a 404 or similar error, which will be surfaced by the node.
- Network issues: Connectivity problems to the Tripletex API endpoints can cause request failures.
To resolve these issues:
- Double-check the Product ID input.
- Verify API credentials and environment settings.
- Confirm the product exists in Tripletex.
- Check network connectivity and firewall rules.
Links and References
- Tripletex API Documentation (official API docs)
- n8n documentation on HTTP Request Node for understanding underlying HTTP calls