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-zoho-sprints

v0.1.0

Published

n8n community node for Zoho Sprints API

Readme

Zoho Sprints n8n Community Node

This package provides an n8n node named Zoho Sprints to interact with the Zoho Sprints REST API (/zsapi) using OAuth2 credentials.

Resource and Operation Mapping

Implemented resources and operations:

  • Workspace
    • Get Many: list workspaces (GET /teams/)
    • Get: workspace settings (GET /team/{teamId}/settings/)
    • Create / Update: workspace tag create/edit (POST /team/{teamId}/tag/, POST /team/{teamId}/tag/{tagId}/)
  • Project: Get, Get Many, Create, Update
  • Sprint: Get, Get Many, Create, Update
  • Item (work item): Get, Get Many, Create, Update
  • Task: implemented as item specialization over item endpoints (Zoho Sprints does not expose a separate top-level task endpoint)
  • User: Get, Get Many, Create, Update (role update at workspace scope)
  • Comment: Get, Get Many, Create, Update for item/sprint entities

OAuth2 Setup (Zoho)

  1. In Zoho API Console, create a Server-based app.
  2. Configure redirect URI from your n8n OAuth callback.
  3. Use Zoho Sprints scopes (minimum for this node):
    • ZohoSprints.teams.READ,ZohoSprints.teams.CREATE,ZohoSprints.teams.UPDATE
    • ZohoSprints.projects.READ,ZohoSprints.projects.CREATE,ZohoSprints.projects.UPDATE
    • ZohoSprints.sprints.READ,ZohoSprints.sprints.CREATE,ZohoSprints.sprints.UPDATE
    • ZohoSprints.items.READ,ZohoSprints.items.CREATE,ZohoSprints.items.UPDATE
    • ZohoSprints.comments.READ,ZohoSprints.comments.CREATE,ZohoSprints.comments.UPDATE
    • ZohoSprints.teamusers.READ,ZohoSprints.teamusers.CREATE,ZohoSprints.teamusers.UPDATE
    • ZohoSprints.projectusers.READ,ZohoSprints.projectusers.CREATE
    • ZohoSprints.settings.READ
  4. In n8n, create credential Zoho Sprints OAuth2 API and select the correct data center.

Build and Local Installation

npm install
npm run build

To link into a local n8n instance:

# from this repository
npm link

# from your n8n user folder or custom nodes environment
npm link n8n-nodes-zoho-sprints

Then restart n8n.

Pagination and Error Handling

  • Pagination follows Zoho Sprints index/range and next/nextIndex (or next_index) patterns.
  • Retries with exponential backoff are applied for transient failures (429, 502, 503, 504) and Zoho code 7421.
  • Errors are normalized into n8n-friendly output (message, code, statusCode, details).
  • Node supports Continue On Fail.

Manual Verification Checklist

  1. Credential test: create credential, ensure /teams/ succeeds.
  2. Workspace Get Many: expect array of portal/team records.
  3. Project Get Many: set workspace, expect project records with mapped fields.
  4. Sprint Create + Get: create sprint, then fetch by ID.
  5. Item Create + Update: create work item and update assignees.
  6. Task Create: leave item type empty; node auto-resolves Task item type when available.
  7. User Get Many (Workspace): verify action=data listing and pagination.
  8. Comment Create + Update: for item or sprint using module ID, verify note ID appears and can be updated.

Notes on API Ambiguities

  • Some endpoints rely on parameter-driven actions (action=data, action=details, action=addnotes) instead of distinct paths.
  • Task behavior is implemented via item endpoints and item type mapping, based on Get item types output.
  • Response structures differ by endpoint (indexed maps like itemJObj + item_prop); node normalizes these into record arrays where possible.