Description
n8n-nodes-easybill-api
A full-featured n8n Community Node for the Easybill REST API, allowing you to automate invoicing, customer management, documents, payments, and real-time events directly inside your n8n workflows.
—
π What is n8n?
n8n is a powerful workflow automation tool (open-source) that lets you connect different apps and automate repetitive business processes.
With this Easybill integration, you can:
- Create offers, invoices, and documents automatically
- Sync customers and contacts
- Upload and manage attachments
- Receive Easybill events via webhook
- Fetch PDFs/JPGs of documents
- Add payments or mark documents as paid
- Full Easybill REST API integration
- Document, Customer, Contact, Attachment & Payment operations
- Webhook Trigger Node with automatic registration/deregistration
- API Call resource for unsupported or custom endpoints
- Supports both Bearer and Basic Authentication
- Clean TypeScript implementation following n8n best practices
- Create document
- Update document
- Delete document
- Send document (email / fax)
- Mark as done / cancel / convert
- Add payment
- Get PDF / Get JPG
- List versions
- Download files
- Create customer
- Update customer
- Get one
- Get all
- Delete customer
- Create contact
- Update contact
- Get all contacts
- Delete contact
- Upload attachment
- Get attachment
- Delete attachment
- Add payment
- Get payment list
- Fully custom API requests to any Easybill endpoint
contact.updatecontact.createcustomer.updatecustomer.createdocument.updatedocument.createpayment.create- β¦and more depending on your Easybill configuration
- Airtable
- HubSpot
- Pipedrive
- Umsatz.io
- Custom CRMs
- Trigger n8n
- Mark document as paid
- Update CRM
- Send confirmation email
- Trigger onboarding steps
- Create invoice
- Send welcome documents
- Assign project tasks
- Notify Slack/Teams
- Add internal checklists
All without manual intervention.
—
βοΈ Legal Notice
This community node uses the public Easybill REST API and is not affiliated with Easybill GmbH.
All trademarks belong to their respective owners.
—
π Features
—
π Supported Resources & Operations
π§Ύ Document
π€ Customer
π§βπΌ Contact
π Attachment
πΈ Document Payment
π οΈ API Call
(GET, POST, PUT, DELETE supported)
—
π£ Easybill Webhook Trigger
The Easybill Trigger Node gives you real-time automations in n8n.
Supported event types include (examples):
When you activate a workflow, the webhook is:
1. Automatically created in Easybill, pointing to your n8n webhook URL
2. Automatically removed when the workflow is disabled
—
π‘ Example Use Cases
π Automated Offer or Invoice Generation
Turn form submissions into fully generated and sent Easybill documents.
π CRM Synchronization
Sync customers from tools like:
β¦and keep Easybill always up to date.
π° Payment Automation
When Easybill registers a payment:
π¦ End-to-End Onboarding Workflow
After a client signs:
—
π οΈ Installation
Option 1: Install via n8n Community Nodes (Recommended)
1. Open your n8n instance
2. Go to Settings β Community Nodes
3. Install:
n8n-nodes-easybill-api
4. Restart n8n
—
Option 2: Manual Installation
npm install n8n-nodes-easybill-api
Restart n8n:
npm start
—
Option 3: Docker
docker run -it --rm
--name n8n
-p 5678:5678
-e N8NCUSTOMEXTENSIONS="/data/custom"
-v ~/.n8n:/data
docker.n8n.io/n8nio/n8n
Place the node inside /data/custom.
—
π Authentication Setup
1. Generate Easybill API Key
1. Log in to Easybill
2. Go to My Account β REST API
3. Generate API key
4. Copy your API key
2. Add credentials in n8n
1. Go to Credentials
2. Create new β search for Easybill API
3. Fill in:
https://api.easybill.de/rest/v14. Test & Save
—
π Usage
Example: Create a Document
1. Add Easybill node
2. Resource: Document
3. Operation: Create
4. Fill in required fields (customer_id, items, etc.)
5. Execute workflow
Example: Use Easybill Trigger
1. Add Easybill Trigger node
2. Select desired event (e.g., document.update)
3. Activate workflow
4. Webhook is automatically created in Easybill
—
π§ API Reference
This node communicates with the official Easybill API:
Base URL:
https://api.easybill.de/rest/v1
Auth:
Authorization: Bearer
or
Basic Auth with API key
Official API Documentation:
β‘ https://api.easybill.de/rest/v1/
—
π€ Contributing
We welcome contributions!
Development Setup
git clone https://github.com/rjsebening/n8n-nodes-easybill-api.git
cd n8n-nodes-easybill-apinpm install
npm run build
npm test
Pull Request Workflow
1. Fork the repo
2. Create a branch: feature/new-feature
3. Commit changes
4. Push
5. Open Pull Request
Code Guidelines
—
π Changelog
0.1.0 β Initial Release (2025-12-04)
—
π οΈ Compatibility
—
π License
This project is licensed under the MIT License.
—
β Support
Issues / Bugs / Feature Requests
β‘ GitHub Issues: (link to be added)
FAQ
Can I use multiple Easybill accounts?
Yes, create multiple credential entries.
Are all API endpoints supported?
Major endpoints are fully implemented.
For missing endpoints, use the API Call resource.
Why both Basic and Bearer Auth?
Easybill supports different authentication formats depending on the account.
—
β If you like this node, please star the GitHub repository!
π‘ Feature ideas? Open an issue β community contributions are welcome.