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

node-red-contrib-zoom-meetings

v0.0.3

Published

Custom Node-RED nodes for Zoom Meetings API.

Readme

node-red-contrib-zoom-meetings

Custom Node-RED nodes for Zoom Meetings API.

  • ✅ Config node to store API_TOKEN
  • ✅ One “Zoom Meetings” node with dynamic dropdown for all operations
  • ✅ Friendly operation names in dropdown
  • ✅ Example JSON for POST/PATCH/PUT operations shown directly in the editor

Installation

Via local folder

# Unzip this folder, then from inside it:
npm install
# Link into Node-RED
npm link
# In your Node-RED user dir (~/.node-red)
cd ~/.node-red
npm link node-red-contrib-zoom-meetings
node-red

Or copy directly

Copy the unzipped folder into ~/.node-red/node_modules/ and restart Node-RED.


Nodes

1. Zoom API (config)

Stores your API Token and base URL.

Fields:

  • Name (optional)
  • Base URL (default: https://api.zoom.us/v2)
  • API Token (Bearer token from OAuth / Server-to-Server OAuth)

2. Zoom Meetings (main)

A single node that supports all Zoom Meetings API operations. When you select an operation, required fields (like meetingId, userId, etc.) will appear. For write operations (POST/PATCH/PUT), an Example JSON appears that you can copy & paste into msg.body.

Dynamic Inputs:

  • msg.params → path/query overrides
  • msg.query → query string params
  • msg.body → request body (for POST/PATCH/PUT)
  • msg.headers → extra headers

Outputs:

  • msg.statusCode
  • msg.headers
  • msg.payload
  • msg.request (method + url)

Examples (POST/PATCH/PUT)

Create a meeting

Operation: POST /users/{userId}/meetings

{
  "topic": "Weekly Sync",
  "type": 2,
  "start_time": "2025-08-22T10:00:00Z",
  "duration": 30,
  "timezone": "UTC",
  "settings": {
    "host_video": true,
    "participant_video": false,
    "join_before_host": true
  }
}

Add registrant

Operation: POST /meetings/{meetingId}/registrants

{
  "email": "[email protected]",
  "first_name": "Jane",
  "last_name": "Doe",
  "org": "ExampleCorp",
  "custom_questions": [
    { "title": "How did you hear about us?", "value": "Newsletter" }
  ]
}

Update meeting details

Operation: PATCH /meetings/{meetingId}

{
  "topic": "Updated Project Kickoff",
  "agenda": "Discuss roadmap and milestones",
  "settings": { "mute_upon_entry": true, "auto_recording": "cloud" }
}

Update poll

Operation: PUT /meetings/{meetingId}/polls/{pollId}

{
  "title": "Feedback Poll",
  "questions": [
    {
      "name": "How satisfied are you with today’s session?",
      "type": "single",
      "answers": ["Very satisfied", "Neutral", "Not satisfied"]
    }
  ]
}

Update registrant status

Operation: PUT /meetings/{meetingId}/registrants/status}

{
  "action": "approve",
  "registrants": [ { "id": "abcd1234" }, { "id": "efgh5678" } ]
}

Official Documentation

  • Meetings API overview: https://developers.zoom.us/docs/api/meetings/
  • REST Meeting reference: https://developers.zoom.us/docs/api/rest/meeting/

Auth & Tokens

Use a Zoom OAuth access token (e.g. from Server-to-Server OAuth). The node sends:

Authorization: Bearer <API_TOKEN>

Notes

  • Pagination: use page_size and next_page_token in msg.query
  • Non-2xx responses are still returned with msg.statusCode and msg.payload
  • Rate limits apply per app — design your flows accordingly

License

MIT