Package Information
Available Nodes
Documentation
n8n-nodes-addigy

This is an n8n community node that lets you interact with Addigy - a full-featured Apple MDM (Mobile Device Management) platform.
n8n is a fair-code licensed workflow automation platform.
Table of Contents
- Installation
- Prerequisites
- Credentials
- Compatibility
- Features
- Usage
- Operations
- Known Issues
- Contributing
- License
Installation
Follow the installation guide in the n8n community nodes documentation.
GUI
- Go to Settings > Community Nodes
- Select Install
- Enter
@joshuanode/n8n-nodes-addigyin Enter npm package name - Agree to the risks of using community nodes
- Select Install
Manual Installation
To get started install the package in your n8n root directory:
npm install @joshuanode/n8n-nodes-addigy
For Docker-based deployments add the following line before the font installation command in your n8n Dockerfile:
RUN cd /usr/local/lib/node_modules/n8n && npm install @joshuanode/n8n-nodes-addigy
Prerequisites
- n8n installed (version 0.220.0 or above)
- An active Addigy account
- Addigy API v2 credentials
Credentials
To use this node, you'll need to configure your Addigy API credentials in n8n.
Generating API v2 Credentials
- Log in to your Addigy account
- Navigate to Account > API Tokens
- Click Create New Token
- Give your token a descriptive name (e.g., "n8n Integration")
- Select the appropriate permissions for your use case:
- Devices: Read, Write (if you need to update devices or run commands)
- Policies: Read, Write (if you need to manage policies)
- Alerts: Read, Write (if you need to manage alerts)
- Applications: Read, Write (if you need to deploy/remove applications)
- Facts: Read, Write (if you need to manage custom facts)
- Instructions: Read, Write (if you need to create/execute instructions)
- Click Create Token
- Copy the generated token immediately (you won't be able to see it again)
Configuring Credentials in n8n
- In your n8n workflow, add an Addigy node
- Click on Create New Credential
- Enter your API Token
- Enter your Organization ID
- Enter your Addigy base URL (default:
https://api.addigy.com) - Click Save
The credential will automatically test the connection by attempting to fetch devices.
Compatibility
- Tested with n8n version 1.0.0+
- Works with Addigy API v2
- Compatible with self-hosted and cloud n8n instances
Features
This node provides comprehensive access to the Addigy API, allowing you to automate Apple device management tasks.
Resources
The Addigy node supports the following resources:
🖥️ Device
Manage and monitor Apple devices in your organization.
- Get device information by ID
- List all devices with filtering options
- Count total devices with optional filters
- Get device facts (system information, hardware details, installed software)
- Update device properties (name, policy assignment, notes)
- Run commands on devices (restart, shutdown, lock, clear passcode, refresh facts)
📋 Policy
Organize devices into policies with specific configurations.
- Create new policies
- Get policy details
- List all policies
- Update policy information
- Delete policies
🚨 Alert
Monitor and respond to alerts from your device fleet.
- Get alert details
- List alerts with filters (device, policy, status, severity, date range)
- Resolve alerts with optional notes
📦 Application
Deploy and manage applications across your device fleet.
- Get application information
- List available applications (public and custom software)
- Deploy applications to devices or policies
- Remove applications from devices or policies
- Configure auto-update and installation timing
📊 Fact
Create and manage custom facts to collect device information.
- Create custom facts with shell scripts
- Get fact definitions
- List all custom facts
- Update fact collection scripts and frequency
- Delete custom facts
⚙️ Instruction
Create and execute custom scripts on devices.
- Create reusable instruction scripts
- Get instruction details
- List all instructions
- Update instruction scripts and metadata
- Delete instructions
- Execute instructions on specific devices or policies
💳 Billing
Access billing data for your organization.
- Get billing summary data
- Get billing account details
- Get billing invoices
Usage
Basic Example: Get All Devices
- Add an Addigy node to your workflow
- Select Device as the resource
- Select Get Many as the operation
- Configure filters if needed (policy, status, device type)
- Execute the workflow
Advanced Example: Automated Alert Response
Create a workflow that monitors for critical alerts and automatically resolves them after running a remediation instruction:
- Schedule Trigger: Run every 5 minutes
- Addigy Node (Get Alerts):
- Resource: Alert
- Operation: Get Many
- Filters: Status = Open, Severity = Critical
- IF Node: Check if alerts exist
- Addigy Node (Execute Instruction):
- Resource: Instruction
- Operation: Execute
- Select remediation instruction
- Target: Device (from alert data)
- Addigy Node (Resolve Alert):
- Resource: Alert
- Operation: Resolve
- Alert ID: From alert data
- Notes: "Automatically resolved via n8n workflow"
Example Workflows
1. Device Onboarding Automation
Automatically assign new devices to the correct policy based on device type:
Webhook Trigger → Addigy (Get Device) → Switch (by device type) → Addigy (Update Device - assign policy) → Slack (notify team)
2. Software Deployment Campaign
Deploy an application to all devices in a specific policy:
Manual Trigger → Addigy (Get Policy) → Addigy (Deploy Application) → Email (send deployment report)
3. Custom Fact Collection and Reporting
Collect custom facts from devices and generate a report:
Schedule Trigger → Addigy (Get Many Devices) → Addigy (Get Facts) → Google Sheets (append data) → Slack (send summary)
4. Compliance Monitoring
Monitor devices for compliance issues and create tickets:
Schedule Trigger → Addigy (Get Alerts) → Filter (compliance alerts) → Jira (create issue) → Addigy (add alert notes)
Operations
Device Operations
| Operation | Description |
|---|---|
| Count | Get total number of devices |
| Get | Retrieve a device by ID |
| Get Many | List devices with optional filters |
| Get Facts | Retrieve all facts for a specific device |
| Update | Update device properties |
| Run Command | Execute commands (restart, shutdown, lock, etc.) |
Policy Operations
| Operation | Description |
|---|---|
| Create | Create a new policy |
| Get | Retrieve a policy by ID |
| Get Many | List all policies |
| Update | Update policy properties |
| Delete | Delete a policy |
Alert Operations
| Operation | Description |
|---|---|
| Get | Retrieve an alert by ID |
| Get Many | List alerts with filters |
| Resolve | Mark an alert as resolved |
Application Operations
| Operation | Description |
|---|---|
| Get | Retrieve an application by ID |
| Get Many | List available applications |
| Deploy | Deploy an application to devices/policies |
| Remove | Remove an application from devices/policies |
Fact Operations
| Operation | Description |
|---|---|
| Create | Create a custom fact |
| Get | Retrieve a custom fact by name |
| Get Many | List all custom facts |
| Update | Update a custom fact |
| Delete | Delete a custom fact |
Instruction Operations
| Operation | Description |
|---|---|
| Create | Create a new instruction |
| Get | Retrieve an instruction by ID |
| Get Many | List all instructions |
| Update | Update an instruction |
| Delete | Delete an instruction |
| Execute | Run an instruction on devices/policies |
Billing Operations
| Operation | Description |
|---|---|
| Get Data | Retrieve billing summary data |
| Get Account | Retrieve billing account details |
| Get Invoices | Retrieve billing invoices |
Known Issues
- Rate Limiting: The Addigy API has a rate limit of 1,000 requests per 10 seconds. If exceeded, requests will be rejected for 24 hours. The node does not currently implement automatic rate limiting.
- Pagination: When fetching large datasets, be mindful of performance. Use the "Return All" option carefully.
- Logo: The current node icon is a placeholder. Replace with the official Addigy logo from their media kit for production use.
Version History
1.0.0 (Initial Release)
- Support for 6 main resources: Device, Policy, Alert, Application, Fact, and Instruction
- API v2 authentication
- Comprehensive filtering and pagination
- Dynamic dropdowns for devices, policies, and applications
- Full CRUD operations where applicable
Resources
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature) - Commit your changes (
git commit -m 'Add some AmazingFeature') - Push to the branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Support
If you encounter any issues or have questions:
- Open an issue in the GitHub repository
- Ask in the n8n Community Forum
License
About Addigy
Addigy is a full-featured Apple MDM (Mobile Device Management) platform that helps organizations manage Mac, iPhone, iPad, and Apple TV devices. Learn more at addigy.com.
Disclaimer
This is an unofficial community node and is not affiliated with or endorsed by Addigy. Use at your own risk.
Made with ❤️ for the n8n community