Sign in

Create item

documented

Create an item (product or service) in QuickBooks.

POST /v3/company/{realmId}/itemItemsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://quickbooks.api.intuit.com/v3/company/{{$realmId}}/item" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"Name": "{{$name}}", "Description": "{{$description}}", "Active": {{$active}}, "Type": "Service", "IncomeAccountRef": {"value": "{{$income_account_id}}"}, "ExpenseAccountRef": {"value": "{{$expense_account_id}}"}, "PurchaseCost": {{$purchase_cost}} }'
Create item · QuickBooks · OpenIntegrations