Create an account

Creates a new financial account. QuickBooks requires you to pick a supported account type for the chart of accounts, and non-posting types can’t be created through the API.

post/quickbooks-desktop/accounts

Headers

Conductor-End-User-Idstring required

The ID of the End-User to receive this request.

Example:end_usr_1234567abcdefg

The ID of the End-User to receive this request.

Request body

namestring required

The case-insensitive name of this account. Not guaranteed to be unique because it does not include the names of its hierarchical parent objects like fullName does. For example, two accounts could both have the name "Accounts-Payable", but they could have unique fullName values, such as "Corporate:Accounts-Payable" and "Finance:Accounts-Payable".

Maximum length: 31 characters.

isActiveboolean

Indicates whether this account is active. Inactive objects are typically hidden from views and reports in QuickBooks. Defaults to true.

parentIdstring

The parent account one level above this one in the hierarchy. For example, if this account has a fullName of "Corporate:Accounts-Payable", its parent has a fullName of "Corporate". If this account is at the top level, this field will be null.

accountType'accounts_payable' | 'accounts_receivable' | 'bank' | 'cost_of_goods_sold' | 'credit_card' | 'equity' | 'expense' | 'fixed_asset' | 'income' | 'long_term_liability' | 'non_posting' | 'other_asset' | 'other_current_asset' | 'other_current_liability' | 'other_expense' | 'other_income' required

The classification of this account, indicating its purpose within the chart of accounts.

NOTE: You cannot create an account of type non_posting through the API because QuickBooks creates these accounts behind the scenes.

accountNumberstring

The account's account number, which appears in the QuickBooks chart of accounts, reports, and graphs.

Note that if the "Use Account Numbers" preference is turned off in QuickBooks, the account number may not be visible in the user interface, but it can still be set and retrieved through the API.

bankAccountNumberstring

The bank account number or identifying note for this account. Access to this field may be restricted based on permissions.

descriptionstring

A description of this account.

openingBalancestring

The amount of money in, or the value of, this account as of openingBalanceDate. On a bank statement, this would be the amount of money in the account at the beginning of the statement period.

openingBalanceDatestring date

The date of the opening balance of this account, in ISO 8601 format (YYYY-MM-DD).

salesTaxCodeIdstring

The default sales-tax code for transactions with this account, determining whether the transactions are taxable or non-taxable. This can be overridden at the transaction or transaction-line level.

Default codes include "Non" (non-taxable) and "Tax" (taxable), but custom codes can also be created in QuickBooks Desktop. If QuickBooks Desktop is not set up to charge sales tax (via the "Do You Charge Sales Tax?" preference), it assigns the default non-taxable sales-tax code configured in the company file to all sales.

taxLineIdnumber

The identifier of the tax line associated with this account. You can see a list of all available values for this field by calling the endpoint for account tax lines.

currencyIdstring

The account's currency. For built-in currencies, the name and code are standard ISO 4217 international values. For user-defined currencies, all values are editable.

Example request

{
  "name": "Accounts-Payable",
  "isActive": true,
  "parentId": "80000001-1234567890",
  "accountType": "bank",
  "accountNumber": "1010",
  "bankAccountNumber": "123456789",
  "description": "Accounts-payable are the amounts owed to suppliers for goods and services purchased on credit.",
  "openingBalance": "1000.00",
  "openingBalanceDate": "2023-01-01",
  "salesTaxCodeId": "80000001-1234567890",
  "taxLineId": 123,
  "currencyId": "80000001-1234567890"
}

Response

Returns the newly created account.

idstring required

The unique identifier assigned by QuickBooks to this account. This ID is unique across all accounts but not across different QuickBooks object types.

objectType'qbd_account' required

The type of object. This value is always "qbd_account".

createdAtstring required

The date and time when this account was created, in ISO 8601 format (YYYY-MM-DDThh:mm:ss±hh:mm), which QuickBooks Desktop interprets in the local timezone of the end-user's computer.

updatedAtstring required

The date and time when this account was last updated, in ISO 8601 format (YYYY-MM-DDThh:mm:ss±hh:mm), which QuickBooks Desktop interprets in the local timezone of the end-user's computer.

revisionNumberstring required

The current QuickBooks-assigned revision number of this account object, which changes each time the object is modified. When updating this object, you must provide the most recent revisionNumber to ensure you're working with the latest data; otherwise, the update will return an error.

