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

@trg-admin/n8n-nodes-zoho-projects

v0.1.6

Published

n8n community node for Zoho Projects with OAuth2 token refresh delegated to n8n

Readme

n8n-nodes-zoho-projects

Zoho Projects community node for n8n, implemented in TypeScript with OAuth2 refresh-token handling delegated to n8n via this.helpers.requestOAuth2.

Authentication Pattern

  • Credential extends oAuth2Api.
  • OAuth endpoints are selectable for US/EU/IN/AU/CN.
  • authQueryParameters is set to access_type=offline so Zoho can issue refresh tokens.
  • authentication is set to body.
  • Requests are made with this.helpers.requestOAuth2('zohoProjectsOAuth2Api', options).
  • No manual refresh-token logic is implemented.

Official OAuth references:

  • Get authorization code (includes access_type=offline): https://www.zoho.com/accounts/protocol/oauth/web-apps/authorization.html
  • Get access token (includes api_domain and refresh behavior notes): https://www.zoho.com/accounts/protocol/oauth/web-apps/access-token.html
  • Multi-DC flow (api_domain usage): https://www.zoho.com/accounts/protocol/oauth/multi-dc.html

Base URL Resolution

The request helper resolves API base URL in this order:

  1. Explicit credential override (projectsBaseUrl)
  2. oauthTokenData.api_domain
  3. Fallback from selected auth/token region

Implemented Operations

  • Portal: Get Many, Get
  • Project: Get Many, Get, Create, Update
  • Task: Get Many, Get, Create, Update

Endpoint Audit (Official Sources)

Portals

  • Get Many

    • Endpoint: GET /restapi/portals/
    • Scope: ZohoProjects.portals.READ
    • Doc: Portals API > All Portals
    • URL: https://www.zoho.com/projects/help/rest-api/portals-api.html
  • Get

    • Endpoint: GET /restapi/portal/[PORTALID]/
    • Scope: ZohoProjects.portals.READ
    • Doc: Portals API > Portal Details
    • URL: https://www.zoho.com/projects/help/rest-api/portals-api.html

Projects

  • Get Many

    • Endpoint: GET /restapi/portal/[PORTALID]/projects/
    • Scope: ZohoProjects.projects.READ
    • Doc: Projects API > All Projects
    • URL: https://www.zoho.com/projects/help/rest-api/projects-api.html
  • Get

    • Endpoint: GET /restapi/portal/[PORTALID]/projects/[PROJECTID]/
    • Scope: ZohoProjects.projects.READ
    • Doc: Projects API > Project Details
    • URL: https://www.zoho.com/projects/help/rest-api/projects-api.html
  • Create

    • Endpoint: POST /restapi/portal/[PORTALID]/projects/
    • Scope: ZohoProjects.projects.CREATE
    • Doc: Projects API > Create a Project
    • URL: https://www.zoho.com/projects/help/rest-api/projects-api.html
  • Update

    • Endpoint: POST /restapi/portal/[PORTALID]/projects/[PROJECTID]/
    • Scope: ZohoProjects.projects.UPDATE
    • Doc: Projects API > Update a Project
    • URL: https://www.zoho.com/projects/help/rest-api/projects-api.html

Tasks

  • Get Many

    • Endpoint: GET /restapi/portal/[PORTALID]/projects/[PROJECTID]/tasks/
    • Scope: ZohoProjects.tasks.READ
    • Doc: Tasks API > All Tasks
    • URL: https://www.zoho.com/projects/help/rest-api/tasks-api.html
  • Get

    • Endpoint: GET /restapi/portal/[PORTALID]/projects/[PROJECTID]/tasks/[TASKID]/
    • Scope: ZohoProjects.tasks.READ
    • Doc: Tasks API > Task Details
    • URL: https://www.zoho.com/projects/help/rest-api/tasks-api.html
  • Create

    • Endpoint: POST /restapi/portal/[PORTALID]/projects/[PROJECTID]/tasks/
    • Scope: ZohoProjects.tasks.CREATE
    • Doc: Tasks API > Create Task
    • URL: https://www.zoho.com/projects/help/rest-api/tasks-api.html
  • Update

    • Endpoint: POST /restapi/portal/[PORTALID]/projects/[PROJECTID]/tasks/[TASKID]/
    • Scope: ZohoProjects.tasks.UPDATE
    • Doc: Tasks API > Update Task
    • URL: https://www.zoho.com/projects/help/rest-api/tasks-api.html

Required Request Header and Param Style

  • Zoho examples show Authorization: Zoho-oauthtoken <access_token> and use query/form-style request params: https://www.zoho.com/projects/help/rest-api/examples.html

Known Documentation Ambiguity

  • The fetched Zoho Projects REST docs consistently show projectsapi.zoho.com examples.
  • The same docs (as fetched) do not provide a clear, product-specific table listing all regional projectsapi domains.
  • This package therefore prioritizes oauthTokenData.api_domain and keeps explicit region overrides configurable.