QuickBooks
QUICKBOOKS_CREATE_ACCOUNT
Create a new account in QuickBooks with the given parameters.
Remote quickbooks
Remote (network-hosted)
Other tools also called QUICKBOOKS_CREATE_ACCOUNT?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"title": "Name",
"maxLength": 100,
"description": "User recognizable name for the Account. Account.Name attribute must not contain double quotes (\") or colon (:)."
},
"account_type": {
"enum": [
"Bank",
"Other Current Asset",
"Fixed Asset",
"Other Asset",
"Accounts Receivable",
"Equity",
"Expense",
"Other Expense",
"Cost of Goods Sold",
"Accounts Payable",
"Credit Card",
"Long Term Liability",
"Other Current Liability",
"Income",
"Other Income"
],
"type": "string",
"title": "AccountType",
"default": null,
"nullable": true,
"description": "Type of the account to be created"
},
"account_number": {
"type": "string",
"title": "Account Number",
"default": null,
"nullable": true,
"description": "User-defined account number to help the user in identifying the account within the chart-of-accounts and in deciding what should be posted to the account. must not contain colon (:). For France locales:"
},
"account_sub_type": {
"enum": [
"CashOnHand",
"Checking",
"MoneyMarket",
"RentsHeldInTrust",
"Savings",
"TrustAccounts"
],
"type": "string",
"title": "BankAccSubType",
"default": null,
"examples": [
"AdvertisingPromotional",
"Checking",
"Inventory",
"Insurance"
],
"nullable": true,
"description": "Sub-type of the account. Must use exact enum values (no spaces/slashes). Examples: 'AdvertisingPromotional' (NOT 'Advertising/Promotional'), 'Checking', 'Inventory', 'OtherCurrentAssets', 'Vehicles', 'RetainedEarnings', 'Insurance', 'InterestEarned'. See QuickBooks API docs for complete list."
}
}
}