namestring required

The case-insensitive name of this account. Not guaranteed to be unique because it does not include the names of its hierarchical parent objects like fullName does. For example, two accounts could both have the name "Accounts-Payable", but they could have unique fullName values, such as "Corporate:Accounts-Payable" and "Finance:Accounts-Payable".

fullNamestring required

The case-insensitive fully-qualified unique name of this account, formed by combining the names of its hierarchical parent objects with its own name, separated by colons. For example, if an account is under "Corporate" and has the name "Accounts-Payable", its fullName would be "Corporate:Accounts-Payable".

NOTE: Unlike name, fullName is guaranteed to be unique across all account objects. However, fullName can still be arbitrarily changed by the QuickBooks user when they modify the underlying name field.

isActiveboolean required

Indicates whether this account is active. Inactive objects are typically hidden from views and reports in QuickBooks. Defaults to true.

sublevelnumber required

The depth level of this account in the hierarchy. A top-level account has a sublevel of 0; each subsequent sublevel increases this number by 1. For example, an account with a fullName of "Corporate:Accounts-Payable" would have a sublevel of 1.

accountType'accounts_payable' | 'accounts_receivable' | 'bank' | 'cost_of_goods_sold' | 'credit_card' | 'equity' | 'expense' | 'fixed_asset' | 'income' | 'long_term_liability' | 'non_posting' | 'other_asset' | 'other_current_asset' | 'other_current_liability' | 'other_expense' | 'other_income' required

The classification of this account, indicating its purpose within the chart of accounts.

NOTE: You cannot create an account of type non_posting through the API because QuickBooks creates these accounts behind the scenes.

specialAccountType'accounts_payable' | 'accounts_receivable' | 'condense_item_adjustment_expenses' | 'cost_of_goods_sold' | 'direct_deposit_liabilities' | 'estimates' | 'exchange_gain_loss' | 'inventory_assets' | 'item_receipt_account' | 'opening_balance_equity' | 'payroll_expenses' | 'payroll_liabilities' | 'petty_cash' | 'purchase_orders' | 'reconciliation_differences' | 'retained_earnings' | 'sales_orders' | 'sales_tax_payable' | 'uncategorized_expenses' | 'uncategorized_income' | 'undeposited_funds' nullable required

Indicates if this account is a special account automatically created by QuickBooks for specific purposes.

isTaxAccountboolean nullable required

Indicates whether this account is used for tracking taxes.

accountNumberstring nullable required

The account's account number, which appears in the QuickBooks chart of accounts, reports, and graphs.

Note that if the "Use Account Numbers" preference is turned off in QuickBooks, the account number may not be visible in the user interface, but it can still be set and retrieved through the API.

bankAccountNumberstring nullable required

The bank account number or identifying note for this account. Access to this field may be restricted based on permissions.

descriptionstring nullable required

A description of this account.

balancestring nullable required

The current balance of this account only, excluding balances from any subordinate accounts, represented as a decimal string. Compare with totalBalance. Note that income accounts and balance sheet accounts may not have balances.

totalBalancestring nullable required

The combined balance of this account and all its sub-accounts, represented as a decimal string. For example, the totalBalance for XYZ Bank would be the total of the balances of all its sub-accounts (checking, savings, and so on). If XYZ Bank did not have any sub-accounts, totalBalance and balance would be the same.

cashFlowClassification'financing' | 'investing' | 'none' | 'not_applicable' | 'operating' nullable required

Indicates how this account is classified for cash flow reporting. If none, the account has not been classified. If not_applicable, the account does not qualify to be classified (e.g., a bank account tracking cash transactions is not part of a cash flow report).

Example response

{
  "id": "80000001-1234567890",
  "objectType": "qbd_account",
  "createdAt": "2025-01-01T12:34:56+00:00",
  "updatedAt": "2025-02-01T12:34:56+00:00",
  "revisionNumber": "1721172183",
  "name": "Accounts-Payable",
  "fullName": "Corporate:Accounts-Payable",
  "isActive": true,
  "parent": {
    "id": "80000001-1234567890",
    "fullName": "Corporate"
  },
  "sublevel": 1,
  "accountType": "bank",
  "specialAccountType": "undeposited_funds",
  "isTaxAccount": true,
  "accountNumber": "1010",
  "bankAccountNumber": "123456789",
  "description": "Accounts-payable are the amounts owed to suppliers for goods and services purchased on credit.",
  "balance": "1000.00",
  "totalBalance": "5000.00",
  "salesTaxCode": {
    "id": "80000001-1234567890",
    "fullName": "Non"
  },
  "taxLineDetails": {
    "taxLineId": 123,
    "taxLineName": "State Sales Tax"
  },
  "cashFlowClassification": "operating",
  "currency": {
    "id": "80000001-1234567890",
    "fullName": "USD"
  },
  "customFields": [
    {
      "ownerId": "0",
      "name": "Customer Rating",
      "type": "string_1024_type",
      "value": "Premium"
    }
  ]
}

