npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@joshuanode/n8n-nodes-addigy

v0.0.6

Published

n8n community node for Addigy API integration

Downloads

535

Readme

n8n-nodes-addigy

Banner

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

Follow the installation guide in the n8n community nodes documentation.

GUI

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter @joshuanode/n8n-nodes-addigy in Enter npm package name
  4. Agree to the risks of using community nodes
  5. 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

  1. Log in to your Addigy account
  2. Navigate to Account > API Tokens
  3. Click Create New Token
  4. Give your token a descriptive name (e.g., "n8n Integration")
  5. 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)
  6. Click Create Token
  7. Copy the generated token immediately (you won't be able to see it again)

Configuring Credentials in n8n

  1. In your n8n workflow, add an Addigy node
  2. Click on Create New Credential
  3. Enter your API Token
  4. Enter your Organization ID
  5. Enter your Addigy base URL (default: https://api.addigy.com)
  6. 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

  1. Add an Addigy node to your workflow
  2. Select Device as the resource
  3. Select Get Many as the operation
  4. Configure filters if needed (policy, status, device type)
  5. 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:

  1. Schedule Trigger: Run every 5 minutes
  2. Addigy Node (Get Alerts):
    • Resource: Alert
    • Operation: Get Many
    • Filters: Status = Open, Severity = Critical
  3. IF Node: Check if alerts exist
  4. Addigy Node (Execute Instruction):
    • Resource: Instruction
    • Operation: Execute
    • Select remediation instruction
    • Target: Device (from alert data)
  5. 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.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Support

If you encounter any issues or have questions:

License

MIT


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