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

@velocity-bpa/n8n-nodes-acumatica-cloud-erp

v1.0.0

Published

n8n node for Acumatica Cloud ERP integration

Readme

n8n-nodes-acumatica-cloud-erp

[Velocity BPA Licensing Notice]

This n8n node is licensed under the Business Source License 1.1 (BSL 1.1).

Use of this node by for-profit organizations in production environments requires a commercial license from Velocity BPA.

For licensing information, visit https://velobpa.com/licensing or contact [email protected].

This n8n community node provides comprehensive integration with Acumatica Cloud ERP system. With 7 core resources implemented, it enables seamless automation of financial operations, customer management, inventory control, and accounting workflows directly within your n8n automations.

n8n Community Node License TypeScript ERP Cloud Financial

Features

  • Customer Management - Create, update, retrieve, and manage customer records with comprehensive contact information
  • Sales Operations - Complete sales order lifecycle management from creation to fulfillment
  • Inventory Control - Stock item management including creation, updates, and inventory tracking
  • Invoice Processing - Automated sales invoice generation, updates, and payment tracking
  • Purchase Management - Purchase order creation and vendor relationship management
  • Vendor Operations - Comprehensive vendor management with contact and payment term handling
  • Financial Transactions - Journal transaction processing for accounting and financial reporting
  • Secure API Integration - API key-based authentication for secure ERP connectivity

Installation

Community Nodes (Recommended)

  1. Open n8n
  2. Go to SettingsCommunity Nodes
  3. Click Install a community node
  4. Enter n8n-nodes-acumatica-cloud-erp
  5. Click Install

Manual Installation

cd ~/.n8n
npm install n8n-nodes-acumatica-cloud-erp

Development Installation

git clone https://github.com/Velocity-BPA/n8n-nodes-acumatica-cloud-erp.git
cd n8n-nodes-acumatica-cloud-erp
npm install
npm run build
mkdir -p ~/.n8n/custom
ln -s $(pwd) ~/.n8n/custom/n8n-nodes-acumatica-cloud-erp
n8n start

Credentials Setup

| Field | Description | Required | |-------|-------------|----------| | API Key | Your Acumatica API access key | Yes | | Base URL | Your Acumatica instance base URL | Yes | | Company | Company database identifier | Yes | | API Version | Acumatica API version (default: 22.200.001) | No |

Resources & Operations

1. Customer

| Operation | Description | |-----------|-------------| | Create | Create a new customer record | | Update | Update existing customer information | | Get | Retrieve customer details by ID | | Get All | List all customers with optional filtering | | Delete | Remove customer record |

2. Sales Order

| Operation | Description | |-----------|-------------| | Create | Create new sales order | | Update | Modify existing sales order | | Get | Retrieve sales order by order number | | Get All | List all sales orders with filtering options | | Delete | Cancel/delete sales order | | Add Line | Add line item to existing order | | Update Line | Modify order line details |

3. Stock Item

| Operation | Description | |-----------|-------------| | Create | Create new inventory item | | Update | Update stock item information | | Get | Retrieve item details by inventory ID | | Get All | List all stock items with filtering | | Delete | Remove stock item | | Adjust Quantity | Update inventory quantities |

4. Sales Invoice

| Operation | Description | |-----------|-------------| | Create | Generate new sales invoice | | Update | Modify invoice details | | Get | Retrieve invoice by reference number | | Get All | List all invoices with date/status filters | | Release | Release invoice for payment | | Void | Void existing invoice |

5. Purchase Order

| Operation | Description | |-----------|-------------| | Create | Create new purchase order | | Update | Modify purchase order details | | Get | Retrieve PO by order number | | Get All | List purchase orders with filtering | | Release | Release PO for processing | | Cancel | Cancel purchase order |

6. Vendor

| Operation | Description | |-----------|-------------| | Create | Create new vendor record | | Update | Update vendor information | | Get | Retrieve vendor details by ID | | Get All | List all vendors with filtering | | Delete | Remove vendor record |

7. Journal Transaction

| Operation | Description | |-----------|-------------| | Create | Create journal entry | | Update | Modify journal transaction | | Get | Retrieve transaction by batch number | | Get All | List journal transactions | | Release | Post transaction to general ledger | | Reverse | Create reversing entry |

Usage Examples

// Create a new customer
{
  "customerID": "CUST001",
  "customerName": "ABC Corporation",
  "mainContact": {
    "firstName": "John",
    "lastName": "Smith",
    "email": "[email protected]"
  },
  "customerClass": "COMMERCIAL",
  "terms": "NET30"
}
// Create a sales order
{
  "customerID": "CUST001",
  "orderType": "SO",
  "description": "Monthly service order",
  "details": [
    {
      "inventoryID": "SERVICE001",
      "quantity": 1,
      "unitPrice": 500.00
    }
  ]
}
// Update stock item inventory
{
  "inventoryID": "ITEM001",
  "warehouseID": "MAIN",
  "qtyOnHand": 150,
  "unitCost": 25.50,
  "lastCost": 24.75
}
// Create journal transaction
{
  "batchNbr": "JE202401001",
  "description": "Monthly accruals",
  "details": [
    {
      "account": "1200",
      "debitAmount": 1000.00,
      "description": "Accounts Receivable"
    },
    {
      "account": "4000",
      "creditAmount": 1000.00,
      "description": "Service Revenue"
    }
  ]
}

Error Handling

| Error | Description | Solution | |-------|-------------|----------| | Authentication Failed | Invalid API key or credentials | Verify API key and instance URL in credentials | | Record Not Found | Requested entity doesn't exist | Check entity ID/number format and existence | | Validation Error | Required fields missing or invalid | Review Acumatica field requirements and data types | | Permission Denied | Insufficient user permissions | Ensure API user has proper role assignments | | Rate Limit Exceeded | Too many API requests | Implement delays between requests or batch operations | | Connection Timeout | Network or server issues | Check instance availability and network connectivity |

Development

npm install
npm run build
npm test
npm run lint
npm run dev

Author

Velocity BPA

Licensing

This n8n community node is licensed under the Business Source License 1.1.

Free Use

Permitted for personal, educational, research, and internal business use.

Commercial Use

Use of this node within any SaaS, PaaS, hosted platform, managed service, or paid automation offering requires a commercial license.

For licensing inquiries: [email protected]

See LICENSE, COMMERCIAL_LICENSE.md, and LICENSING_FAQ.md for details.

Contributing

Contributions are welcome! Please ensure:

  1. Code follows existing style conventions
  2. All tests pass (npm test)
  3. Linting passes (npm run lint)
  4. Documentation is updated for new features
  5. Commit messages are descriptive

Support