n8n-nodes-wortic
v1.1.1
Published
n8n community node for Wortic CRM integration - Complete automation for leads, clients, projects, invoices, support tickets and calendar events
Downloads
23
Maintainers
Readme
n8n-nodes-wortic
n8n community node for Wortic CRM integration - Complete automation for leads, clients, projects, invoices, support tickets and calendar events.
Installation
To install this node in n8n:
npm install n8n-nodes-worticOr install it in your n8n docker container:
docker exec -it n8n npm install n8n-nodes-worticConfiguration
- In n8n, go to Credentials → Add Credential
- Choose Wortic API
- Configure:
- API URL:
https://your-wortic-domain.com/app/api/v1.php - API Key: Your Wortic API key (starts with
wortic_)
- API URL:
Usage
Available Resources
- Leads: Manage prospects and potential customers
- Clients: Manage existing customers
- Projects: Manage ongoing projects (coming soon)
- Invoices: Manage billing and payments (coming soon)
- Proposals: Manage contracts and quotes (coming soon)
- Tickets: Manage support requests (coming soon)
- Calendar: Manage appointments and events (coming soon)
Operations
- Create: Add new records
- Get: Retrieve specific records by ID
- Get All: List all records with optional filtering
- Update: Modify existing records
- Delete: Remove records
Example Workflows
Capture Leads from Forms:
Webhook Trigger → Wortic (Create Lead) → Email NotificationSync with Google Sheets:
Schedule Trigger → Wortic (Get All Leads) → Google Sheets (Update)Lead Qualification:
Wortic Trigger → OpenAI Analysis → Wortic (Update Lead)API Reference
This node connects to the Wortic CRM API v1. The API uses the following format:
Authentication: Bearer token in Authorization header Request Format:
{
"action": "leads.create",
"data": {
"name": "John Doe",
"email": "[email protected]"
}
}Webhooks
Configure webhooks in your Wortic CRM settings to trigger n8n workflows automatically when data changes.
Support
- Documentation: Wortic API Docs
- Issues: GitHub Issues
- Community: n8n Community
License
MIT License - see LICENSE file for details.
Changelog
1.1.1
- Fixed credential testing issue
- Improved API URL validation
- Enhanced error handling
1.1.0
- Initial release
- Support for Leads and Clients
- Webhook trigger support
