Tripletex

Connect to Tripletex API v2

Overview

This node connects to the Tripletex API v2 and allows users to update product information in their Tripletex account. The "Update Product" operation modifies an existing product's details such as name, SKU number, description, pricing, and currency.

Typical use cases include:

  • Synchronizing product data from another system or database into Tripletex.
  • Correcting or updating product details like price changes or descriptions.
  • Automating product management workflows where product info needs regular updates.

For example, a user could automate updating the unit price and description of a product after a supplier changes costs, ensuring Tripletex always has current data.

Properties

Name Meaning
Product ID The unique identifier of the product to update (required).
Product Name The new or updated name of the product (required).
Product Number The SKU or product number used for identification.
Description A textual description of the product.
Unit Price The selling price per unit of the product.
Cost Price The cost price 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 updated product object returned by the Tripletex API. This includes all fields that were updated and any additional metadata provided by the API.

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 API base URL, which switches between production and test environments based on credential configuration.
  • HTTP requests are made with JSON payloads and expect JSON responses.

Troubleshooting

  • Validation errors: If required fields like "Product Name" or "Product ID" are missing or empty, the node will throw validation errors before making the API call.
  • Authentication failures: Ensure the API key credential is valid and has appropriate permissions.
  • Unsupported operations: Using an unsupported resource-operation combination will result in an error.
  • API errors: Errors returned from the Tripletex API (e.g., invalid product ID) will be surfaced in the node output. Check the error message for details.
  • Network issues: Connectivity problems can cause request failures; verify network access to the Tripletex API endpoints.

Links and References

Discussion