Tripletex

Connect to Tripletex API v2

Overview

This node integrates with the Tripletex API v2 to manage orders. Specifically, the "Order - Create" operation allows users to create new orders in the Tripletex system by providing order details such as order date, delivery date, customer information, currency, and line items.

Common scenarios for this node include automating order creation from e-commerce platforms, syncing orders from other sales systems, or integrating order data into accounting workflows. For example, when a new sale occurs on an online store, this node can automatically create a corresponding order in Tripletex, ensuring up-to-date financial records without manual entry.

Properties

Name Meaning
Currency The currency code for the order (e.g., NOK).
Order Date The date when the order was placed. This is required.
Delivery Date The expected delivery date of the order.
Customer ID The unique identifier of the customer placing the order. This is required.
Order Lines A collection of order line items. Each line includes:
- Product ID: Identifier of the product (required).
- Description: Description of the line item.
- Quantity: Number of units ordered (required).
- Unit Price: Price per unit (required).

Output

The node outputs JSON data representing the response from the Tripletex API after creating the order. This typically includes details of the newly created order such as its ID, status, and any metadata returned 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 the configured environment setting.
  • Proper network access to the Tripletex API endpoints is necessary.

Troubleshooting

  • Validation Errors: If required fields like "Order Date" or "Customer ID" are missing, the node will throw validation errors indicating which fields are required.
  • Authentication Failures: Ensure that the API key credential is correctly configured and has appropriate permissions.
  • API Errors: Any errors returned by the Tripletex API (e.g., invalid product IDs in order lines) will be surfaced in the node's output. Review the error messages for guidance.
  • Empty or Incorrect Order Lines: Make sure each order line includes a valid product ID, quantity, and unit price to avoid API rejection.

Links and References

Discussion