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-dynamics-365-bc

v1.0.0

Published

n8n community node for Dynamics 365 BC

Readme

n8n-nodes-dynamics-365-bc

[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 seamless integration with Microsoft Dynamics 365 Business Central, supporting 7 core business resources. Access customer data, manage vendors, track inventory items, process sales orders and invoices, handle purchase invoices, and retrieve company information through a unified interface.

n8n Community Node License TypeScript Microsoft Dynamics 365 ERP Business Central

Features

  • Customer Management - Create, read, update, and delete customer records with full contact and billing information
  • Vendor Operations - Comprehensive vendor management including supplier details and payment terms
  • Inventory Control - Track items with pricing, stock levels, and product specifications
  • Sales Processing - Handle sales orders from creation to completion with line item management
  • Invoice Management - Process both sales and purchase invoices with automated calculations
  • Company Data Access - Retrieve company information and organizational details
  • Real-time Synchronization - Immediate data updates between n8n workflows and Business Central
  • Error Handling - Robust error detection with detailed feedback for troubleshooting

Installation

Community Nodes (Recommended)

  1. Open n8n
  2. Go to SettingsCommunity Nodes
  3. Click Install a community node
  4. Enter n8n-nodes-dynamics-365-bc
  5. Click Install

Manual Installation

cd ~/.n8n
npm install n8n-nodes-dynamics-365-bc

Development Installation

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

Credentials Setup

| Field | Description | Required | |-------|-------------|----------| | API Key | Your Dynamics 365 Business Central API key | Yes | | Server URL | Base URL of your Business Central instance (e.g., https://api.businesscentral.dynamics.com/v2.0/tenant-id/environment-name) | Yes | | Company ID | The unique identifier for your company in Business Central | Yes |

Resources & Operations

1. Customer

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

2. Vendor

| Operation | Description | |-----------|-------------| | Create | Create a new vendor record | | Get | Fetch vendor details by ID | | Get All | Retrieve all vendors with search capabilities | | Update | Edit vendor information and payment terms | | Delete | Remove vendor from system |

3. Item

| Operation | Description | |-----------|-------------| | Create | Add new inventory items with pricing | | Get | Get specific item details and stock levels | | Get All | List all items with filtering options | | Update | Modify item information and pricing | | Delete | Remove item from inventory |

4. Sales Order

| Operation | Description | |-----------|-------------| | Create | Generate new sales orders with line items | | Get | Retrieve sales order details and status | | Get All | List sales orders with date range filtering | | Update | Modify order details and quantities | | Delete | Cancel or remove sales orders |

5. Sales Invoice

| Operation | Description | |-----------|-------------| | Create | Create sales invoices from orders or standalone | | Get | Fetch invoice details and payment status | | Get All | List all sales invoices with filters | | Update | Modify invoice information | | Delete | Void or remove sales invoices |

6. Purchase Invoice

| Operation | Description | |-----------|-------------| | Create | Create purchase invoices for vendor payments | | Get | Retrieve purchase invoice details | | Get All | List purchase invoices with vendor filtering | | Update | Edit purchase invoice information | | Delete | Remove purchase invoices |

7. Company

| Operation | Description | |-----------|-------------| | Get | Retrieve company information and settings | | Get All | List all available companies | | Update | Modify company details and preferences |

Usage Examples

// Create a new customer
{
  "name": "Acme Corporation",
  "email": "[email protected]",
  "phoneNumber": "+1-555-0123",
  "addressLine1": "123 Business St",
  "city": "Seattle",
  "state": "WA",
  "postalCode": "98101",
  "countryRegionCode": "US"
}
// Create a sales order
{
  "customerNumber": "CUST001",
  "orderDate": "2024-01-15",
  "salesOrderLines": [
    {
      "itemNumber": "ITEM001",
      "quantity": 5,
      "unitPrice": 29.99,
      "description": "Premium Widget"
    }
  ]
}
// Get all items with filtering
{
  "filter": "unitPrice gt 100",
  "select": ["number", "displayName", "unitPrice", "inventory"],
  "top": 50
}
// Update vendor payment terms
{
  "vendorId": "VEND001",
  "paymentTermsCode": "NET30",
  "paymentMethodCode": "CHECK",
  "currencyCode": "USD"
}

Error Handling

| Error | Description | Solution | |-------|-------------|----------| | 401 Unauthorized | Invalid API key or expired token | Verify API key in credentials and check token expiration | | 404 Not Found | Resource ID does not exist | Confirm the ID exists and is accessible in your company | | 400 Bad Request | Invalid data format or missing required fields | Check required fields and data types in request body | | 403 Forbidden | Insufficient permissions for operation | Ensure API key has proper permissions for the resource | | 429 Too Many Requests | Rate limit exceeded | Implement delays between requests or reduce frequency | | 500 Internal Server Error | Business Central service issue | Check service status and retry after a few minutes |

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