Tripletex

Connect to Tripletex API v2

Overview

This node connects to the Tripletex API v2 and allows you to perform various operations on different resources such as customers, products, and orders. Specifically, for the Customer - Get operation, it retrieves detailed information about a customer by their unique ID.

Typical use cases include:

  • Fetching customer details to display or process in workflows.
  • Integrating customer data retrieval into automated business processes.
  • Synchronizing customer information between Tripletex and other systems.

For example, you might use this node to get a customer's contact information before sending them an invoice or to verify customer details during order processing.

Properties

Name Meaning
Customer ID The unique identifier of the customer to retrieve. This is required for the Get operation.

Output

The output JSON contains the full customer object as returned by the Tripletex API. This typically includes fields such as:

  • Customer name
  • Email address
  • Phone number
  • Address details (address lines, postal code, city, country)
  • Whether the customer is a private person
  • Organization number (for business customers)

The exact structure depends on the Tripletex API response but generally reflects all stored customer data.

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 test and production environments based on the credential configuration.
  • Network access to the Tripletex API endpoints is necessary.

Troubleshooting

  • Validation errors: If the Customer ID is missing or empty, the node will throw a validation error indicating that the Customer ID is required.
  • Authentication failures: Ensure the API key credential is correctly configured and has appropriate permissions.
  • Not found errors: If the specified Customer ID does not exist, the API will return an error; handle this gracefully in your workflow.
  • Network issues: Check connectivity to the Tripletex API endpoints and proxy/firewall settings if requests fail.

Links and References

Discussion