Integrations / Payments
QuickBooks Online
Query accounting data, look up customers and invoices, create and email invoices, and trigger workflows from QuickBooks Online changes.
Tools
quickbooks.query
Run a QuickBooks query, e.g. select * from Invoice where Balance > '0' orderby DueDate maxresults 50. Entity IDs are short numbers like 130.
quickbooks.get_customer
Get a customer by ID, e.g. 58.
quickbooks.get_invoice
Get an invoice with its lines by ID, e.g. 130 (not the DocNumber printed on the invoice).
quickbooks.create_invoice writes
Create an invoice for a customer, with one line per item sold. Customer and item IDs are short numbers like 58; find them with the query tool.
quickbooks.send_invoice writes
Email an invoice to the customer's billing address, or to another address.
quickbooks.api_get
Send a GET request to any QuickBooks Online API path under https://{api_host}/v3/company/{realm_id} and return the response. For endpoints the named tools don't cover.
quickbooks.api_request writes
Send a POST, PUT, PATCH or DELETE request to any QuickBooks Online API path under https://{api_host}/v3/company/{realm_id}.
Tick Allow raw writes on the connection to add api_request, which can send POST, PUT, PATCH and DELETE requests to any QuickBooks Online API path.
Connect
- Create an app on the Intuit Developer portal (developer.intuit.com → My Hub → App dashboard) with the com.intuit.quickbooks.accounting scope, and add the redirect URL shown on the connection page under its redirect URIs.
- Copy the app's client ID and client secret from Keys and credentials into the connection. Development keys work with sandbox companies, production keys with real ones.
- Choose the environment, then click Connect on the connection page and pick the QuickBooks company. Its company ID is filled in automatically.
- To trigger workflows, open Webhooks in the app on the Intuit Developer portal, enter the URL shown on the connection page as the endpoint URL for the same environment, choose the entities and operations, and paste the verifier token shown there on the connection.
Press Connect on the connection to approve access at QuickBooks Online. Tokens renew automatically. How OAuth connections work
Credentials
Triggers
On developer.intuit.com, open your app's Webhooks page for the matching environment (Development or Production), set this URL as the endpoint URL, choose the entities and operations, and paste the verifier token shown there on this connection. Intuit allows one endpoint per app and environment. Each event in a batch starts its own run, with its type (e.g. qbo.invoice.created.v1) and the entity's ID in the payload.
Events
triggerkind: quickbooks connection: quickbooks events: [qbo.invoice.created.v1] companies: [...]
Your next automation is one sentence away.
14-day free trial with $5 of built-in AI included. Cancel anytime.