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 🙏

© 2025 – Pkg Stats / Ryan Hefner

n8n-nodes-quickbooks-sales-receipt

v1.0.3

Published

n8n community node for QuickBooks Online Sales Receipt operations (create and delete)

Readme

n8n-nodes-quickbooks-sales-receipt

This is an n8n community node that adds QuickBooks Sales Receipt operations (create and delete) to n8n.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Usage
Resources

Installation

Follow the installation guide in the n8n community nodes documentation.

Community Node Installation

  1. Go to Settings > Community Nodes in your n8n instance
  2. Select Install
  3. Enter n8n-nodes-quickbooks-sales-receipt in Enter npm package name
  4. Agree to the risks and select Install

After installation, the QuickBooks Sales Receipt node will be available in your n8n instance.

Manual Installation

To install manually (for development or testing):

# Navigate to your n8n installation
cd ~/.n8n/nodes

# Install the package
npm install n8n-nodes-quickbooks-sales-receipt

Operations

This node supports the following operations for QuickBooks Sales Receipts:

Create

Create a new sales receipt in QuickBooks Online.

Required fields:

  • Customer Reference
  • At least one line item with:
    • Detail Type (Sales Item Line Detail)
    • Amount
    • Description
    • Item ID

Optional fields:

  • Billing Address
  • Shipping Address
  • Billing Email
  • Customer Memo
  • Private Note
  • Payment Method
  • Deposit To Account
  • Transaction Date
  • Document Number
  • Email Status
  • Print Status
  • Custom Fields

Delete

Delete an existing sales receipt from QuickBooks Online.

Required fields:

  • Sales Receipt ID

Credentials

This node uses the QuickBooks OAuth2 API credentials from n8n-nodes-base. You must set up QuickBooks OAuth2 credentials before using this node.

Setting up QuickBooks OAuth2 Credentials

  1. Create a QuickBooks app at https://developer.intuit.com
  2. Get your Client ID and Client Secret
  3. In n8n, create new credentials for QuickBooks OAuth2 API
  4. Enter your Client ID and Client Secret
  5. Choose environment (Production or Sandbox)
  6. Complete the OAuth2 authentication flow

For detailed instructions, see the n8n QuickBooks credentials documentation.

Usage

Creating a Sales Receipt

  1. Add the QuickBooks Sales Receipt node to your workflow
  2. Select Create operation
  3. Choose a customer from the dropdown (or use an expression)
  4. Add line items:
    • Set the amount
    • Add a description
    • Select an item
    • Optionally set quantity and tax code
  5. Optionally add additional fields like payment method, billing address, etc.
  6. Execute the node

Deleting a Sales Receipt

  1. Add the QuickBooks Sales Receipt node to your workflow
  2. Select Delete operation
  3. Enter the Sales Receipt ID (you can get this from a previous Create or Get operation)
  4. Execute the node

Example Workflow

Here's a simple example workflow:

  1. Manual Trigger - Start the workflow
  2. QuickBooks Sales Receipt (Create) - Create a new sales receipt
    • Customer: Select from list
    • Line Item:
      • Amount: 100
      • Description: "Product Sale"
      • Item: Select from list
  3. QuickBooks Sales Receipt (Delete) - Delete the created receipt
    • Sales Receipt ID: {{ $json.Id }}

Compatibility

  • Tested with n8n version 1.0.0 and above
  • Requires Node.js 18.0.0 or higher

Resources

Development

Setup

# Clone or download the repository
git clone https://github.com/yourusername/n8n-nodes-quickbooks-sales-receipt.git
cd n8n-nodes-quickbooks-sales-receipt

# Install dependencies
npm install

# Build the node
npm run build

Testing

# Run tests
npm test

# Run tests with coverage
npm test -- --coverage

Local Development

# Link the package locally
npm link

# In your n8n installation directory
cd ~/.n8n/nodes
npm link n8n-nodes-quickbooks-sales-receipt

# Restart n8n

License

MIT

Support

For issues, questions, or contributions, please visit the GitHub repository.