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

@rhombussystems/n8n-nodes-client

v0.3.2

Published

n8n community node for Rhombus security cameras, access control, and IoT sensors

Downloads

26

Readme

@rhombussystems/n8n-nodes-client

This is an n8n community node for integrating with the Rhombus physical security API. It lets you automate security camera management, access control operations, event monitoring, and organization workflows within your n8n workflows.

n8n is a fair-code licensed workflow automation platform.

Table of Contents

Installation

Follow the installation guide in the n8n community nodes documentation.

Quick Install

In n8n, go to Settings > Community Nodes and enter:

@rhombussystems/n8n-nodes-client

Operations

This node provides access to the Rhombus API across 6 resource types with 19 operations. All endpoints are validated against the Rhombus Public OpenAPI Spec.

Camera Operations

Manage security cameras and retrieve video content.

| Operation | Description | API Endpoint | |-----------|-------------|-------------| | Get | Get full state of a single camera | getFullCameraState | | Get Many | List all cameras in the organization | getMinimalCameraStateList | | Create Clip | Create a video clip from a camera | spliceV3 | | Get Frame | Get an exact frame image URL from a camera | getExactFrameUri | | Update | Update camera name, description, or location | updateDetailsV2 |

Door Operations

Control access points and monitor door events.

| Operation | Description | API Endpoint | |-----------|-------------|-------------| | Get Many | List all access-controlled doors | findMinimalStateAccessControlledDoors | | Unlock | Temporarily unlock an access-controlled door | unlockAccessControlledDoor | | Get Events | Get access event history for a door | findComponentEventsByAccessControlledDoor |

Event Operations

Monitor security events and alerts.

| Operation | Description | API Endpoint | |-----------|-------------|-------------| | Get Alerts | Get policy alerts with time and device filters | getPolicyAlerts | | Get Many | Get a list of saved video clips | getSavedClipsV2 |

User Operations

Manage users in the organization.

| Operation | Description | API Endpoint | |-----------|-------------|-------------| | Create | Create a new user with email and name | createUser | | Get Many | List all users in the organization | getUsersInOrg | | Update | Update user name, permissions, or MFA settings | updateUserSelective |

Organization Operations

Manage organization-level settings and locations.

| Operation | Description | API Endpoint | |-----------|-------------|-------------| | Get | Get organization information | getOrgV2 | | Get Locations | List locations in the organization | getLocations | | Update | Update organization name, contacts, or settings | updateGeneralSettings |

Webhook Operations

Configure webhook integrations for event notifications.

| Operation | Description | API Endpoint | |-----------|-------------|-------------| | Get | Get the webhook integration configuration | getWebhookIntegration | | Create/Update | Create or update webhook settings (URL, secret, enabled) | updateWebhookIntegration | | Delete | Delete the webhook integration | deleteWebhookIntegration |

Credentials

Rhombus API Key

You'll need a Rhombus API key to authenticate requests.

Getting Your API Key

  1. Log in to the Rhombus Console
  2. Navigate to Settings > API Keys
  3. Click Generate New API Key
  4. Give your API key a descriptive name (e.g., "n8n Integration")
  5. Copy the generated API key (you won't be able to see it again)

Configuring Credentials in n8n

  1. In n8n, go to Credentials and create a new Rhombus API credential
  2. Paste your API key into the API Key field
  3. Click Save

The node automatically includes the required authentication headers:

  • x-auth-apikey: Your API key
  • x-auth-scheme: api-token

Note: Keep your API key secure. Anyone with access to your API key can control your Rhombus devices and access your data.

Compatibility

  • n8n version: 1.60.0 or later
  • Node.js: 22+
  • Rhombus API: All endpoints use the public API at api2.rhombussystems.com

Usage Examples

Example 1: Daily Security Alert Report

Generate a daily summary of security alerts.

  1. Schedule Trigger (daily at 8 AM)
  2. Rhombus Node: Resource: Event, Operation: Get Alerts
    • After Time: {{$now.minus({hours: 24}).toISO()}}
    • Max Results: 100
  3. Code Node: Format alerts into a report
  4. Email Node: Send to security team

Example 2: Unlock Door on Calendar Event

Automatically unlock a conference room door before a meeting.

  1. Google Calendar Trigger (meeting starts in 5 minutes)
  2. Rhombus Node: Resource: Door, Operation: Unlock
    • Door: Select from dropdown

Example 3: User Onboarding Automation

Create Rhombus accounts when employees join.

  1. Webhook Trigger from HR system
  2. Rhombus Node: Resource: User, Operation: Create
    • Email: {{$json.email}}
    • Name: {{$json.name}}
    • Suppress Welcome Email: false

Example 4: Camera Clip on Alert

Automatically save a clip when an alert fires.

  1. Schedule Trigger (every 5 minutes)
  2. Rhombus Node: Resource: Event, Operation: Get Alerts
    • After Time: {{$now.minus({minutes: 5}).toISO()}}
  3. Rhombus Node: Resource: Camera, Operation: Create Clip
    • Camera: from alert device UUID
    • Start Time: from alert timestamp
    • Duration: 60 seconds
    • Save to Console: true

API Rate Limits

Rhombus enforces rate limits of 1,000 requests/hour and 100 requests/minute burst. Design workflows with appropriate intervals (typically no more than once per minute for polling).

Development

Building from Source

npm install
npm run build
npm run lint
npm run lint:fix  # auto-fix linting issues

Project Structure

credentials/
  RhombusApi.credentials.ts       # API key auth
nodes/Rhombus/
  Rhombus.node.ts                 # Main node class
  Rhombus.node.json               # Codex metadata
  resources/                      # One directory per resource
    camera/                       # get, getAll, getClip, getThumbnail, update
    door/                         # getAll, unlock, getAccessLogs
    event/                        # getAll, getAlerts
    organization/                 # get, getLocations, update
    user/                         # create, getAll, update
    webhook/                      # get, create, delete
  shared/
    transport.ts                  # Authenticated HTTP helper
    descriptions.ts               # Reusable resourceLocator fields
    utils.ts                      # Timestamp conversion, response extraction
  listSearch/                     # Searchable dropdown methods
icons/                            # SVG icons (light/dark)

Resources

License

MIT

Support