Skip to main content

πŸš€ Quickstart

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

Create the integration

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

Authorize Quickbooks Sandbox

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

Call the Quickbooks Sandbox API

Let’s make your first request to the Quickbooks Sandbox API. Replace the placeholders below with your secret key, integration ID, and connection ID:
  • cURL
  • Node
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 Sandbox Integration Guides

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

🧩 Pre-built syncs & actions for Quickbooks Sandbox

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