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

@affeldt28/n8n-nodes-infinigate

v1.0.4

Published

n8n node for Infinigate

Readme

n8n-nodes-infinigate

This is an n8n community node for the Infinigate Reseller API.

It lets you use Infinigate API endpoints in your n8n workflows, starting with invoice management operations for purchase credit memos.

n8n is a fair-code licensed workflow automation platform.

Installation Operations Credentials Compatibility Usage Resources

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

This node currently supports the following weclapp resources and operations:

Operations

This node currently supports the following Infinigate resources and operations.

Invoice-Management

| Operation | API | Implemented | | ---------------------------- | ----------------------------------------------------------------------------- | ----------- | | CreditMemo overview list | GET /invoice-management/v2/purchasecreditmemo | ✅ | | CreditMemo by documentId | GET /invoice-management/v2/purchasecreditmemo/{documentGuid} | ✅ | | CreditMemo by documentNumber | GET /invoice-management/v2/purchasecreditmemo/documentNumber/{documentNumber} | ✅ | | Invoice overview list | GET /invoice-management/v2/purchaseinvoice | ✅ | | Invoice by documentId | GET /invoice-management/v2/purchaseinvoice/{documentGuid} | ✅ | | Invoice by documentNumber | GET /invoice-management/v2/purchaseinvoice/documentNumber/{documentNumber} | ✅ |

Order-Management

| Operation | API | Implemented | | --------------------------------------------- | ---------------------------------------------------------------------- | ----------- | | Get Quote overview list | GET /order-management/v2/purchasequote | ✅ | | Get Quote by documentId | GET /order-management/v2/purchasequote/{documentGuid} | ✅ | | Get Quote by documentNumber | GET /order-management/v2/purchasequote/documentNumber/{documentNumber} | ✅ | | Post acceptance for Quote with documentNumber | POST /order-managment/v2/purchasequote/acceptance | ✅ | | Post reject for Quote with documentNumber | POST /order-managment/v2/purchasequote/reject | ✅ | | Post request for a PurchaseOrder | POST /order-managment/v2/purchaseorder/request | ✅ |

Product-Management

| Operation | API | Implemented | | ----------------------------------- | -------------------------------------------------------------- | ----------- | | Get PriceList Item search | GET /product-management/v1/pricelist/search/{searchword} | ✅ | | Get PriceList By VendorSkus | GET /product-management/v1/pricelist/vendor | ✅ | | Get PriceList By Skus | GET /product-management/v1/pricelist/skus | ✅ | | Get PriceList Item Count | GET /product-management/v1/pricelist/search/count/{searchword} | ✅ | | Get all products for a Manufacturer | GET /product-management/v1/pricelist/ | ✅ | | Get List of all Manufacturer names | GET /product-management/v1/manufacturer | ✅ |

Credentials

This node uses the Infinigate API credential.

You need the API access data provided by Infinigate:

  • Client ID: Sent as client_id to the token endpoint
  • Client Secret: Sent as client_secret to the token endpoint
  • API Key: Sent as the API-KEY header

To configure the credential in n8n:

  1. Request the API access data from Infinigate by contacting your Infinigate account manager or support.
  2. Create a new Infinigate API credential.
  3. Enter the Client ID provided by Infinigate.
  4. Enter the Client Secret provided by Infinigate.
  5. Enter the API Key provided by Infinigate.
  6. Save the credential.

The API base URL is https://api.infinigate.com The token request uses grant_type=client_credentials. The returned bearer token is then sent together with the API-KEY header on API requests.

Compatibility

This package uses the n8n community node API version 1 and depends on n8n-workflow.

No specific minimum n8n version is pinned in this package yet.

Usage

Add the Infinigate node to a workflow and select the PurchaseCreditMemo resource.

For CreditMemo overview list, no additional parameters are required.

For CreditMemo by documentId, provide the Document Guid value returned by the overview list or by another Infinigate API response.

Resources