Actions15
Overview
This node integrates with the Tripletex API v2 to manage customers, products, orders, invoices, inventory, and webhooks. Specifically, for the Customer - Create operation, it allows users to create a new customer record in the Tripletex system by providing relevant customer details.
Common scenarios where this node is beneficial include automating customer data entry from external systems, syncing CRM data with accounting software, or onboarding new clients automatically into Tripletex.
For example, when a new lead is converted in a CRM, this node can be used to create a corresponding customer in Tripletex with their contact and address information, streamlining billing and order processing workflows.
Properties
| Name | Meaning |
|---|---|
| Name | Customer name (required) |
| Customer email address | |
| Phone | Customer phone number |
| Is Private Person | Boolean indicating if the customer is a private individual (true) or a business (false) |
| Organization Number | Organization number for business customers (shown only if "Is Private Person" is false) |
| Address Line 1 | First line of the customer's address |
| Address Line 2 | Second line of the customer's address |
| Postal Code | Postal code of the customer's address |
| City | City of the customer's address |
| Country | Country code (default is "NO" for Norway) |
Output
The node outputs JSON data representing the response from the Tripletex API after creating the customer. This typically includes the newly created customer's details such as their unique ID and all submitted fields confirmed 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 environment setting to determine whether to connect to the test or production API endpoint.
- No additional external dependencies are required beyond the configured API credentials.
Troubleshooting
- Validation errors: If the "Name" property is empty or missing, the node will throw a validation error stating "Customer name is required".
- Authentication failures: Ensure that the API key credential is correctly configured and has appropriate permissions.
- API errors: Errors returned from the Tripletex API (e.g., invalid organization number format) will be passed through in the node output. Review the error message for guidance.
- Network issues: Connectivity problems to the Tripletex API endpoints may cause request failures; verify network access and endpoint URLs.
Links and References
- Tripletex API Documentation (official API docs)
- n8n Documentation (for general usage of n8n nodes and credentials)