Changes

Changed in 4 of the 46 revisions of this API.503185

    • the currencyId request property's maxLength was set to 36

      request-property-max-length-set

    • the parentId request property's maxLength was set to 36

      request-property-max-length-set

    • the salesTaxCodeId request property's maxLength was set to 36

      request-property-max-length-set

  • 10d4e9ebd1df1733See the full diff
    • response property accountNumber list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property balance list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property bankAccountNumber list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property cashFlowClassification list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property description list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property isTaxAccount list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property specialAccountType list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property totalBalance list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • the currency response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the parent response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the salesTaxCode response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • removed the required property currency/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property currency/id from the response with the 200 status

      response-required-property-removed

    • removed the required property parent/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property parent/id from the response with the 200 status

      response-required-property-removed

    • removed the required property salesTaxCode/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property salesTaxCode/id from the response with the 200 status

      response-required-property-removed

    • added qbd_tax_line_info subschema #2 to the taxLineDetails response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the currency response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the parent response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the salesTaxCode response property anyOf list for the response status 200

      response-property-any-of-added

    • removed the accounts_payable enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the accounts_receivable enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the condense_item_adjustment_expenses enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the cost_of_goods_sold enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the direct_deposit_liabilities enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the estimates enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the exchange_gain_loss enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the financing enum value from the cashFlowClassification response property for the response status 200

      response-property-enum-value-removed

    • removed the inventory_assets enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the investing enum value from the cashFlowClassification response property for the response status 200

      response-property-enum-value-removed

    • removed the item_receipt_account enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the none enum value from the cashFlowClassification response property for the response status 200

      response-property-enum-value-removed

    • removed the not_applicable enum value from the cashFlowClassification response property for the response status 200

      response-property-enum-value-removed

    • removed the opening_balance_equity enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the operating enum value from the cashFlowClassification response property for the response status 200

      response-property-enum-value-removed

    • removed the payroll_expenses enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the payroll_liabilities enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the petty_cash enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the purchase_orders enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the reconciliation_differences enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the retained_earnings enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the sales_orders enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the sales_tax_payable enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the uncategorized_expenses enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the uncategorized_income enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the cashFlowClassification response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the undeposited_funds enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed qbd_tax_line_info subschema #2 from the taxLineDetails response property oneOf list for the response status 200

      response-property-one-of-removed

  • 8e0b7df2044d152819See the full diff
    • the response property accountNumber became nullable for the status 200

      response-property-became-nullable

    • the response property balance became nullable for the status 200

      response-property-became-nullable

    • the response property bankAccountNumber became nullable for the status 200

      response-property-became-nullable

    • the response property cashFlowClassification became nullable for the status 200

      response-property-became-nullable

    • the response property currency became nullable for the status 200

      response-property-became-nullable

    • the response property description became nullable for the status 200

      response-property-became-nullable

    • the response property isTaxAccount became nullable for the status 200

      response-property-became-nullable

    • the response property parent became nullable for the status 200

      response-property-became-nullable

    • the response property salesTaxCode became nullable for the status 200

      response-property-became-nullable

    • the response property specialAccountType became nullable for the status 200

      response-property-became-nullable

    • the response property totalBalance became nullable for the status 200

      response-property-became-nullable

    • added qbd_tax_line_info subschema #2 to the taxLineDetails response property oneOf list for the response status 200

      response-property-one-of-added

    • the currency response's property type/format changed from / to object null/ for status 200

      response-property-type-changed

    • the parent response's property type/format changed from / to object null/ for status 200

      response-property-type-changed

    • the salesTaxCode response's property type/format changed from / to object null/ for status 200

      response-property-type-changed

    • added the new accounts_payable enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new accounts_receivable enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new condense_item_adjustment_expenses enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new cost_of_goods_sold enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new direct_deposit_liabilities enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new estimates enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new exchange_gain_loss enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new financing enum value to the cashFlowClassification response property for the response status 200

      response-property-enum-value-added

    • added the new inventory_assets enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new investing enum value to the cashFlowClassification response property for the response status 200

      response-property-enum-value-added

    • added the new item_receipt_account enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new none enum value to the cashFlowClassification response property for the response status 200

      response-property-enum-value-added

    • added the new not_applicable enum value to the cashFlowClassification response property for the response status 200

      response-property-enum-value-added

    • added the new opening_balance_equity enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new operating enum value to the cashFlowClassification response property for the response status 200

      response-property-enum-value-added

    • added the new payroll_expenses enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new payroll_liabilities enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new petty_cash enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new purchase_orders enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new reconciliation_differences enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new retained_earnings enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new sales_orders enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new sales_tax_payable enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new uncategorized_expenses enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new uncategorized_income enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new undefined enum value to the cashFlowClassification response property for the response status 200

      response-property-enum-value-added

    • added the new undefined enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • added the new undeposited_funds enum value to the specialAccountType response property for the response status 200

      response-property-enum-value-added

    • removed the pattern ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))$ from the request property openingBalanceDate

      request-property-pattern-removed

    • removed qbd_tax_line_info subschema #2 from the taxLineDetails response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 from the currency response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 from the parent response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 from the salesTaxCode response property anyOf list for the response status 200

      response-property-any-of-removed

    • response property accountNumber list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property balance list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property bankAccountNumber list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property cashFlowClassification list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property description list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property isTaxAccount list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property specialAccountType list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property totalBalance list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • added the required property currency/fullName to the response with the 200 status

      response-required-property-added

    • added the required property currency/id to the response with the 200 status

      response-required-property-added

    • added the required property parent/fullName to the response with the 200 status

      response-required-property-added

    • added the required property parent/id to the response with the 200 status

      response-required-property-added

    • added the required property salesTaxCode/fullName to the response with the 200 status

      response-required-property-added

    • added the required property salesTaxCode/id to the response with the 200 status

      response-required-property-added

  • 5f832f6956751833See the full diff
    • added the pattern ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))$ to the request property openingBalanceDate

      request-property-pattern-added

    • response property accountNumber list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property balance list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property bankAccountNumber list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property cashFlowClassification list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property description list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property isTaxAccount list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property specialAccountType list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property totalBalance list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • the currency response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the parent response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the salesTaxCode response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • removed the required property currency/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property currency/id from the response with the 200 status

      response-required-property-removed

    • removed the required property parent/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property parent/id from the response with the 200 status

      response-required-property-removed

    • removed the required property salesTaxCode/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property salesTaxCode/id from the response with the 200 status

      response-required-property-removed

    • added qbd_tax_line_info subschema #2 to the taxLineDetails response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the currency response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the parent response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the salesTaxCode response property anyOf list for the response status 200

      response-property-any-of-added

    • removed the accounts_payable enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the accounts_receivable enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the condense_item_adjustment_expenses enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the cost_of_goods_sold enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the direct_deposit_liabilities enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the estimates enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the exchange_gain_loss enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the financing enum value from the cashFlowClassification response property for the response status 200

      response-property-enum-value-removed

    • removed the inventory_assets enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the investing enum value from the cashFlowClassification response property for the response status 200

      response-property-enum-value-removed

    • removed the item_receipt_account enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the none enum value from the cashFlowClassification response property for the response status 200

      response-property-enum-value-removed

    • removed the not_applicable enum value from the cashFlowClassification response property for the response status 200

      response-property-enum-value-removed

    • removed the opening_balance_equity enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the operating enum value from the cashFlowClassification response property for the response status 200

      response-property-enum-value-removed

    • removed the payroll_expenses enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the payroll_liabilities enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the petty_cash enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the purchase_orders enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the reconciliation_differences enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the retained_earnings enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the sales_orders enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the sales_tax_payable enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the uncategorized_expenses enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the uncategorized_income enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the cashFlowClassification response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed the undeposited_funds enum value from the specialAccountType response property for the response status 200

      response-property-enum-value-removed

    • removed qbd_tax_line_info subschema #2 from the taxLineDetails response property oneOf list for the response status 200

      response-property-one-of-removed