quickbooks
Manage QuickBooks Online accounting - invoices, customers, payments, and reports via Intuit API.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/mrgoodb/quickbooksQuickBooks Online
Small business accounting.
Environment
export QUICKBOOKS_ACCESS_TOKEN="xxxxxxxxxx"
export QUICKBOOKS_REALM_ID="123456789" # Company ID
export QB_BASE="https://quickbooks.api.intuit.com/v3/company"
List Customers
curl "$QB_BASE/$QUICKBOOKS_REALM_ID/query?query=select * from Customer" \
-H "Authorization: Bearer $QUICKBOOKS_ACCESS_TOKEN" \
-H "Accept: application/json"
Create Invoice
curl -X POST "$QB_BASE/$QUICKBOOKS_REALM_ID/invoice" \
-H "Authorization: Bearer $QUICKBOOKS_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"CustomerRef": {"value": "1"},
"Line": [{
"Amount": 100.00,
"DetailType": "SalesItemLineDetail",
"SalesItemLineDetail": {"ItemRef": {"value": "1"}}
}]
}'
List Invoices
curl "$QB_BASE/$QUICKBOOKS_REALM_ID/query?query=select * from Invoice" \
-H "Authorization: Bearer $QUICKBOOKS_ACCESS_TOKEN" \
-H "Accept: application/json"
Get Company Info
curl "$QB_BASE/$QUICKBOOKS_REALM_ID/companyinfo/$QUICKBOOKS_REALM_ID" \
-H "Authorization: Bearer $QUICKBOOKS_ACCESS_TOKEN" \
-H "Accept: application/json"
Create Payment
curl -X POST "$QB_BASE/$QUICKBOOKS_REALM_ID/payment" \
-H "Authorization: Bearer $QUICKBOOKS_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"CustomerRef": {"value": "1"},
"TotalAmt": 100.00,
"Line": [{"Amount": 100.00, "LinkedTxn": [{"TxnId": "123", "TxnType": "Invoice"}]}]
}'
Links
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-mrgoodb-quickbooks": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
smartsheet
Manage sheets, rows, and columns via Smartsheet API. Automate spreadsheet workflows.
onelogin
Manage users and apps via OneLogin API. Handle SSO and identity management.
google-sheets
Read and write Google Sheets data. Create spreadsheets, update cells, and manage worksheets via Sheets API.
postmark
Send transactional emails with high deliverability via Postmark API. Manage templates, track bounces, and view analytics.
loom
Manage Loom video recordings - list, share, and get analytics via Loom API.