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-acumatica-forms

v1.5.1

Published

n8n community nodes for Acumatica ERP API with form-based inputs (enhanced fork)

Readme

n8n-nodes-acumatica-forms

n8n community nodes for Acumatica ERP API integration with dynamic form-based inputs.

Features dynamic form fields generated from the Acumatica OpenAPI schema — no JSON payloads required.

Installation

Install via n8n Community Nodes:

  1. Go to Settings → Community Nodes
  2. Click "Install"
  3. Enter n8n-nodes-acumatica-forms

Credentials

Uses OAuth 2.0 Authorization Code flow. You'll need:

  • Acumatica instance URL
  • Client ID (with tenant suffix, e.g., GUID@TenantName)
  • Client Secret

Configure in Acumatica: System → Integration → Connected Applications

Nodes

  • Acumatica Default 24.200.001 - For Acumatica 2024 R2
  • Acumatica Default 25.200.001 - For Acumatica 2025 R2

Usage

Basic Operations

  1. Add an Acumatica node to your workflow
  2. Select the Resource (e.g., SalesOrder, Customer, Invoice)
  3. Select the Operation (e.g., upsert, get, getList, delete)
  4. Fill in the form fields that appear — no JSON required

Example: Create/Update a Sales Order

  • Resource: SalesOrder
  • Operation: upsert
  • Customer ID: CUST001
  • Order Nbr: SO001234
  • Description: My order

Expand the Details fixedCollection to add line items with Inventory ID, Quantity, etc.

Example: Query Sales Orders

  • Resource: SalesOrder
  • Operation: getList
  • Use the Customer ID Filter → operator: equals, value: CUST001
  • Or use Custom Filter for advanced OData: OrderDate/value gt 2024-01-01T00:00:00

Example: Get a Single Record

  • Resource: Customer
  • Operation: get
  • ID: CUST001

Example: Delete a Record

  • Resource: SalesOrder
  • Operation: delete
  • ID: SO001234

Building from Source

# Clone the repo
git clone https://gitlab.com/donny.gies/n8n-nodes-acumatica-forms.git
cd n8n-nodes-acumatica-forms

# Install dependencies
npm install

# Build (generates field definitions from swagger.json, then compiles TypeScript)
npm run build

# Link to local n8n for testing
npm link
cd ~/.n8n/nodes
npm link n8n-nodes-acumatica-forms

# Restart n8n
n8n start

Known Limitations

  • Build-time only: Field definitions are generated at build time from swagger.json. If Acumatica adds new fields in a patch, rebuild the package to pick them up.
  • Large resource scrolling: SalesOrder, Invoice, and other large resources have 50+ fields. Use the "Additional Fields" collection to find optional fields.
  • Custom endpoints: Acumatica custom endpoints not in swagger.json are not supported via form fields. Use a generic HTTP node for those.
  • No client-side field dependencies: Fields cannot conditionally appear based on other field values (n8n limitation for community nodes).
  • Value wrappers always applied: All field values are wrapped in { value: x } format. Do not wrap values manually.

Testing

A test workflow is available at .n8n/workflows/test-v2.json covering:

  • upsert — PUT request with form fields
  • getList — GET with generated OData filter
  • getList — GET with custom OData filter string
  • get — GET single record by ID
  • delete — DELETE by ID

To use it: import the file into your n8n instance via Workflows → Import from file.

License

MIT