Package Information
Released: 9/30/2025
Downloads: 265 weeklyΒ /Β 317 monthly
Latest Version: 1.0.5
Author: devora.no
Available Nodes
Documentation
n8n-nodes-tripletex
A comprehensive n8n community node for integrating with Tripletex API v2, Norway's leading accounting and business management platform.
π Features
- Complete Tripletex API v2 Support - All major business operations
- Customer Management - Create, read, update, delete customers
- Product Management - Full product lifecycle management
- Order Processing - End-to-end order management
- Invoice Management - Automated invoicing workflows
- Inventory Tracking - Real-time inventory management
- Webhook Support - Real-time event notifications
- WooCommerce Integration - Ready-to-use mapping utilities
- TypeScript Support - Full type definitions included
π¦ Installation
Via n8n UI (Recommended)
- Open your n8n instance
- Go to Settings > Community Nodes
- Click Install a community node
- Search for
n8n-nodes-tripletex - Click Install
Via npm
npm install n8n-nodes-tripletex
π§ Configuration
1. Get Tripletex API Credentials
- Log in to your Tripletex account
- Go to Settings > API Access or Integrasjoner
- Create a new API application or use existing integration
- Note down your Consumer Token and Employee Token
Important: Tripletex API v2 uses Consumer Token + Employee Token to generate Session Token for authentication.
2. Configure in n8n
- In n8n, go to Settings > Credentials
- Click Add Credential
- Select Tripletex API
- Fill in:
- Consumer Token: Your Tripletex Consumer Token
- Employee Token: Your Tripletex Employee Token (from API brukernΓΈkler)
- Environment:
productionortest
π― Usage Examples
List Customers
{
"resource": "customer",
"operation": "getAll",
"limit": 50
}
Create Product
{
"resource": "product",
"operation": "create",
"name": "My Product",
"unitPrice": 299.00,
"currency": "NOK"
}
Process Order
{
"resource": "order",
"operation": "create",
"orderDate": "2024-12-19",
"customerId": "12345",
"orderLines": [
{
"productId": "67890",
"quantity": 2,
"unitPrice": 299.00
}
]
}
π WooCommerce Integration
This node includes built-in utilities for mapping WooCommerce data to Tripletex format:
// In a Code node
const { mapWooCommerceOrder } = require('n8n-nodes-tripletex/utils');
const tripletexOrder = mapWooCommerceOrder($input.all()[0].json);
π§ͺ Testing
Unit Tests
npm run test:unit
Integration Tests
npm run test:integration
Full Test Suite
npm test
π Resources
- Tripletex API Documentation: https://api-test.tripletex.tech/v2-docs/
- n8n Community Nodes: https://docs.n8n.io/integrations/community-nodes/
- GitHub Repository: https://github.com/devora-ai/n8n-nodes-tripletex
π€ Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests
- Submit a pull request
π License
This project is licensed under the MIT License - see the LICENSE file for details.
π Support
- Issues: GitHub Issues
- Documentation: Wiki
- Email: dev@devora.ai
π Changelog
See CHANGELOG.md for a complete list of changes.
Made with β€οΈ by Devora AI