Actions15
Overview
This node integrates with the Tripletex API v2 to manage products within the Tripletex system. Specifically, the "Create" operation for the "Product" resource allows users to add new products by specifying details such as product name, number (SKU), description, pricing, and currency.
Common scenarios where this node is beneficial include:
- Automating product catalog creation in Tripletex from other systems or workflows.
- Synchronizing product data between e-commerce platforms and Tripletex accounting software.
- Bulk importing products into Tripletex via n8n workflows.
For example, a user can create a workflow that triggers when a new product is added in an online store, then uses this node to automatically create the corresponding product in Tripletex with matching details.
Properties
| Name | Meaning |
|---|---|
| Product Name | The name of the product. This is a required field. |
| Product Number | The product number or SKU identifier. |
| Description | A textual description of the product. |
| Unit Price | The selling price per unit of the product. |
| Cost Price | The cost price per unit of the product. |
| Currency | The currency code for prices (e.g., NOK). Defaults to "NOK" if not specified. |
Output
The node outputs JSON data representing the response from the Tripletex API after creating the product. This typically includes the newly created product's details such as its ID, name, number, pricing, and other metadata returned by the API.
No binary data output is produced by this node.
Dependencies
- Requires an API key credential for authenticating with the Tripletex API.
- The node uses the Tripletex API base URL, which switches between production and test environments based on the configured environment setting in credentials.
- Network access to the Tripletex API endpoints is necessary.
Troubleshooting
- Validation Errors: If the "Product Name" is missing or empty, the node will throw a validation error stating "Product name is required".
- Authentication Issues: Failure to provide valid API credentials or token generation problems will result in authentication errors.
- API Errors: Any HTTP errors returned by the Tripletex API (e.g., 400 Bad Request, 401 Unauthorized) will be surfaced as errors in the node execution.
- To resolve common errors, ensure all required fields are provided, credentials are correctly set up, and the API endpoint is reachable.
Links and References
- Tripletex API Documentation (official API docs)
- n8n Documentation (for general usage of nodes and credentials)