{
  "schemaVersion": "1.0",
  "item": {
    "slug": "quickbooks",
    "name": "QuickBooks",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/byungkyu/quickbooks",
    "canonicalUrl": "https://clawhub.ai/byungkyu/quickbooks",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/quickbooks",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=quickbooks",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "LICENSE.txt"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/quickbooks"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/quickbooks",
    "agentPageUrl": "https://openagent3.xyz/skills/quickbooks/agent",
    "manifestUrl": "https://openagent3.xyz/skills/quickbooks/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/quickbooks/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "QuickBooks",
        "body": "Access the QuickBooks Online API with managed OAuth authentication. Manage customers, vendors, invoices, payments, and run financial reports."
      },
      {
        "title": "Quick Start",
        "body": "# Query customers\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/quickbooks/v3/company/:realmId/query?query=SELECT%20*%20FROM%20Customer%20MAXRESULTS%20100')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Base URL",
        "body": "https://gateway.maton.ai/quickbooks/{native-api-path}\n\nReplace {native-api-path} with the actual QuickBooks API endpoint path. The gateway proxies requests to quickbooks.api.intuit.com. The :realmId placeholder is automatically replaced with your company's realm ID from connection config."
      },
      {
        "title": "Authentication",
        "body": "All requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\""
      },
      {
        "title": "Getting Your API Key",
        "body": "Sign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key"
      },
      {
        "title": "Connection Management",
        "body": "Manage your QuickBooks OAuth connections at https://ctrl.maton.ai."
      },
      {
        "title": "List Connections",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=quickbooks&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Create Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'quickbooks'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Get Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"quickbooks\",\n    \"metadata\": {}\n  }\n}\n\nOpen the returned url in a browser to complete OAuth authorization."
      },
      {
        "title": "Delete Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Specifying Connection",
        "body": "If you have multiple QuickBooks connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/quickbooks/v3/company/:realmId/companyinfo/:realmId')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "Company Info",
        "body": "GET /quickbooks/v3/company/:realmId/companyinfo/:realmId"
      },
      {
        "title": "Customers",
        "body": "Query Customers\n\nGET /quickbooks/v3/company/:realmId/query?query=SELECT%20*%20FROM%20Customer%20MAXRESULTS%20100\n\nGet Customer\n\nGET /quickbooks/v3/company/:realmId/customer/{customerId}\n\nCreate Customer\n\nPOST /quickbooks/v3/company/:realmId/customer\nContent-Type: application/json\n\n{\n  \"DisplayName\": \"John Doe\",\n  \"PrimaryEmailAddr\": {\"Address\": \"john@example.com\"},\n  \"PrimaryPhone\": {\"FreeFormNumber\": \"555-1234\"}\n}\n\nUpdate Customer\n\nRequires Id and SyncToken from previous GET:\n\nPOST /quickbooks/v3/company/:realmId/customer\nContent-Type: application/json\n\n{\n  \"Id\": \"123\",\n  \"SyncToken\": \"0\",\n  \"DisplayName\": \"John Doe Updated\"\n}"
      },
      {
        "title": "Invoices",
        "body": "Query Invoices\n\nGET /quickbooks/v3/company/:realmId/query?query=SELECT%20*%20FROM%20Invoice%20MAXRESULTS%20100\n\nCreate Invoice\n\nPOST /quickbooks/v3/company/:realmId/invoice\nContent-Type: application/json\n\n{\n  \"CustomerRef\": {\"value\": \"123\"},\n  \"Line\": [\n    {\n      \"Amount\": 100.00,\n      \"DetailType\": \"SalesItemLineDetail\",\n      \"SalesItemLineDetail\": {\n        \"ItemRef\": {\"value\": \"1\"},\n        \"Qty\": 1\n      }\n    }\n  ]\n}\n\nDelete Invoice\n\nPOST /quickbooks/v3/company/:realmId/invoice?operation=delete\nContent-Type: application/json\n\n{\n  \"Id\": \"123\",\n  \"SyncToken\": \"0\"\n}"
      },
      {
        "title": "Payments",
        "body": "Create Payment\n\nPOST /quickbooks/v3/company/:realmId/payment\nContent-Type: application/json\n\n{\n  \"CustomerRef\": {\"value\": \"123\"},\n  \"TotalAmt\": 100.00,\n  \"Line\": [\n    {\n      \"Amount\": 100.00,\n      \"LinkedTxn\": [{\"TxnId\": \"456\", \"TxnType\": \"Invoice\"}]\n    }\n  ]\n}"
      },
      {
        "title": "Reports",
        "body": "Profit and Loss\n\nGET /quickbooks/v3/company/:realmId/reports/ProfitAndLoss?start_date=2024-01-01&end_date=2024-12-31\n\nBalance Sheet\n\nGET /quickbooks/v3/company/:realmId/reports/BalanceSheet?date=2024-12-31"
      },
      {
        "title": "Batch Operations",
        "body": "POST /quickbooks/v3/company/:realmId/batch\nContent-Type: application/json\n\n{\n  \"BatchItemRequest\": [\n    {\"bId\": \"1\", \"Query\": \"SELECT * FROM Customer MAXRESULTS 2\"},\n    {\"bId\": \"2\", \"Query\": \"SELECT * FROM Vendor MAXRESULTS 2\"}\n  ]\n}"
      },
      {
        "title": "Query Language",
        "body": "QuickBooks uses SQL-like queries:\n\nSELECT * FROM Customer WHERE DisplayName LIKE 'John%' MAXRESULTS 100\n\nOperators: =, LIKE, <, >, <=, >=, IN"
      },
      {
        "title": "SyncToken",
        "body": "All updates require the current SyncToken:\n\nGET the entity to get current SyncToken\nInclude Id and SyncToken in POST body\nIf SyncToken doesn't match, update fails"
      },
      {
        "title": "JavaScript",
        "body": "const response = await fetch(\n  'https://gateway.maton.ai/quickbooks/v3/company/:realmId/query?query=SELECT%20*%20FROM%20Customer',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/quickbooks/v3/company/:realmId/query',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'},\n    params={'query': 'SELECT * FROM Customer MAXRESULTS 10'}\n)"
      },
      {
        "title": "Notes",
        "body": ":realmId is automatically replaced by the router\nAll queries must be URL-encoded\nUse MAXRESULTS to limit query results\nDates are in YYYY-MM-DD format\nSoft delete entities by setting Active: false\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets (fields[], sort[], records[]) to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments. You may get \"Invalid API key\" errors when piping."
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Missing QuickBooks connection401Invalid or missing Maton API key429Rate limited (10 req/sec per account)4xx/5xxPassthrough error from QuickBooks API"
      },
      {
        "title": "Troubleshooting: API Key Issues",
        "body": "Check that the MATON_API_KEY environment variable is set:\n\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Troubleshooting: Invalid App Name",
        "body": "Ensure your URL path starts with quickbooks. For example:\n\nCorrect: https://gateway.maton.ai/quickbooks/v3/company/:realmId/query\nIncorrect: https://gateway.maton.ai/v3/company/:realmId/query"
      },
      {
        "title": "Resources",
        "body": "QuickBooks API Overview\nCustomers\nInvoices\nPayments\nReports\nMaton Community\nMaton Support"
      }
    ],
    "body": "QuickBooks\n\nAccess the QuickBooks Online API with managed OAuth authentication. Manage customers, vendors, invoices, payments, and run financial reports.\n\nQuick Start\n# Query customers\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/quickbooks/v3/company/:realmId/query?query=SELECT%20*%20FROM%20Customer%20MAXRESULTS%20100')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nBase URL\nhttps://gateway.maton.ai/quickbooks/{native-api-path}\n\n\nReplace {native-api-path} with the actual QuickBooks API endpoint path. The gateway proxies requests to quickbooks.api.intuit.com. The :realmId placeholder is automatically replaced with your company's realm ID from connection config.\n\nAuthentication\n\nAll requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\"\n\nGetting Your API Key\nSign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key\nConnection Management\n\nManage your QuickBooks OAuth connections at https://ctrl.maton.ai.\n\nList Connections\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=quickbooks&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Connection\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'quickbooks'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"quickbooks\",\n    \"metadata\": {}\n  }\n}\n\n\nOpen the returned url in a browser to complete OAuth authorization.\n\nDelete Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nSpecifying Connection\n\nIf you have multiple QuickBooks connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/quickbooks/v3/company/:realmId/companyinfo/:realmId')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nIf omitted, the gateway uses the default (oldest) active connection.\n\nAPI Reference\nCompany Info\nGET /quickbooks/v3/company/:realmId/companyinfo/:realmId\n\nCustomers\nQuery Customers\nGET /quickbooks/v3/company/:realmId/query?query=SELECT%20*%20FROM%20Customer%20MAXRESULTS%20100\n\nGet Customer\nGET /quickbooks/v3/company/:realmId/customer/{customerId}\n\nCreate Customer\nPOST /quickbooks/v3/company/:realmId/customer\nContent-Type: application/json\n\n{\n  \"DisplayName\": \"John Doe\",\n  \"PrimaryEmailAddr\": {\"Address\": \"john@example.com\"},\n  \"PrimaryPhone\": {\"FreeFormNumber\": \"555-1234\"}\n}\n\nUpdate Customer\n\nRequires Id and SyncToken from previous GET:\n\nPOST /quickbooks/v3/company/:realmId/customer\nContent-Type: application/json\n\n{\n  \"Id\": \"123\",\n  \"SyncToken\": \"0\",\n  \"DisplayName\": \"John Doe Updated\"\n}\n\nInvoices\nQuery Invoices\nGET /quickbooks/v3/company/:realmId/query?query=SELECT%20*%20FROM%20Invoice%20MAXRESULTS%20100\n\nCreate Invoice\nPOST /quickbooks/v3/company/:realmId/invoice\nContent-Type: application/json\n\n{\n  \"CustomerRef\": {\"value\": \"123\"},\n  \"Line\": [\n    {\n      \"Amount\": 100.00,\n      \"DetailType\": \"SalesItemLineDetail\",\n      \"SalesItemLineDetail\": {\n        \"ItemRef\": {\"value\": \"1\"},\n        \"Qty\": 1\n      }\n    }\n  ]\n}\n\nDelete Invoice\nPOST /quickbooks/v3/company/:realmId/invoice?operation=delete\nContent-Type: application/json\n\n{\n  \"Id\": \"123\",\n  \"SyncToken\": \"0\"\n}\n\nPayments\nCreate Payment\nPOST /quickbooks/v3/company/:realmId/payment\nContent-Type: application/json\n\n{\n  \"CustomerRef\": {\"value\": \"123\"},\n  \"TotalAmt\": 100.00,\n  \"Line\": [\n    {\n      \"Amount\": 100.00,\n      \"LinkedTxn\": [{\"TxnId\": \"456\", \"TxnType\": \"Invoice\"}]\n    }\n  ]\n}\n\nReports\nProfit and Loss\nGET /quickbooks/v3/company/:realmId/reports/ProfitAndLoss?start_date=2024-01-01&end_date=2024-12-31\n\nBalance Sheet\nGET /quickbooks/v3/company/:realmId/reports/BalanceSheet?date=2024-12-31\n\nBatch Operations\nPOST /quickbooks/v3/company/:realmId/batch\nContent-Type: application/json\n\n{\n  \"BatchItemRequest\": [\n    {\"bId\": \"1\", \"Query\": \"SELECT * FROM Customer MAXRESULTS 2\"},\n    {\"bId\": \"2\", \"Query\": \"SELECT * FROM Vendor MAXRESULTS 2\"}\n  ]\n}\n\nQuery Language\n\nQuickBooks uses SQL-like queries:\n\nSELECT * FROM Customer WHERE DisplayName LIKE 'John%' MAXRESULTS 100\n\n\nOperators: =, LIKE, <, >, <=, >=, IN\n\nSyncToken\n\nAll updates require the current SyncToken:\n\nGET the entity to get current SyncToken\nInclude Id and SyncToken in POST body\nIf SyncToken doesn't match, update fails\nCode Examples\nJavaScript\nconst response = await fetch(\n  'https://gateway.maton.ai/quickbooks/v3/company/:realmId/query?query=SELECT%20*%20FROM%20Customer',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\n\nPython\nimport os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/quickbooks/v3/company/:realmId/query',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'},\n    params={'query': 'SELECT * FROM Customer MAXRESULTS 10'}\n)\n\nNotes\n:realmId is automatically replaced by the router\nAll queries must be URL-encoded\nUse MAXRESULTS to limit query results\nDates are in YYYY-MM-DD format\nSoft delete entities by setting Active: false\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets (fields[], sort[], records[]) to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments. You may get \"Invalid API key\" errors when piping.\nError Handling\nStatus\tMeaning\n400\tMissing QuickBooks connection\n401\tInvalid or missing Maton API key\n429\tRate limited (10 req/sec per account)\n4xx/5xx\tPassthrough error from QuickBooks API\nTroubleshooting: API Key Issues\nCheck that the MATON_API_KEY environment variable is set:\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nTroubleshooting: Invalid App Name\nEnsure your URL path starts with quickbooks. For example:\nCorrect: https://gateway.maton.ai/quickbooks/v3/company/:realmId/query\nIncorrect: https://gateway.maton.ai/v3/company/:realmId/query\nResources\nQuickBooks API Overview\nCustomers\nInvoices\nPayments\nReports\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/quickbooks",
    "publisherUrl": "https://clawhub.ai/byungkyu/quickbooks",
    "owner": "byungkyu",
    "version": "1.0.4",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/quickbooks",
    "downloadUrl": "https://openagent3.xyz/downloads/quickbooks",
    "agentUrl": "https://openagent3.xyz/skills/quickbooks/agent",
    "manifestUrl": "https://openagent3.xyz/skills/quickbooks/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/quickbooks/agent.md"
  }
}