ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

quickbooks

Manage QuickBooks Online accounting - invoices, customers, payments, and reports via Intuit API.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/mrgoodb/quickbooks
Or

QuickBooks 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

Author@mrgoodb
Stars1401
Views0
Updated2026-02-24
View Author Profile
AI Skill Finder

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 skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-mrgoodb-quickbooks": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.