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

n8n-nodes-ringotel

v0.0.2

Published

n8n community node for the Ringotel Admin and Messaging APIs

Downloads

170

Readme

n8n-nodes-ringotel

This is an n8n community node for the Ringotel Admin API, providing programmatic access to manage organizations, connections, users, contacts, SMS trunks, AI agents, and more.

n8n is a fair-code licensed workflow automation platform.

Installation | Operations | Credentials | API Coverage | Resources | Changelog | TODO

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

Organization

  • Create, Delete, Get, Get Many, Update, Set Status
  • Get Event Log, Get Calls, Get Activity Subjects, Set Activity Subjects

Connection (Branch)

  • Create, Delete, Get, Get Many, Update, Set Status
  • Get Options, Get Templates

User

  • Create, Create Many, Delete, Delete Many, Get, Get Many, Update
  • Attach, Deactivate, Delete Device, Delete Recordings, Delete Transcriptions, Detach
  • Get Logs, Get Phone Book URL, Get Registrations History, Get SIP Credentials
  • Recover Deleted, Reset Password, Resync SIP Device
  • Set Password, Set Settings, Set State, Set Status

Contact

  • Delete, Get Blocked, Get Many, Import, Set Blocked, Update

SMS Trunk

  • Create, Delete, Get Chats, Get Many
  • Get Opt-Out List, Add to Opt-Out, Remove from Opt-Out, Update

Account

  • Get, Get AI Usage Info, Get History, Get Many Users, Get Statistics
  • Create Admin, Update Admin, Delete Admin

AI Agent

  • Create, Delete, Get Many, Update

Call

  • Initiate, Update Activity

Region / Integration / Package

  • Get Many (each)

Credentials

To use this node, you need an API key from your Ringotel Shell admin portal (API Settings).

| Field | Description | |-------|-------------| | Base URL | Your Ringotel Shell instance URL (default: https://shell.ringotel.co) | | API Key | Bearer token generated from the admin portal | | Dropdown Cache (Minutes) | How long to cache Organization/Connection dropdown options (default: 10, set to 0 to disable) |

Credentials are validated on save by calling the getOrganizations API method.

API Coverage

The Ringotel Admin API uses an RPC-style interface where all requests are POST to a single /api endpoint with a JSON body containing method and params. This node implements 74 operations across 11 resources, covering the full Admin API.

Implemented Resources

| Resource | Operations | API Methods | |----------|------------|-------------| | Organization | 10 | createOrganization, deleteOrganization, getOrganization, getOrganizations, updateOrganization, setOrganizationStatus, getEventLog, getCalls, getActivitySubjects, setActivitySubjects | | Connection | 8 | createBranch, deleteBranch, getBranch, getBranches, updateBranch, setBranchStatus, getBranchOptions, getTemplates | | User | 24 | createUser, createUsers, deleteUser, deleteUsers, getUser, getUsers, updateUser, attachUser, deactivateUser, deleteDevice, deleteRecordings, deleteTranscriptions, detachUser, getUserLogs, getPhoneBookURL, getUserRegistrationsHistory, getSIPCredentials, recoverDeletedUser, resetUserPassword, resyncSIPDevice, setUserPassword, setUserSettings, setUserState, setUserStatus | | Contact | 6 | deleteContacts, getBlockedContacts, getContacts, importContacts, setBlockedContacts, updateContacts | | SMS Trunk | 8 | createSMSTrunk, deleteSMSTrunk, getSMSChats, getSMSTrunks, getSMSOptOutList, addToSMSOptOut, removeFromSMSOptOut, updateSMSTrunk | | Account | 8 | getAccount, getAIUsageInfo, getAccountHistory, getAccountUsers, getAccountStatistics, createAdmin, updateAdmin, deleteAdmin | | AI Agent | 4 | createAIAgent, deleteAIAgent, getAIAgents, updateAIAgent | | Region | 1 | getRegions | | Integration | 1 | getIntegrations | | Package | 1 | getPackages | | Call | 2 | initCall, updateActivity |

Not Yet Implemented

| Feature | Description | |---------|-------------| | getLogFile | The only non-RPC endpoint (GET /userlogs/{path}) for downloading user log files | | SMS Trunk dropdown | Dynamic dropdown for SMS Trunk ID selection (similar to Organization/Connection dropdowns) | | Ringotel Messaging API | Separate node planned for the Messaging API (pending API documentation) |

See TODO.md for the full list of planned improvements.

Features

  • Dynamic dropdowns for Organization and Connection (Branch) selection with configurable caching
  • Organization ID injection into User query results (orgid field) for downstream chaining
  • AI agent tool compatibility (usableAsTool: true) for use with n8n AI agents
  • Error handling with continueOnFail() on every item and proper item linking via constructExecutionMetaData
  • Cache invalidation on mutation operations (create, update, delete) for Organizations and Connections

Resources

License

MIT