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-steyi-ss

v2.0.2

Published

n8n node for Smartsheet API integration

Downloads

95

Readme

n8n-nodes-steyi-ss

Community n8n node for Smartsheet providing broad API coverage including sheets, rows, columns, webhooks, reports, admin operations, and data conversion utilities.


✨ Features

  • Full Smartsheet API coverage
  • Sheet, row, column, report, and admin operations
  • Webhook + Trigger support
  • Smart value conversion for complex column types
  • Dynamic dropdowns with caching
  • Designed for large workflows and automation

📦 Installation

npm install n8n-nodes-steyi-ss

Then enable Community Nodes in n8n and restart.


🔐 Credentials

Uses a Smartsheet API Token.

Create one here:
https://app.smartsheet.com/b/home


📚 Resources & Operations

Sheets

  • List Sheets
  • Get Sheet
  • Create Sheet
  • Update Sheet
  • Delete Sheet
  • Search Sheet

Rows

  • Add Row
  • Update Row
  • Delete Row
  • Get Row
  • Get Row (Mapped by Column Title or ID)

Supports:

  • Cell value mapping
  • Attachments (file or link)
  • Discussions
  • Parent/child row placement

Columns

  • Get Columns
  • Update Column

Includes column type metadata in dropdowns.


Webhooks

  • List Webhooks
  • Create Webhook
  • Update Webhook
  • Delete Webhook

Notes

  • Webhooks are auto-enabled
  • Callback URL must be publicly accessible
  • Defaults to subscribing to all events (*.*)

Reports

  • List Reports
  • Get Report

Admin

Users

  • List Users
  • Get User
  • Add User
  • Update User
  • Delete User

Groups

  • List Groups
  • Get Group
  • Create Group
  • Update Group
  • Delete Group

Group Members

  • List Members
  • Add Members
  • Remove Member

Converter Utilities

CSV → MULTI_CONTACT_LIST

Converts comma-separated emails into Smartsheet MCL format.

Input

[email protected], [email protected]

Output

{
  "mcl-output": {
    "values": [
      { "email": "[email protected]" },
      { "email": "[email protected]" }
    ]
  }
}

CSV → MULTI_PICKLIST

Converts comma-separated values into MPL format.

Output

{
  "mpl-output": {
    "values": ["Option 1", "Option 2"]
  }
}

🧱 Column Value Formatting

Used when adding or updating rows.

TEXT_NUMBER / DATE / DATETIME

"Example Text"
123
"2024-01-15"

CHECKBOX

Accepted string values (auto-converted):

true, false, 1, 0, yes, no

PICKLIST

"High Priority"

Must exactly match column options (case-sensitive)


MULTI_CONTACT_LIST

{
  "values": [
    { "email": "[email protected]" },
    { "email": "[email protected]" }
  ]
}

Automatically transformed to Smartsheet API format.


MULTI_PICKLIST

{
  "values": ["Option 1", "Option 2"]
}

⚡ Webhook Trigger Node

Steyi Smartsheet Trigger starts workflows on Smartsheet events.

Features

  • Auto-creates webhooks
  • Handles verification challenges
  • Manages lifecycle automatically
  • Subscribes to all sheet events

⚠️ Localhost Warning

Smartsheet requires a public webhook URL.

If running n8n locally:

  1. Use a tunnel (e.g. ngrok)
    ngrok http 5678
  2. Or deploy n8n publicly
  3. Or set WEBHOOK_URL to a public endpoint

🔽 Dynamic Dropdowns

Cached for 60 seconds:

  • Sheets
  • Columns (with type)
  • Users
  • Groups
  • Group Members
  • Workspaces
  • Folders
  • Webhooks
  • Discussions

Manual ID entry via expressions is always supported.


📖 Smartsheet API Docs

https://smartsheet-platform.github.io/api-docs/


🪪 License

MIT