Package Information
Downloads: 190 weekly / 190 monthly
Latest Version: 1.2.1
Author: Atlas Eye
Available Nodes
Documentation
n8n-nodes-atlaseye
This is an n8n community node that integrates with Atlas Eye CRM, allowing you to automate your CRM workflows directly from n8n.
Installation
Community Nodes (Recommended)
- Go to Settings → Community Nodes in your n8n instance
- Select Install a community node
- Enter
n8n-nodes-atlaseye - Agree to risks and click Install
Manual Installation
cd ~/.n8n/nodes
npm install n8n-nodes-atlaseye
Then restart your n8n instance.
Configuration
- Create an API Token in Atlas Eye: Settings → API
- In n8n, create new credentials of type Atlas Eye API
- Paste your API token (starts with
atl_) - Set the Base URL of your Atlas Eye instance
Available Resources & Operations
| Resource | Operations |
|---|---|
| Lead | List, Create, Update |
| Lead Message | Send Message |
| Lead History | Add Event, Edit Event, Delete Event |
| Pipeline | List, Get, Create, Update, Delete |
| Pipeline Stage | List, Get, Create, Update, Delete, List Colors |
| User | List, Invite, Remove |
| Notification | Send (single or broadcast) |
Lead Operations
List Leads
Retrieve a paginated list of leads with optional filters:
- Search Query: Search by name, email, or phone
- Phone: Filter by phone number
- Assigned To: Filter by member ID
- Status: Filter by stage name
- Tags: Filter by specific tags
- Pipeline ID: Filter by pipeline
Create Lead
Create a new lead with name, email, phone, pipeline, status, tags, and assignment.
Update Lead
Update lead fields including name, email, phone, assignment, pipeline, status, tags, and custom fields.
Lead Message Operations
Send Message
Send a message to a lead's chat. Supports:
- Types: WhatsApp, Note, Email, System
- Direction: Inbound or Outbound
- Media Type: Image, Video, Audio, Document, Sticker
- Reply To Message ID: Reply to a specific quoted message
Pipeline Operations
Full CRUD operations on pipelines and their stages, including:
- Create pipelines and stages with colors and ordering
- Update names, colors, and positions
- Soft-delete pipelines and stages
Notification Operations
Send Notification
Send notifications to:
- A specific member by providing their Member ID
- All members (broadcast) by leaving the recipient empty
Notification types: info, warning, success, error.
Source Field
All mutating operations require a source field. This identifies who triggered the action:
| Value | Description |
|---|---|
ai_agent |
Triggered by an AI agent / automation (default) |
human |
Triggered by a human action |
system |
Triggered by a system process |
Example Workflow
[Webhook] → [Atlas Eye: Create Lead] → [Atlas Eye: Send Message] → [Atlas Eye: Send Notification]
- A webhook receives a new contact from your website
- Atlas Eye creates a new lead in the correct pipeline
- A welcome note is sent to the lead's chat
- A notification alerts your sales team
Development
# Install dependencies
npm install
# Build
npm run build
# Watch mode
npm run dev
License
MIT
