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-gohighlevel-pit

v0.1.0

Published

n8n community node for GoHighLevel v2 API with Private Integration Token (PIT) auth

Readme

n8n-nodes-gohighlevel-pit

npm version License: MIT n8n community node

GoHighLevel v2 API node for n8n, built around Private Integration Token (PIT) auth. The built-in HighLevel node in n8n is OAuth2-only and silently breaks on Custom Fields. This node uses PIT auth — no OAuth redirect, no expiring refresh tokens — and fixes Custom Fields on Contacts and Opportunities. It also adds live Pipeline/Stage dropdowns, a Tags resource, and full CRUD on Custom Values, none of which the built-in node covers.


Comparison

| Feature | Built-in HighLevel Node | This Node | |---|---|---| | Auth method | OAuth2 only (known refresh bugs) | PIT + OAuth2 | | Custom Fields on Contacts | ❌ Broken | ✅ Working | | Custom Fields on Opportunities | ❌ Not supported | ✅ Working | | Pipeline/Stage dropdowns | ❌ Paste IDs manually | ✅ Live search | | Tags resource | ❌ Not available | ✅ Add / Remove | | Custom Values resource | ❌ Not available | ✅ Full CRUD | | Contact Search (POST) | ❌ Not available | ✅ Available | | Pipelines queryable | ❌ Not available | ✅ Available |


Installation

Via n8n UI (self-hosted):

Settings → Community Nodes → search n8n-nodes-gohighlevel-pit → Install

Via npm:

npm install n8n-nodes-gohighlevel-pit

Not yet verified for n8n Cloud. Verification in progress.


Setup: Getting your Private Integration Token

  1. Log into your GHL sub-account (not the agency dashboard)
  2. Go to Settings → Private Integrations → Create New Integration
  3. Name it anything — e.g. n8n Automation
  4. Grant the following scopes:
    • contacts.readonly
    • contacts.write
    • opportunities.readonly
    • opportunities.write
    • locations/customValues.readonly
    • locations/customValues.write
    • locations/customFields.readonly
    • locations/customFields.write
  5. Click Create — copy the token immediately, it is shown only once
  6. Also copy your Location ID from Settings → Business Profile

Setup: Configuring the credential in n8n

  1. Add a GoHighLevel node to your workflow
  2. Click Credential → Create New → GoHighLevel API
  3. Paste your Private Integration Token
  4. Paste your Location ID
  5. Click Save — a green checkmark confirms the connection

Operations

| Resource | Operations | Notes | |---|---|---| | Contact | Create, Get, Update, Delete, Get Many, Search | Custom Fields supported on Create and Update | | Opportunity | Create, Get, Update, Delete, Get Many | Pipeline and Stage use live searchable dropdowns. Custom Fields supported. | | Pipeline | Get Many | Read-only. Populates the Pipeline and Stage dropdowns in Opportunity operations. | | Tag | Add, Remove | Adds or removes tags on a contact. To read a contact's tags, use Get Contact — tags are returned in the contact object's tags field. | | Custom Value | Create, Get, Get Many, Update, Delete | Location-level merge variables used in GHL email and SMS templates. |


Known Limitations

  • OAuth2 support is included as a secondary auth option, but PIT is recommended. OAuth2 refresh token failures with the GHL API are a known n8n issue outside the scope of this node.
  • Not yet verified for n8n Cloud. Self-hosted n8n is fully supported.
  • Tag reading is done via Get Contact, not a standalone Get Tags operation. GHL's v2 API does not expose a dedicated endpoint for listing tags on a contact — they are returned as part of the contact object.

Contributing

Fork the repo, create a branch, open a PR. Bug reports and issues are welcome on GitHub.


License

MIT