{"id":28940714,"url":"https://github.com/rhdeck/node-quickbooks-promise","last_synced_at":"2025-10-13T23:03:48.490Z","repository":{"id":104234131,"uuid":"184578904","full_name":"rhdeck/node-quickbooks-promise","owner":"rhdeck","description":"Promisify Node-quickbooks interface for modern experience","archived":false,"fork":false,"pushed_at":"2019-05-16T15:14:12.000Z","size":33,"stargazers_count":2,"open_issues_count":1,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-28T00:47:04.539Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rhdeck.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-05-02T12:41:57.000Z","updated_at":"2025-05-24T06:16:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"afe41b72-c484-4329-b0e9-b3ddd95780a0","html_url":"https://github.com/rhdeck/node-quickbooks-promise","commit_stats":{"total_commits":15,"total_committers":1,"mean_commits":15.0,"dds":0.0,"last_synced_commit":"6171e7a7f86abef1526ef15b384fd946eaf96cca"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rhdeck/node-quickbooks-promise","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhdeck%2Fnode-quickbooks-promise","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhdeck%2Fnode-quickbooks-promise/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhdeck%2Fnode-quickbooks-promise/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhdeck%2Fnode-quickbooks-promise/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rhdeck","download_url":"https://codeload.github.com/rhdeck/node-quickbooks-promise/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rhdeck%2Fnode-quickbooks-promise/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261397158,"owners_count":23152479,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-23T02:01:08.615Z","updated_at":"2025-10-13T23:03:48.477Z","avatar_url":"https://github.com/rhdeck.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# node-quickbooks-promise\nOverlay of [`node-quickbooks`](https://github.com/mcohen01/node-quickbooks) that replaces callback API with promises\n## Example\n```js\nconst QuickBooks = require(\"node-quickbooks-promise\");\nconst qbo = new QuickBooks({/*credential object just as in node-quickbooks*/});\nconst accessToken = await qbo.refreshAccessToken();\nconst customers = await qbo.findCustomers({ Id: \"1234\" });\nconst customer = customer.QueryResponse.Customer[0]\nconsole.log(`Hi my customer's name is ${customer.Name}`)\n\n```\n\n# Installation\n```bash\nyarn add node-quickbooks-promise\n# or...\nnpm i s node-quickbooks-promise\n```\n# API\n\u003ca name=\"QuickBooks\"\u003e\u003c/a\u003e\n\n## QuickBooks\n**Kind**: global class  \n\n* [QuickBooks](#QuickBooks)\n    * [new QuickBooks()](#new_QuickBooks_new)\n    * [.revokeAccess](#QuickBooks+revokeAccess)\n    * [.getUserInfo](#QuickBooks+getUserInfo)\n    * [.batch](#QuickBooks+batch)\n    * [.changeDataCapture](#QuickBooks+changeDataCapture)\n    * [.upload](#QuickBooks+upload)\n    * [.createAccount](#QuickBooks+createAccount)\n    * [.createAttachable](#QuickBooks+createAttachable)\n    * [.createBill](#QuickBooks+createBill)\n    * [.createBillPayment](#QuickBooks+createBillPayment)\n    * [.createClass](#QuickBooks+createClass)\n    * [.createCreditMemo](#QuickBooks+createCreditMemo)\n    * [.createCustomer](#QuickBooks+createCustomer)\n    * [.createDepartment](#QuickBooks+createDepartment)\n    * [.createDeposit](#QuickBooks+createDeposit)\n    * [.createEmployee](#QuickBooks+createEmployee)\n    * [.createEstimate](#QuickBooks+createEstimate)\n    * [.createInvoice](#QuickBooks+createInvoice)\n    * [.createItem](#QuickBooks+createItem)\n    * [.createJournalCode](#QuickBooks+createJournalCode)\n    * [.createJournalEntry](#QuickBooks+createJournalEntry)\n    * [.createPayment](#QuickBooks+createPayment)\n    * [.createPaymentMethod](#QuickBooks+createPaymentMethod)\n    * [.createPurchase](#QuickBooks+createPurchase)\n    * [.createPurchaseOrder](#QuickBooks+createPurchaseOrder)\n    * [.createRefundReceipt](#QuickBooks+createRefundReceipt)\n    * [.createSalesReceipt](#QuickBooks+createSalesReceipt)\n    * [.createTaxAgency](#QuickBooks+createTaxAgency)\n    * [.createTaxService](#QuickBooks+createTaxService)\n    * [.createTerm](#QuickBooks+createTerm)\n    * [.createTimeActivity](#QuickBooks+createTimeActivity)\n    * [.createTransfer](#QuickBooks+createTransfer)\n    * [.createVendor](#QuickBooks+createVendor)\n    * [.createVendorCredit](#QuickBooks+createVendorCredit)\n    * [.getAccount](#QuickBooks+getAccount)\n    * [.getAttachable](#QuickBooks+getAttachable)\n    * [.getBill](#QuickBooks+getBill)\n    * [.getBillPayment](#QuickBooks+getBillPayment)\n    * [.getClass](#QuickBooks+getClass)\n    * [.getCompanyInfo](#QuickBooks+getCompanyInfo)\n    * [.getCreditMemo](#QuickBooks+getCreditMemo)\n    * [.getCustomer](#QuickBooks+getCustomer)\n    * [.getDepartment](#QuickBooks+getDepartment)\n    * [.getDeposit](#QuickBooks+getDeposit)\n    * [.getEmployee](#QuickBooks+getEmployee)\n    * [.getEstimate](#QuickBooks+getEstimate)\n    * [.getExchangeRate](#QuickBooks+getExchangeRate)\n    * [.getEstimatePdf](#QuickBooks+getEstimatePdf)\n    * [.sendEstimatePdf](#QuickBooks+sendEstimatePdf)\n    * [.getInvoice](#QuickBooks+getInvoice)\n    * [.getInvoicePdf](#QuickBooks+getInvoicePdf)\n    * [.sendInvoicePdf](#QuickBooks+sendInvoicePdf)\n    * [.getItem](#QuickBooks+getItem)\n    * [.getJournalCode](#QuickBooks+getJournalCode)\n    * [.getJournalEntry](#QuickBooks+getJournalEntry)\n    * [.getPayment](#QuickBooks+getPayment)\n    * [.getPaymentMethod](#QuickBooks+getPaymentMethod)\n    * [.getPreferences](#QuickBooks+getPreferences)\n    * [.getPurchase](#QuickBooks+getPurchase)\n    * [.getPurchaseOrder](#QuickBooks+getPurchaseOrder)\n    * [.getRefundReceipt](#QuickBooks+getRefundReceipt)\n    * [.getReports](#QuickBooks+getReports)\n    * [.getSalesReceipt](#QuickBooks+getSalesReceipt)\n    * [.getSalesReceiptPdf](#QuickBooks+getSalesReceiptPdf)\n    * [.sendSalesReceiptPdf](#QuickBooks+sendSalesReceiptPdf)\n    * [.getTaxAgency](#QuickBooks+getTaxAgency)\n    * [.getTaxCode](#QuickBooks+getTaxCode)\n    * [.getTaxRate](#QuickBooks+getTaxRate)\n    * [.getTerm](#QuickBooks+getTerm)\n    * [.getTimeActivity](#QuickBooks+getTimeActivity)\n    * [.getTransfer](#QuickBooks+getTransfer)\n    * [.getVendor](#QuickBooks+getVendor)\n    * [.getVendorCredit](#QuickBooks+getVendorCredit)\n    * [.updateAccount](#QuickBooks+updateAccount)\n    * [.updateAttachable](#QuickBooks+updateAttachable)\n    * [.updateBill](#QuickBooks+updateBill)\n    * [.updateBillPayment](#QuickBooks+updateBillPayment)\n    * [.updateClass](#QuickBooks+updateClass)\n    * [.updateCompanyInfo](#QuickBooks+updateCompanyInfo)\n    * [.updateCreditMemo](#QuickBooks+updateCreditMemo)\n    * [.updateCustomer](#QuickBooks+updateCustomer)\n    * [.updateDepartment](#QuickBooks+updateDepartment)\n    * [.updateDeposit](#QuickBooks+updateDeposit)\n    * [.updateEmployee](#QuickBooks+updateEmployee)\n    * [.updateEstimate](#QuickBooks+updateEstimate)\n    * [.updateInvoice](#QuickBooks+updateInvoice)\n    * [.updateItem](#QuickBooks+updateItem)\n    * [.updateJournalCode](#QuickBooks+updateJournalCode)\n    * [.updateJournalEntry](#QuickBooks+updateJournalEntry)\n    * [.updatePayment](#QuickBooks+updatePayment)\n    * [.updatePaymentMethod](#QuickBooks+updatePaymentMethod)\n    * [.updatePreferences](#QuickBooks+updatePreferences)\n    * [.updatePurchase](#QuickBooks+updatePurchase)\n    * [.updatePurchaseOrder](#QuickBooks+updatePurchaseOrder)\n    * [.updateRefundReceipt](#QuickBooks+updateRefundReceipt)\n    * [.updateSalesReceipt](#QuickBooks+updateSalesReceipt)\n    * [.updateTaxAgency](#QuickBooks+updateTaxAgency)\n    * [.updateTaxCode](#QuickBooks+updateTaxCode)\n    * [.updateTaxRate](#QuickBooks+updateTaxRate)\n    * [.updateTerm](#QuickBooks+updateTerm)\n    * [.updateTimeActivity](#QuickBooks+updateTimeActivity)\n    * [.updateTransfer](#QuickBooks+updateTransfer)\n    * [.updateVendor](#QuickBooks+updateVendor)\n    * [.updateVendorCredit](#QuickBooks+updateVendorCredit)\n    * [.updateExchangeRate](#QuickBooks+updateExchangeRate)\n    * [.deleteAttachable](#QuickBooks+deleteAttachable)\n    * [.deleteBill](#QuickBooks+deleteBill)\n    * [.deleteBillPayment](#QuickBooks+deleteBillPayment)\n    * [.deleteCreditMemo](#QuickBooks+deleteCreditMemo)\n    * [.deleteDeposit](#QuickBooks+deleteDeposit)\n    * [.deleteEstimate](#QuickBooks+deleteEstimate)\n    * [.deleteInvoice](#QuickBooks+deleteInvoice)\n    * [.deleteJournalCode](#QuickBooks+deleteJournalCode)\n    * [.deleteJournalEntry](#QuickBooks+deleteJournalEntry)\n    * [.deletePayment](#QuickBooks+deletePayment)\n    * [.deletePurchase](#QuickBooks+deletePurchase)\n    * [.deletePurchaseOrder](#QuickBooks+deletePurchaseOrder)\n    * [.deleteRefundReceipt](#QuickBooks+deleteRefundReceipt)\n    * [.deleteSalesReceipt](#QuickBooks+deleteSalesReceipt)\n    * [.deleteTimeActivity](#QuickBooks+deleteTimeActivity)\n    * [.deleteTransfer](#QuickBooks+deleteTransfer)\n    * [.deleteVendorCredit](#QuickBooks+deleteVendorCredit)\n    * [.voidInvoice](#QuickBooks+voidInvoice)\n    * [.voidPayment](#QuickBooks+voidPayment)\n    * [.findAccounts](#QuickBooks+findAccounts)\n    * [.findAttachables](#QuickBooks+findAttachables)\n    * [.findBills](#QuickBooks+findBills)\n    * [.findBillPayments](#QuickBooks+findBillPayments)\n    * [.findBudgets](#QuickBooks+findBudgets)\n    * [.findClasses](#QuickBooks+findClasses)\n    * [.findCompanyInfos](#QuickBooks+findCompanyInfos)\n    * [.findCreditMemos](#QuickBooks+findCreditMemos)\n    * [.findCustomers](#QuickBooks+findCustomers)\n    * [.findDepartments](#QuickBooks+findDepartments)\n    * [.findDeposits](#QuickBooks+findDeposits)\n    * [.findEmployees](#QuickBooks+findEmployees)\n    * [.findEstimates](#QuickBooks+findEstimates)\n    * [.findInvoices](#QuickBooks+findInvoices)\n    * [.findItems](#QuickBooks+findItems)\n    * [.findJournalCodes](#QuickBooks+findJournalCodes)\n    * [.findJournalEntries](#QuickBooks+findJournalEntries)\n    * [.findPayments](#QuickBooks+findPayments)\n    * [.findPaymentMethods](#QuickBooks+findPaymentMethods)\n    * [.findPreferenceses](#QuickBooks+findPreferenceses)\n    * [.findPurchases](#QuickBooks+findPurchases)\n    * [.findPurchaseOrders](#QuickBooks+findPurchaseOrders)\n    * [.findRefundReceipts](#QuickBooks+findRefundReceipts)\n    * [.findSalesReceipts](#QuickBooks+findSalesReceipts)\n    * [.findTaxAgencies](#QuickBooks+findTaxAgencies)\n    * [.findTaxCodes](#QuickBooks+findTaxCodes)\n    * [.findTaxRates](#QuickBooks+findTaxRates)\n    * [.findTerms](#QuickBooks+findTerms)\n    * [.findTimeActivities](#QuickBooks+findTimeActivities)\n    * [.findTransfers](#QuickBooks+findTransfers)\n    * [.findVendors](#QuickBooks+findVendors)\n    * [.findVendorCredits](#QuickBooks+findVendorCredits)\n    * [.findExchangeRates](#QuickBooks+findExchangeRates)\n    * [.reportBalanceSheet](#QuickBooks+reportBalanceSheet)\n    * [.reportProfitAndLoss](#QuickBooks+reportProfitAndLoss)\n    * [.reportProfitAndLossDetail](#QuickBooks+reportProfitAndLossDetail)\n    * [.reportTrialBalance](#QuickBooks+reportTrialBalance)\n    * [.reportCashFlow](#QuickBooks+reportCashFlow)\n    * [.reportInventoryValuationSummary](#QuickBooks+reportInventoryValuationSummary)\n    * [.reportCustomerSales](#QuickBooks+reportCustomerSales)\n    * [.reportItemSales](#QuickBooks+reportItemSales)\n    * [.reportCustomerIncome](#QuickBooks+reportCustomerIncome)\n    * [.reportCustomerBalance](#QuickBooks+reportCustomerBalance)\n    * [.reportCustomerBalanceDetail](#QuickBooks+reportCustomerBalanceDetail)\n    * [.reportAgedReceivables](#QuickBooks+reportAgedReceivables)\n    * [.reportAgedReceivableDetail](#QuickBooks+reportAgedReceivableDetail)\n    * [.reportVendorBalance](#QuickBooks+reportVendorBalance)\n    * [.reportVendorBalanceDetail](#QuickBooks+reportVendorBalanceDetail)\n    * [.reportAgedPayables](#QuickBooks+reportAgedPayables)\n    * [.reportAgedPayableDetail](#QuickBooks+reportAgedPayableDetail)\n    * [.reportVendorExpenses](#QuickBooks+reportVendorExpenses)\n    * [.reportTransactionList](#QuickBooks+reportTransactionList)\n    * [.reportGeneralLedgerDetail](#QuickBooks+reportGeneralLedgerDetail)\n    * [.reportTaxSummary](#QuickBooks+reportTaxSummary)\n    * [.reportDepartmentSales](#QuickBooks+reportDepartmentSales)\n    * [.reportClassSales](#QuickBooks+reportClassSales)\n    * [.reportAccountListDetail](#QuickBooks+reportAccountListDetail)\n\n\u003ca name=\"new_QuickBooks_new\"\u003e\u003c/a\u003e\n\n### new QuickBooks()\nQuickbooks integration class from node-quickbooks\n\n\u003ca name=\"QuickBooks+revokeAccess\"\u003e\u003c/a\u003e\n\n### quickBooks.revokeAccess\nUse either refresh token or access token to revoke access (OAuth2).\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Description |\n| --- | --- |\n| useRefresh | boolean - Indicates which token to use: true to use the refresh token, false to use the access token. |\n\n\u003ca name=\"QuickBooks+getUserInfo\"\u003e\u003c/a\u003e\n\n### quickBooks.getUserInfo\nGet user info (OAuth2).\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\u003ca name=\"QuickBooks+batch\"\u003e\u003c/a\u003e\n\n### quickBooks.batch\nBatch operation to enable an application to perform multiple operations in a single request.\nThe following batch items are supported:\n     create\n     update\n     delete\n     query\nThe maximum number of batch items in a single request is 25.\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| items | \u003ccode\u003eobject\u003c/code\u003e | JavaScript array of batch items |\n\n\u003ca name=\"QuickBooks+changeDataCapture\"\u003e\u003c/a\u003e\n\n### quickBooks.changeDataCapture\nThe change data capture (CDC) operation returns a list of entities that have changed since a specified time.\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| entities | \u003ccode\u003eobject\u003c/code\u003e | Comma separated list or JavaScript array of entities to search for changes |\n| since | \u003ccode\u003eobject\u003c/code\u003e | JavaScript Date or string representation of the form '2012-07-20T22:25:51-07:00' to look back for changes until |\n\n\u003ca name=\"QuickBooks+upload\"\u003e\u003c/a\u003e\n\n### quickBooks.upload\nUploads a file as an Attachable in QBO, optionally linking it to the specified\nQBO Entity.\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| filename | \u003ccode\u003estring\u003c/code\u003e | the name of the file |\n| contentType | \u003ccode\u003estring\u003c/code\u003e | the mime type of the file |\n| stream | \u003ccode\u003eobject\u003c/code\u003e | ReadableStream of file contents |\n| entityType | \u003ccode\u003eobject\u003c/code\u003e | optional string name of the QBO entity the Attachable will be linked to (e.g. Invoice) |\n| entityId | \u003ccode\u003eobject\u003c/code\u003e | optional Id of the QBO entity the Attachable will be linked to |\n\n\u003ca name=\"QuickBooks+createAccount\"\u003e\u003c/a\u003e\n\n### quickBooks.createAccount\nCreates the Account in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| account | \u003ccode\u003eobject\u003c/code\u003e | The unsaved account, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createAttachable\"\u003e\u003c/a\u003e\n\n### quickBooks.createAttachable\nCreates the Attachable in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| attachable | \u003ccode\u003eobject\u003c/code\u003e | The unsaved attachable, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createBill\"\u003e\u003c/a\u003e\n\n### quickBooks.createBill\nCreates the Bill in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| bill | \u003ccode\u003eobject\u003c/code\u003e | The unsaved bill, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createBillPayment\"\u003e\u003c/a\u003e\n\n### quickBooks.createBillPayment\nCreates the BillPayment in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| billPayment | \u003ccode\u003eobject\u003c/code\u003e | The unsaved billPayment, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createClass\"\u003e\u003c/a\u003e\n\n### quickBooks.createClass\nCreates the Class in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| class | \u003ccode\u003eobject\u003c/code\u003e | The unsaved class, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createCreditMemo\"\u003e\u003c/a\u003e\n\n### quickBooks.createCreditMemo\nCreates the CreditMemo in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| creditMemo | \u003ccode\u003eobject\u003c/code\u003e | The unsaved creditMemo, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createCustomer\"\u003e\u003c/a\u003e\n\n### quickBooks.createCustomer\nCreates the Customer in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| customer | \u003ccode\u003eobject\u003c/code\u003e | The unsaved customer, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createDepartment\"\u003e\u003c/a\u003e\n\n### quickBooks.createDepartment\nCreates the Department in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| department | \u003ccode\u003eobject\u003c/code\u003e | The unsaved department, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createDeposit\"\u003e\u003c/a\u003e\n\n### quickBooks.createDeposit\nCreates the Deposit in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| deposit | \u003ccode\u003eobject\u003c/code\u003e | The unsaved Deposit, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createEmployee\"\u003e\u003c/a\u003e\n\n### quickBooks.createEmployee\nCreates the Employee in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| employee | \u003ccode\u003eobject\u003c/code\u003e | The unsaved employee, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createEstimate\"\u003e\u003c/a\u003e\n\n### quickBooks.createEstimate\nCreates the Estimate in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| estimate | \u003ccode\u003eobject\u003c/code\u003e | The unsaved estimate, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createInvoice\"\u003e\u003c/a\u003e\n\n### quickBooks.createInvoice\nCreates the Invoice in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| invoice | \u003ccode\u003eobject\u003c/code\u003e | The unsaved invoice, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createItem\"\u003e\u003c/a\u003e\n\n### quickBooks.createItem\nCreates the Item in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| item | \u003ccode\u003eobject\u003c/code\u003e | The unsaved item, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createJournalCode\"\u003e\u003c/a\u003e\n\n### quickBooks.createJournalCode\nCreates the JournalCode in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| journalCode | \u003ccode\u003eobject\u003c/code\u003e | The unsaved journalCode, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createJournalEntry\"\u003e\u003c/a\u003e\n\n### quickBooks.createJournalEntry\nCreates the JournalEntry in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| journalEntry | \u003ccode\u003eobject\u003c/code\u003e | The unsaved journalEntry, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createPayment\"\u003e\u003c/a\u003e\n\n### quickBooks.createPayment\nCreates the Payment in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| payment | \u003ccode\u003eobject\u003c/code\u003e | The unsaved payment, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createPaymentMethod\"\u003e\u003c/a\u003e\n\n### quickBooks.createPaymentMethod\nCreates the PaymentMethod in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| paymentMethod | \u003ccode\u003eobject\u003c/code\u003e | The unsaved paymentMethod, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createPurchase\"\u003e\u003c/a\u003e\n\n### quickBooks.createPurchase\nCreates the Purchase in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| purchase | \u003ccode\u003eobject\u003c/code\u003e | The unsaved purchase, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createPurchaseOrder\"\u003e\u003c/a\u003e\n\n### quickBooks.createPurchaseOrder\nCreates the PurchaseOrder in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| purchaseOrder | \u003ccode\u003eobject\u003c/code\u003e | The unsaved purchaseOrder, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createRefundReceipt\"\u003e\u003c/a\u003e\n\n### quickBooks.createRefundReceipt\nCreates the RefundReceipt in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| refundReceipt | \u003ccode\u003eobject\u003c/code\u003e | The unsaved refundReceipt, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createSalesReceipt\"\u003e\u003c/a\u003e\n\n### quickBooks.createSalesReceipt\nCreates the SalesReceipt in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| salesReceipt | \u003ccode\u003eobject\u003c/code\u003e | The unsaved salesReceipt, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createTaxAgency\"\u003e\u003c/a\u003e\n\n### quickBooks.createTaxAgency\nCreates the TaxAgency in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| taxAgency | \u003ccode\u003eobject\u003c/code\u003e | The unsaved taxAgency, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createTaxService\"\u003e\u003c/a\u003e\n\n### quickBooks.createTaxService\nCreates the TaxService in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| taxService | \u003ccode\u003eobject\u003c/code\u003e | The unsaved taxService, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createTerm\"\u003e\u003c/a\u003e\n\n### quickBooks.createTerm\nCreates the Term in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| term | \u003ccode\u003eobject\u003c/code\u003e | The unsaved term, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createTimeActivity\"\u003e\u003c/a\u003e\n\n### quickBooks.createTimeActivity\nCreates the TimeActivity in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| timeActivity | \u003ccode\u003eobject\u003c/code\u003e | The unsaved timeActivity, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createTransfer\"\u003e\u003c/a\u003e\n\n### quickBooks.createTransfer\nCreates the Transfer in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| transfer | \u003ccode\u003eobject\u003c/code\u003e | The unsaved Transfer, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createVendor\"\u003e\u003c/a\u003e\n\n### quickBooks.createVendor\nCreates the Vendor in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| vendor | \u003ccode\u003eobject\u003c/code\u003e | The unsaved vendor, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+createVendorCredit\"\u003e\u003c/a\u003e\n\n### quickBooks.createVendorCredit\nCreates the VendorCredit in QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| vendorCredit | \u003ccode\u003eobject\u003c/code\u003e | The unsaved vendorCredit, to be persisted in QuickBooks |\n\n\u003ca name=\"QuickBooks+getAccount\"\u003e\u003c/a\u003e\n\n### quickBooks.getAccount\nRetrieves the Account from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Account |\n\n\u003ca name=\"QuickBooks+getAttachable\"\u003e\u003c/a\u003e\n\n### quickBooks.getAttachable\nRetrieves the Attachable from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Attachable |\n\n\u003ca name=\"QuickBooks+getBill\"\u003e\u003c/a\u003e\n\n### quickBooks.getBill\nRetrieves the Bill from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Bill |\n\n\u003ca name=\"QuickBooks+getBillPayment\"\u003e\u003c/a\u003e\n\n### quickBooks.getBillPayment\nRetrieves the BillPayment from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent BillPayment |\n\n\u003ca name=\"QuickBooks+getClass\"\u003e\u003c/a\u003e\n\n### quickBooks.getClass\nRetrieves the Class from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Class |\n\n\u003ca name=\"QuickBooks+getCompanyInfo\"\u003e\u003c/a\u003e\n\n### quickBooks.getCompanyInfo\nRetrieves the CompanyInfo from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent CompanyInfo |\n\n\u003ca name=\"QuickBooks+getCreditMemo\"\u003e\u003c/a\u003e\n\n### quickBooks.getCreditMemo\nRetrieves the CreditMemo from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent CreditMemo |\n\n\u003ca name=\"QuickBooks+getCustomer\"\u003e\u003c/a\u003e\n\n### quickBooks.getCustomer\nRetrieves the Customer from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Customer |\n\n\u003ca name=\"QuickBooks+getDepartment\"\u003e\u003c/a\u003e\n\n### quickBooks.getDepartment\nRetrieves the Department from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Department |\n\n\u003ca name=\"QuickBooks+getDeposit\"\u003e\u003c/a\u003e\n\n### quickBooks.getDeposit\nRetrieves the Deposit from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Deposit |\n\n\u003ca name=\"QuickBooks+getEmployee\"\u003e\u003c/a\u003e\n\n### quickBooks.getEmployee\nRetrieves the Employee from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Employee |\n\n\u003ca name=\"QuickBooks+getEstimate\"\u003e\u003c/a\u003e\n\n### quickBooks.getEstimate\nRetrieves the Estimate from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Estimate |\n\n\u003ca name=\"QuickBooks+getExchangeRate\"\u003e\u003c/a\u003e\n\n### quickBooks.getExchangeRate\nRetrieves an ExchangeRate from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | An object with options including the required `sourcecurrencycode` parameter and optional `asofdate` parameter. |\n\n\u003ca name=\"QuickBooks+getEstimatePdf\"\u003e\u003c/a\u003e\n\n### quickBooks.getEstimatePdf\nRetrieves the Estimate PDF from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Estimate |\n\n\u003ca name=\"QuickBooks+sendEstimatePdf\"\u003e\u003c/a\u003e\n\n### quickBooks.sendEstimatePdf\nEmails the Estimate PDF from QuickBooks to the address supplied in Estimate.BillEmail.EmailAddress\nor the specified 'sendTo' address\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Estimate |\n| sendTo | \u003ccode\u003estring\u003c/code\u003e | optional email address to send the PDF to. If not provided, address supplied in Estimate.BillEmail.EmailAddress will be used |\n\n\u003ca name=\"QuickBooks+getInvoice\"\u003e\u003c/a\u003e\n\n### quickBooks.getInvoice\nRetrieves the Invoice from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Invoice |\n\n\u003ca name=\"QuickBooks+getInvoicePdf\"\u003e\u003c/a\u003e\n\n### quickBooks.getInvoicePdf\nRetrieves the Invoice PDF from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Invoice |\n\n\u003ca name=\"QuickBooks+sendInvoicePdf\"\u003e\u003c/a\u003e\n\n### quickBooks.sendInvoicePdf\nEmails the Invoice PDF from QuickBooks to the address supplied in Invoice.BillEmail.EmailAddress\nor the specified 'sendTo' address\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Invoice |\n| sendTo | \u003ccode\u003estring\u003c/code\u003e | optional email address to send the PDF to. If not provided, address supplied in Invoice.BillEmail.EmailAddress will be used |\n\n\u003ca name=\"QuickBooks+getItem\"\u003e\u003c/a\u003e\n\n### quickBooks.getItem\nRetrieves the Item from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Item |\n\n\u003ca name=\"QuickBooks+getJournalCode\"\u003e\u003c/a\u003e\n\n### quickBooks.getJournalCode\nRetrieves the JournalCode from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent JournalCode |\n\n\u003ca name=\"QuickBooks+getJournalEntry\"\u003e\u003c/a\u003e\n\n### quickBooks.getJournalEntry\nRetrieves the JournalEntry from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent JournalEntry |\n\n\u003ca name=\"QuickBooks+getPayment\"\u003e\u003c/a\u003e\n\n### quickBooks.getPayment\nRetrieves the Payment from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Payment |\n\n\u003ca name=\"QuickBooks+getPaymentMethod\"\u003e\u003c/a\u003e\n\n### quickBooks.getPaymentMethod\nRetrieves the PaymentMethod from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent PaymentMethod |\n\n\u003ca name=\"QuickBooks+getPreferences\"\u003e\u003c/a\u003e\n\n### quickBooks.getPreferences\nRetrieves the Preferences from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\u003ca name=\"QuickBooks+getPurchase\"\u003e\u003c/a\u003e\n\n### quickBooks.getPurchase\nRetrieves the Purchase from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Purchase |\n\n\u003ca name=\"QuickBooks+getPurchaseOrder\"\u003e\u003c/a\u003e\n\n### quickBooks.getPurchaseOrder\nRetrieves the PurchaseOrder from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent PurchaseOrder |\n\n\u003ca name=\"QuickBooks+getRefundReceipt\"\u003e\u003c/a\u003e\n\n### quickBooks.getRefundReceipt\nRetrieves the RefundReceipt from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent RefundReceipt |\n\n\u003ca name=\"QuickBooks+getReports\"\u003e\u003c/a\u003e\n\n### quickBooks.getReports\nRetrieves the Reports from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Reports |\n\n\u003ca name=\"QuickBooks+getSalesReceipt\"\u003e\u003c/a\u003e\n\n### quickBooks.getSalesReceipt\nRetrieves the SalesReceipt from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent SalesReceipt |\n\n\u003ca name=\"QuickBooks+getSalesReceiptPdf\"\u003e\u003c/a\u003e\n\n### quickBooks.getSalesReceiptPdf\nRetrieves the SalesReceipt PDF from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent SalesReceipt |\n\n\u003ca name=\"QuickBooks+sendSalesReceiptPdf\"\u003e\u003c/a\u003e\n\n### quickBooks.sendSalesReceiptPdf\nEmails the SalesReceipt PDF from QuickBooks to the address supplied in SalesReceipt.BillEmail.EmailAddress\nor the specified 'sendTo' address\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent SalesReceipt |\n| sendTo | \u003ccode\u003estring\u003c/code\u003e | optional email address to send the PDF to. If not provided, address supplied in SalesReceipt.BillEmail.EmailAddress will be used |\n\n\u003ca name=\"QuickBooks+getTaxAgency\"\u003e\u003c/a\u003e\n\n### quickBooks.getTaxAgency\nRetrieves the TaxAgency from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent TaxAgency |\n\n\u003ca name=\"QuickBooks+getTaxCode\"\u003e\u003c/a\u003e\n\n### quickBooks.getTaxCode\nRetrieves the TaxCode from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent TaxCode |\n\n\u003ca name=\"QuickBooks+getTaxRate\"\u003e\u003c/a\u003e\n\n### quickBooks.getTaxRate\nRetrieves the TaxRate from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent TaxRate |\n\n\u003ca name=\"QuickBooks+getTerm\"\u003e\u003c/a\u003e\n\n### quickBooks.getTerm\nRetrieves the Term from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Term |\n\n\u003ca name=\"QuickBooks+getTimeActivity\"\u003e\u003c/a\u003e\n\n### quickBooks.getTimeActivity\nRetrieves the TimeActivity from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent TimeActivity |\n\n\u003ca name=\"QuickBooks+getTransfer\"\u003e\u003c/a\u003e\n\n### quickBooks.getTransfer\nRetrieves the Transfer from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Term |\n\n\u003ca name=\"QuickBooks+getVendor\"\u003e\u003c/a\u003e\n\n### quickBooks.getVendor\nRetrieves the Vendor from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent Vendor |\n\n\u003ca name=\"QuickBooks+getVendorCredit\"\u003e\u003c/a\u003e\n\n### quickBooks.getVendorCredit\nRetrieves the VendorCredit from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Id | \u003ccode\u003estring\u003c/code\u003e | The Id of persistent VendorCredit |\n\n\u003ca name=\"QuickBooks+updateAccount\"\u003e\u003c/a\u003e\n\n### quickBooks.updateAccount\nUpdates QuickBooks version of Account\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| account | \u003ccode\u003eobject\u003c/code\u003e | The persistent Account, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateAttachable\"\u003e\u003c/a\u003e\n\n### quickBooks.updateAttachable\nUpdates QuickBooks version of Attachable\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| attachable | \u003ccode\u003eobject\u003c/code\u003e | The persistent Attachable, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateBill\"\u003e\u003c/a\u003e\n\n### quickBooks.updateBill\nUpdates QuickBooks version of Bill\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| bill | \u003ccode\u003eobject\u003c/code\u003e | The persistent Bill, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateBillPayment\"\u003e\u003c/a\u003e\n\n### quickBooks.updateBillPayment\nUpdates QuickBooks version of BillPayment\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| billPayment | \u003ccode\u003eobject\u003c/code\u003e | The persistent BillPayment, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateClass\"\u003e\u003c/a\u003e\n\n### quickBooks.updateClass\nUpdates QuickBooks version of Class\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| class | \u003ccode\u003eobject\u003c/code\u003e | The persistent Class, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateCompanyInfo\"\u003e\u003c/a\u003e\n\n### quickBooks.updateCompanyInfo\nUpdates QuickBooks version of CompanyInfo\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| companyInfo | \u003ccode\u003eobject\u003c/code\u003e | The persistent CompanyInfo, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateCreditMemo\"\u003e\u003c/a\u003e\n\n### quickBooks.updateCreditMemo\nUpdates QuickBooks version of CreditMemo\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| creditMemo | \u003ccode\u003eobject\u003c/code\u003e | The persistent CreditMemo, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateCustomer\"\u003e\u003c/a\u003e\n\n### quickBooks.updateCustomer\nUpdates QuickBooks version of Customer\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| customer | \u003ccode\u003eobject\u003c/code\u003e | The persistent Customer, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateDepartment\"\u003e\u003c/a\u003e\n\n### quickBooks.updateDepartment\nUpdates QuickBooks version of Department\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| department | \u003ccode\u003eobject\u003c/code\u003e | The persistent Department, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateDeposit\"\u003e\u003c/a\u003e\n\n### quickBooks.updateDeposit\nUpdates QuickBooks version of Deposit\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| deposit | \u003ccode\u003eobject\u003c/code\u003e | The persistent Deposit, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateEmployee\"\u003e\u003c/a\u003e\n\n### quickBooks.updateEmployee\nUpdates QuickBooks version of Employee\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| employee | \u003ccode\u003eobject\u003c/code\u003e | The persistent Employee, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateEstimate\"\u003e\u003c/a\u003e\n\n### quickBooks.updateEstimate\nUpdates QuickBooks version of Estimate\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| estimate | \u003ccode\u003eobject\u003c/code\u003e | The persistent Estimate, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateInvoice\"\u003e\u003c/a\u003e\n\n### quickBooks.updateInvoice\nUpdates QuickBooks version of Invoice\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| invoice | \u003ccode\u003eobject\u003c/code\u003e | The persistent Invoice, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateItem\"\u003e\u003c/a\u003e\n\n### quickBooks.updateItem\nUpdates QuickBooks version of Item\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| item | \u003ccode\u003eobject\u003c/code\u003e | The persistent Item, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateJournalCode\"\u003e\u003c/a\u003e\n\n### quickBooks.updateJournalCode\nUpdates QuickBooks version of JournalCode\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| journalCode | \u003ccode\u003eobject\u003c/code\u003e | The persistent JournalCode, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateJournalEntry\"\u003e\u003c/a\u003e\n\n### quickBooks.updateJournalEntry\nUpdates QuickBooks version of JournalEntry\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| journalEntry | \u003ccode\u003eobject\u003c/code\u003e | The persistent JournalEntry, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updatePayment\"\u003e\u003c/a\u003e\n\n### quickBooks.updatePayment\nUpdates QuickBooks version of Payment\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| payment | \u003ccode\u003eobject\u003c/code\u003e | The persistent Payment, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updatePaymentMethod\"\u003e\u003c/a\u003e\n\n### quickBooks.updatePaymentMethod\nUpdates QuickBooks version of PaymentMethod\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| paymentMethod | \u003ccode\u003eobject\u003c/code\u003e | The persistent PaymentMethod, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updatePreferences\"\u003e\u003c/a\u003e\n\n### quickBooks.updatePreferences\nUpdates QuickBooks version of Preferences\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| preferences | \u003ccode\u003eobject\u003c/code\u003e | The persistent Preferences, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updatePurchase\"\u003e\u003c/a\u003e\n\n### quickBooks.updatePurchase\nUpdates QuickBooks version of Purchase\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| purchase | \u003ccode\u003eobject\u003c/code\u003e | The persistent Purchase, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updatePurchaseOrder\"\u003e\u003c/a\u003e\n\n### quickBooks.updatePurchaseOrder\nUpdates QuickBooks version of PurchaseOrder\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| purchaseOrder | \u003ccode\u003eobject\u003c/code\u003e | The persistent PurchaseOrder, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateRefundReceipt\"\u003e\u003c/a\u003e\n\n### quickBooks.updateRefundReceipt\nUpdates QuickBooks version of RefundReceipt\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| refundReceipt | \u003ccode\u003eobject\u003c/code\u003e | The persistent RefundReceipt, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateSalesReceipt\"\u003e\u003c/a\u003e\n\n### quickBooks.updateSalesReceipt\nUpdates QuickBooks version of SalesReceipt\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| salesReceipt | \u003ccode\u003eobject\u003c/code\u003e | The persistent SalesReceipt, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateTaxAgency\"\u003e\u003c/a\u003e\n\n### quickBooks.updateTaxAgency\nUpdates QuickBooks version of TaxAgency\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| taxAgency | \u003ccode\u003eobject\u003c/code\u003e | The persistent TaxAgency, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateTaxCode\"\u003e\u003c/a\u003e\n\n### quickBooks.updateTaxCode\nUpdates QuickBooks version of TaxCode\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| taxCode | \u003ccode\u003eobject\u003c/code\u003e | The persistent TaxCode, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateTaxRate\"\u003e\u003c/a\u003e\n\n### quickBooks.updateTaxRate\nUpdates QuickBooks version of TaxRate\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| taxRate | \u003ccode\u003eobject\u003c/code\u003e | The persistent TaxRate, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateTerm\"\u003e\u003c/a\u003e\n\n### quickBooks.updateTerm\nUpdates QuickBooks version of Term\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| term | \u003ccode\u003eobject\u003c/code\u003e | The persistent Term, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateTimeActivity\"\u003e\u003c/a\u003e\n\n### quickBooks.updateTimeActivity\nUpdates QuickBooks version of TimeActivity\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| timeActivity | \u003ccode\u003eobject\u003c/code\u003e | The persistent TimeActivity, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateTransfer\"\u003e\u003c/a\u003e\n\n### quickBooks.updateTransfer\nUpdates QuickBooks version of Transfer\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| Transfer | \u003ccode\u003eobject\u003c/code\u003e | The persistent Transfer, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateVendor\"\u003e\u003c/a\u003e\n\n### quickBooks.updateVendor\nUpdates QuickBooks version of Vendor\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| vendor | \u003ccode\u003eobject\u003c/code\u003e | The persistent Vendor, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateVendorCredit\"\u003e\u003c/a\u003e\n\n### quickBooks.updateVendorCredit\nUpdates QuickBooks version of VendorCredit\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| vendorCredit | \u003ccode\u003eobject\u003c/code\u003e | The persistent VendorCredit, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+updateExchangeRate\"\u003e\u003c/a\u003e\n\n### quickBooks.updateExchangeRate\nUpdates QuickBooks version of ExchangeRate\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| exchangeRate | \u003ccode\u003eobject\u003c/code\u003e | The persistent ExchangeRate, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+deleteAttachable\"\u003e\u003c/a\u003e\n\n### quickBooks.deleteAttachable\nDeletes the Attachable from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| idOrEntity | \u003ccode\u003eobject\u003c/code\u003e | The persistent Attachable to be deleted, or the Id of the Attachable, in which case an extra GET request will be issued to first retrieve the Attachable |\n\n\u003ca name=\"QuickBooks+deleteBill\"\u003e\u003c/a\u003e\n\n### quickBooks.deleteBill\nDeletes the Bill from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| idOrEntity | \u003ccode\u003eobject\u003c/code\u003e | The persistent Bill to be deleted, or the Id of the Bill, in which case an extra GET request will be issued to first retrieve the Bill |\n\n\u003ca name=\"QuickBooks+deleteBillPayment\"\u003e\u003c/a\u003e\n\n### quickBooks.deleteBillPayment\nDeletes the BillPayment from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| idOrEntity | \u003ccode\u003eobject\u003c/code\u003e | The persistent BillPayment to be deleted, or the Id of the BillPayment, in which case an extra GET request will be issued to first retrieve the BillPayment |\n\n\u003ca name=\"QuickBooks+deleteCreditMemo\"\u003e\u003c/a\u003e\n\n### quickBooks.deleteCreditMemo\nDeletes the CreditMemo from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| idOrEntity | \u003ccode\u003eobject\u003c/code\u003e | The persistent CreditMemo to be deleted, or the Id of the CreditMemo, in which case an extra GET request will be issued to first retrieve the CreditMemo |\n\n\u003ca name=\"QuickBooks+deleteDeposit\"\u003e\u003c/a\u003e\n\n### quickBooks.deleteDeposit\nDeletes the Deposit from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| idOrEntity | \u003ccode\u003eobject\u003c/code\u003e | The persistent Deposit to be deleted, or the Id of the Deposit, in which case an extra GET request will be issued to first retrieve the Deposit |\n\n\u003ca name=\"QuickBooks+deleteEstimate\"\u003e\u003c/a\u003e\n\n### quickBooks.deleteEstimate\nDeletes the Estimate from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| idOrEntity | \u003ccode\u003eobject\u003c/code\u003e | The persistent Estimate to be deleted, or the Id of the Estimate, in which case an extra GET request will be issued to first retrieve the Estimate |\n\n\u003ca name=\"QuickBooks+deleteInvoice\"\u003e\u003c/a\u003e\n\n### quickBooks.deleteInvoice\nDeletes the Invoice from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| idOrEntity | \u003ccode\u003eobject\u003c/code\u003e | The persistent Invoice to be deleted, or the Id of the Invoice, in which case an extra GET request will be issued to first retrieve the Invoice |\n\n\u003ca name=\"QuickBooks+deleteJournalCode\"\u003e\u003c/a\u003e\n\n### quickBooks.deleteJournalCode\nDeletes the JournalCode from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| idOrEntity | \u003ccode\u003eobject\u003c/code\u003e | The persistent JournalCode to be deleted, or the Id of the JournalCode, in which case an extra GET request will be issued to first retrieve the JournalCode |\n\n\u003ca name=\"QuickBooks+deleteJournalEntry\"\u003e\u003c/a\u003e\n\n### quickBooks.deleteJournalEntry\nDeletes the JournalEntry from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| idOrEntity | \u003ccode\u003eobject\u003c/code\u003e | The persistent JournalEntry to be deleted, or the Id of the JournalEntry, in which case an extra GET request will be issued to first retrieve the JournalEntry |\n\n\u003ca name=\"QuickBooks+deletePayment\"\u003e\u003c/a\u003e\n\n### quickBooks.deletePayment\nDeletes the Payment from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| idOrEntity | \u003ccode\u003eobject\u003c/code\u003e | The persistent Payment to be deleted, or the Id of the Payment, in which case an extra GET request will be issued to first retrieve the Payment |\n\n\u003ca name=\"QuickBooks+deletePurchase\"\u003e\u003c/a\u003e\n\n### quickBooks.deletePurchase\nDeletes the Purchase from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| idOrEntity | \u003ccode\u003eobject\u003c/code\u003e | The persistent Purchase to be deleted, or the Id of the Purchase, in which case an extra GET request will be issued to first retrieve the Purchase |\n\n\u003ca name=\"QuickBooks+deletePurchaseOrder\"\u003e\u003c/a\u003e\n\n### quickBooks.deletePurchaseOrder\nDeletes the PurchaseOrder from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| idOrEntity | \u003ccode\u003eobject\u003c/code\u003e | The persistent PurchaseOrder to be deleted, or the Id of the PurchaseOrder, in which case an extra GET request will be issued to first retrieve the PurchaseOrder |\n\n\u003ca name=\"QuickBooks+deleteRefundReceipt\"\u003e\u003c/a\u003e\n\n### quickBooks.deleteRefundReceipt\nDeletes the RefundReceipt from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| idOrEntity | \u003ccode\u003eobject\u003c/code\u003e | The persistent RefundReceipt to be deleted, or the Id of the RefundReceipt, in which case an extra GET request will be issued to first retrieve the RefundReceipt |\n\n\u003ca name=\"QuickBooks+deleteSalesReceipt\"\u003e\u003c/a\u003e\n\n### quickBooks.deleteSalesReceipt\nDeletes the SalesReceipt from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| idOrEntity | \u003ccode\u003eobject\u003c/code\u003e | The persistent SalesReceipt to be deleted, or the Id of the SalesReceipt, in which case an extra GET request will be issued to first retrieve the SalesReceipt |\n\n\u003ca name=\"QuickBooks+deleteTimeActivity\"\u003e\u003c/a\u003e\n\n### quickBooks.deleteTimeActivity\nDeletes the TimeActivity from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| idOrEntity | \u003ccode\u003eobject\u003c/code\u003e | The persistent TimeActivity to be deleted, or the Id of the TimeActivity, in which case an extra GET request will be issued to first retrieve the TimeActivity |\n\n\u003ca name=\"QuickBooks+deleteTransfer\"\u003e\u003c/a\u003e\n\n### quickBooks.deleteTransfer\nDeletes the Transfer from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| idOrEntity | \u003ccode\u003eobject\u003c/code\u003e | The persistent Transfer to be deleted, or the Id of the Transfer, in which case an extra GET request will be issued to first retrieve the Transfer |\n\n\u003ca name=\"QuickBooks+deleteVendorCredit\"\u003e\u003c/a\u003e\n\n### quickBooks.deleteVendorCredit\nDeletes the VendorCredit from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| idOrEntity | \u003ccode\u003eobject\u003c/code\u003e | The persistent VendorCredit to be deleted, or the Id of the VendorCredit, in which case an extra GET request will be issued to first retrieve the VendorCredit |\n\n\u003ca name=\"QuickBooks+voidInvoice\"\u003e\u003c/a\u003e\n\n### quickBooks.voidInvoice\nVoids the Invoice from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| idOrEntity | \u003ccode\u003eobject\u003c/code\u003e | The persistent Invoice to be voided, or the Id of the Invoice, in which case an extra GET request will be issued to first retrieve the Invoice |\n\n\u003ca name=\"QuickBooks+voidPayment\"\u003e\u003c/a\u003e\n\n### quickBooks.voidPayment\nVoids QuickBooks version of Payment\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| payment | \u003ccode\u003eobject\u003c/code\u003e | The persistent Payment, including Id and SyncToken fields |\n\n\u003ca name=\"QuickBooks+findAccounts\"\u003e\u003c/a\u003e\n\n### quickBooks.findAccounts\nFinds all Accounts in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findAttachables\"\u003e\u003c/a\u003e\n\n### quickBooks.findAttachables\nFinds all Attachables in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findBills\"\u003e\u003c/a\u003e\n\n### quickBooks.findBills\nFinds all Bills in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findBillPayments\"\u003e\u003c/a\u003e\n\n### quickBooks.findBillPayments\nFinds all BillPayments in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findBudgets\"\u003e\u003c/a\u003e\n\n### quickBooks.findBudgets\nFinds all Budgets in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findClasses\"\u003e\u003c/a\u003e\n\n### quickBooks.findClasses\nFinds all Classs in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findCompanyInfos\"\u003e\u003c/a\u003e\n\n### quickBooks.findCompanyInfos\nFinds all CompanyInfos in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findCreditMemos\"\u003e\u003c/a\u003e\n\n### quickBooks.findCreditMemos\nFinds all CreditMemos in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findCustomers\"\u003e\u003c/a\u003e\n\n### quickBooks.findCustomers\nFinds all Customers in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findDepartments\"\u003e\u003c/a\u003e\n\n### quickBooks.findDepartments\nFinds all Departments in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findDeposits\"\u003e\u003c/a\u003e\n\n### quickBooks.findDeposits\nFinds all Deposits in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findEmployees\"\u003e\u003c/a\u003e\n\n### quickBooks.findEmployees\nFinds all Employees in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findEstimates\"\u003e\u003c/a\u003e\n\n### quickBooks.findEstimates\nFinds all Estimates in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findInvoices\"\u003e\u003c/a\u003e\n\n### quickBooks.findInvoices\nFinds all Invoices in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findItems\"\u003e\u003c/a\u003e\n\n### quickBooks.findItems\nFinds all Items in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findJournalCodes\"\u003e\u003c/a\u003e\n\n### quickBooks.findJournalCodes\nFinds all JournalCodes in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findJournalEntries\"\u003e\u003c/a\u003e\n\n### quickBooks.findJournalEntries\nFinds all JournalEntrys in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findPayments\"\u003e\u003c/a\u003e\n\n### quickBooks.findPayments\nFinds all Payments in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findPaymentMethods\"\u003e\u003c/a\u003e\n\n### quickBooks.findPaymentMethods\nFinds all PaymentMethods in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findPreferenceses\"\u003e\u003c/a\u003e\n\n### quickBooks.findPreferenceses\nFinds all Preferencess in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findPurchases\"\u003e\u003c/a\u003e\n\n### quickBooks.findPurchases\nFinds all Purchases in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findPurchaseOrders\"\u003e\u003c/a\u003e\n\n### quickBooks.findPurchaseOrders\nFinds all PurchaseOrders in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findRefundReceipts\"\u003e\u003c/a\u003e\n\n### quickBooks.findRefundReceipts\nFinds all RefundReceipts in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findSalesReceipts\"\u003e\u003c/a\u003e\n\n### quickBooks.findSalesReceipts\nFinds all SalesReceipts in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findTaxAgencies\"\u003e\u003c/a\u003e\n\n### quickBooks.findTaxAgencies\nFinds all TaxAgencys in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findTaxCodes\"\u003e\u003c/a\u003e\n\n### quickBooks.findTaxCodes\nFinds all TaxCodes in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findTaxRates\"\u003e\u003c/a\u003e\n\n### quickBooks.findTaxRates\nFinds all TaxRates in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findTerms\"\u003e\u003c/a\u003e\n\n### quickBooks.findTerms\nFinds all Terms in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findTimeActivities\"\u003e\u003c/a\u003e\n\n### quickBooks.findTimeActivities\nFinds all TimeActivitys in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findTransfers\"\u003e\u003c/a\u003e\n\n### quickBooks.findTransfers\nFinds all Transfers in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findVendors\"\u003e\u003c/a\u003e\n\n### quickBooks.findVendors\nFinds all Vendors in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findVendorCredits\"\u003e\u003c/a\u003e\n\n### quickBooks.findVendorCredits\nFinds all VendorCredits in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+findExchangeRates\"\u003e\u003c/a\u003e\n\n### quickBooks.findExchangeRates\nFinds all ExchangeRates in QuickBooks, optionally matching the specified criteria\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| criteria | \u003ccode\u003eobject\u003c/code\u003e | (Optional) String or single-valued map converted to a where clause of the form \"where key = 'value'\" |\n\n\u003ca name=\"QuickBooks+reportBalanceSheet\"\u003e\u003c/a\u003e\n\n### quickBooks.reportBalanceSheet\nRetrieves the BalanceSheet Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportProfitAndLoss\"\u003e\u003c/a\u003e\n\n### quickBooks.reportProfitAndLoss\nRetrieves the ProfitAndLoss Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportProfitAndLossDetail\"\u003e\u003c/a\u003e\n\n### quickBooks.reportProfitAndLossDetail\nRetrieves the ProfitAndLossDetail Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportTrialBalance\"\u003e\u003c/a\u003e\n\n### quickBooks.reportTrialBalance\nRetrieves the TrialBalance Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportCashFlow\"\u003e\u003c/a\u003e\n\n### quickBooks.reportCashFlow\nRetrieves the CashFlow Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportInventoryValuationSummary\"\u003e\u003c/a\u003e\n\n### quickBooks.reportInventoryValuationSummary\nRetrieves the InventoryValuationSummary Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportCustomerSales\"\u003e\u003c/a\u003e\n\n### quickBooks.reportCustomerSales\nRetrieves the CustomerSales Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportItemSales\"\u003e\u003c/a\u003e\n\n### quickBooks.reportItemSales\nRetrieves the ItemSales Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportCustomerIncome\"\u003e\u003c/a\u003e\n\n### quickBooks.reportCustomerIncome\nRetrieves the CustomerIncome Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportCustomerBalance\"\u003e\u003c/a\u003e\n\n### quickBooks.reportCustomerBalance\nRetrieves the CustomerBalance Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportCustomerBalanceDetail\"\u003e\u003c/a\u003e\n\n### quickBooks.reportCustomerBalanceDetail\nRetrieves the CustomerBalanceDetail Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportAgedReceivables\"\u003e\u003c/a\u003e\n\n### quickBooks.reportAgedReceivables\nRetrieves the AgedReceivables Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportAgedReceivableDetail\"\u003e\u003c/a\u003e\n\n### quickBooks.reportAgedReceivableDetail\nRetrieves the AgedReceivableDetail Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportVendorBalance\"\u003e\u003c/a\u003e\n\n### quickBooks.reportVendorBalance\nRetrieves the VendorBalance Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportVendorBalanceDetail\"\u003e\u003c/a\u003e\n\n### quickBooks.reportVendorBalanceDetail\nRetrieves the VendorBalanceDetail Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportAgedPayables\"\u003e\u003c/a\u003e\n\n### quickBooks.reportAgedPayables\nRetrieves the AgedPayables Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportAgedPayableDetail\"\u003e\u003c/a\u003e\n\n### quickBooks.reportAgedPayableDetail\nRetrieves the AgedPayableDetail Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportVendorExpenses\"\u003e\u003c/a\u003e\n\n### quickBooks.reportVendorExpenses\nRetrieves the VendorExpenses Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportTransactionList\"\u003e\u003c/a\u003e\n\n### quickBooks.reportTransactionList\nRetrieves the TransactionList Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportGeneralLedgerDetail\"\u003e\u003c/a\u003e\n\n### quickBooks.reportGeneralLedgerDetail\nRetrieves the GeneralLedgerDetail Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportTaxSummary\"\u003e\u003c/a\u003e\n\n### quickBooks.reportTaxSummary\nRetrieves the TaxSummary Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportDepartmentSales\"\u003e\u003c/a\u003e\n\n### quickBooks.reportDepartmentSales\nRetrieves the DepartmentSales Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportClassSales\"\u003e\u003c/a\u003e\n\n### quickBooks.reportClassSales\nRetrieves the ClassSales Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\u003ca name=\"QuickBooks+reportAccountListDetail\"\u003e\u003c/a\u003e\n\n### quickBooks.reportAccountListDetail\nRetrieves the AccountListDetail Report from QuickBooks\n\n**Kind**: instance property of [\u003ccode\u003eQuickBooks\u003c/code\u003e](#QuickBooks)  \n\n| Param | Type | Description |\n| --- | --- | --- |\n| options | \u003ccode\u003eobject\u003c/code\u003e | (Optional) Map of key-value pairs passed as options to the Report |\n\n\n# Code Generation\nThis is an automatically-generated codebase - including this `README`! To see how it is built, \n```\nyarn build\n```\nOr check out the `makePromises.js` to see how the analysis is done. ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frhdeck%2Fnode-quickbooks-promise","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frhdeck%2Fnode-quickbooks-promise","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frhdeck%2Fnode-quickbooks-promise/lists"}