Skip to main content

🚀 Quickstart

Connect to Quickbooks with Nango and see data flow in 2 minutes.
1

Create the integration

In Nango (free signup), go to Integrations -> Configure New Integration -> Quickbooks.
2

Authorize Quickbooks

Go to Connections -> Add Test Connection -> Authorize, then log in to Quickbooks. Later, you’ll let your users do the same directly from your app.
3

Call the Quickbooks API

Let’s make your first request to the Quickbooks API. Replace the placeholders below with your secret key, integration ID, and connection ID:
curl "https://api.nango.dev/proxy/v3/company/${connectionConfig.realmId}/query?query=select * from Account" \
  -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
  -H "Provider-Config-Key: <INTEGRATION-ID>" \
  -H "Connection-Id: <CONNECTION-ID>"
Or fetch credentials with the Node SDK or API.✅ You’re connected! Check the Logs tab in Nango to inspect requests.
4

Implement Nango in your app

Follow our quickstart to integrate Nango in your app.To obtain your own production credentials, follow the setup guide linked below.

📚 Quickbooks Integration Guides

Nango maintained guides for common use cases. Official docs: Quickbooks API documentation

🧩 Pre-built syncs & actions for Quickbooks

Enable them in your dashboard. Extend and customize to fit your needs.

Accounts

Function nameDescriptionTypeSource code
create-accountCreates a single account in QuickBooks.Action🔗 Github
update-accountUpdates a single account in QuickBooks.Action🔗 Github
accountsFetches all accounts in QuickBooks. Handles both active and archived accounts, saving or deleting them based on their status.Sync🔗 Github

Bill Payments

Function nameDescriptionTypeSource code
bill-paymentsFetches all QuickBooks bill paymentsSync🔗 Github

Bills

Function nameDescriptionTypeSource code
create-billCreates a single bill in QuickBooks.Action🔗 Github
billsFetches all QuickBooks billsSync🔗 Github

Credit Memos

Function nameDescriptionTypeSource code
create-credit-memoCreates a single credit memo in QuickBooks.Action🔗 Github
update-credit-memoUpdates a single credit memo in QuickBooks.Action🔗 Github
credit-memosFetches all QuickBooks credit memosSync🔗 Github

Customers

Function nameDescriptionTypeSource code
create-customerCreates a single customer in QuickBooks.Action🔗 Github
update-customerUpdate a single customer in QuickBooks.Action🔗 Github
customersFetches all QuickBooks customers. Handles both active and archived customers, saving or deleting them based on their status.Sync🔗 Github

Deposits

Function nameDescriptionTypeSource code
depositsFetches all QuickBooks depositsSync🔗 Github

Invoices

Function nameDescriptionTypeSource code
create-invoiceCreates a single invoice in QuickBooks.Action🔗 Github
update-invoiceUpdates a single invoice in QuickBooks.Action🔗 Github
invoicesFetches all invoices in QuickBooks. Handles both active and voided invoices, saving or deleting them based on their status.Sync🔗 Github

Items

Function nameDescriptionTypeSource code
create-itemCreates a single item in QuickBooks.Action🔗 Github
update-itemUpdate a single item in QuickBooks.Action🔗 Github
itemsFetches all items in QuickBooks. Handles both active and archived items, saving or deleting them based on their status.Sync🔗 Github

Journal Entries

Function nameDescriptionTypeSource code
create-journal-entryCreates a single journal entry in QuickBooks.Action🔗 Github
update-journal-entryUpdate a single journal entry in QuickBooks.Action🔗 Github
journal-entriesFetch all journal entries in QuickBooksSync🔗 Github

Payments

Function nameDescriptionTypeSource code
create-paymentCreates a single payment in QuickBooks.Action🔗 Github
paymentsFetches all payments in QuickBooks. Handles both active and voided payments, saving or deleting them based on their status.Sync🔗 Github

Purchase Orders

Function nameDescriptionTypeSource code
create-purchase-orderCreates a single purchase order in QuickBooks.Action🔗 Github

Purchases

Function nameDescriptionTypeSource code
purchasesFetches all QuickBooks purchasesSync🔗 Github

Transfers

Function nameDescriptionTypeSource code
transfersFetches all QuickBooks transfersSync🔗 Github