- Execute a SQL-like query against QuickBooks Online API using the query endpoint. Returns unmodified API response.
- Retrieve company information directly from QuickBooks API.
- Retrieve a list of customers using query syntax. Returns paginated results.
- Retrieve customer data by ID from QuickBooks API.
- Create a new customer in QuickBooks. Either DisplayName or at least one name component (GivenName, MiddleName, FamilyName) is required.
- Update an existing customer in QuickBooks. Requires Id and SyncToken.
- Retrieve a list of invoices using query syntax. Returns paginated results.
- Retrieve invoice data by ID from QuickBooks API.
- Create a new invoice in QuickBooks. Requires Line array and CustomerRef.
- Update an existing invoice in QuickBooks. Requires Id and SyncToken.
- Delete an invoice in QuickBooks using the delete operation.
- Retrieve a list of vendors using query syntax. Returns paginated results.
- Retrieve vendor data by ID from QuickBooks API.
- Create a new vendor in QuickBooks. Either DisplayName or at least one of Title, GivenName, MiddleName, FamilyName, or Suffix is required.
- Full update of an existing vendor in QuickBooks. Requires Id and SyncToken. Writable fields omitted from the request body are set to NULL.
- Retrieve a list of bills using query syntax. Returns paginated results.
- Retrieve bill data by ID from QuickBooks API.
- Create a new bill in QuickBooks. Requires Line array and VendorRef.
- Update an existing bill in QuickBooks. Requires Id, SyncToken, and VendorRef.
- Retrieve a list of bill payments using query syntax. Returns paginated results.
- Retrieve bill payment data by ID from QuickBooks API.
- Create a new bill payment in QuickBooks. Requires VendorRef, TotalAmt, Line, and PayType.
- Update an existing bill payment in QuickBooks. Requires Id and SyncToken.
- Retrieve a list of vendor credits using query syntax. Returns paginated results.
- Retrieve vendor credit data by ID from QuickBooks API.
- Create a new vendor credit in QuickBooks. Requires Line array and VendorRef.
- Update an existing vendor credit in QuickBooks. Requires Id, SyncToken, and VendorRef.
- Delete a bill in QuickBooks using the delete operation.
- Delete a bill payment in QuickBooks using the delete operation.
- Delete a vendor credit in QuickBooks using the delete operation.
- Retrieve a list of payments using query syntax. Returns paginated results.
- Retrieve payment data by ID from QuickBooks API.
- Create a new payment in QuickBooks. Requires CustomerRef and TotalAmt.
- Update an existing payment in QuickBooks. Requires Id and SyncToken.
- Delete a payment in QuickBooks using the delete operation.
- Retrieve a list of accounts using query syntax. Returns paginated results.
- Retrieve account data by ID from QuickBooks API.
- Create a new account in QuickBooks. Requires Name and either AccountType or AccountSubType.
- Update an existing account in QuickBooks. Requires Id, SyncToken, and Name.
- Retrieve a list of items using query syntax. Returns paginated results.
- Retrieve item data by ID from QuickBooks API.
- Create a new item in QuickBooks. Requires Name and Type (with minorVersion 4+).
- Update an existing item in QuickBooks. Requires Id and SyncToken. Full update - omitted fields are set to NULL.
- Retrieve estimate data by ID from QuickBooks API.
- Create a new estimate in QuickBooks. Requires Line array and CustomerRef.
- Update an existing estimate in QuickBooks. Requires Id and SyncToken.
- Delete an estimate in QuickBooks using the delete operation.
- Retrieve a list of purchase orders using query syntax. Returns paginated results.
- Retrieve purchase order data by ID from QuickBooks API.
- Create a new purchase order in QuickBooks. Requires APAccountRef, VendorRef, and Line array.
- Delete a purchase order in QuickBooks using the delete operation.
- Retrieve a list of purchases using query syntax. Returns paginated results.
- Retrieve purchase transaction data by ID from QuickBooks API.
- Create a new purchase transaction in QuickBooks. Requires Line array, AccountRef, and PaymentType.
- Delete a purchase in QuickBooks using the delete operation.
- Retrieve credit memo data by ID from QuickBooks API.
- Create a new credit memo in QuickBooks. Requires Line array and CustomerRef.
- Delete a credit memo in QuickBooks using the delete operation.
- Retrieve a list of sales receipts using query syntax. Returns paginated results.
- Retrieve sales receipt data by ID from QuickBooks API.
- Create a new sales receipt in QuickBooks. Requires Line array with at least one SalesItemLine or GroupLine.
- Delete a sales receipt in QuickBooks using the delete operation.
- Retrieve a list of refund receipts using query syntax. Returns paginated results.
- Retrieve refund receipt data by ID from QuickBooks API.
- Create a new refund receipt in QuickBooks. Requires Line array with at least one line item.
- Delete a refund receipt in QuickBooks using the delete operation.
- Retrieve journal entry data by ID from QuickBooks API.
- Create a new journal entry in QuickBooks. Requires Line array with debits and credits that balance.
- Delete a journal entry in QuickBooks using the delete operation.
- Retrieve deposit data by ID from QuickBooks API.
- Create a new deposit in QuickBooks. Requires DepositToAccountRef and Line array.
- Retrieve transfer data by ID from QuickBooks API.
- Create a new transfer in QuickBooks. Requires FromAccountRef, ToAccountRef, and Amount.
- Delete a deposit in QuickBooks using the delete operation.
- Delete a transfer in QuickBooks. Requires full payload including Id, SyncToken, FromAccountRef, ToAccountRef, and Amount.
- Retrieve employee data by ID from QuickBooks API.
- Create a new employee in QuickBooks. At least one of GivenName or FamilyName is required.
- Retrieve class data by ID from QuickBooks API.
- Create a new class in QuickBooks. Requires Name.
- Retrieve department data by ID from QuickBooks API.
- Create a new department in QuickBooks. Requires Name.
- Retrieve a list of tax codes using query syntax. Returns paginated results.
- Retrieve tax code data by ID from QuickBooks API.
- Retrieve a list of tax rates using query syntax. Returns paginated results.
- Retrieve tax rate data by ID from QuickBooks API.
- Retrieve payment method data by ID from QuickBooks API.
- Create a new payment method in QuickBooks. Requires Name.
- Retrieve payment term data by ID from QuickBooks API.
- Create a new payment term in QuickBooks. Requires Name.
- Retrieve the Account List report from QuickBooks, which provides detailed information about all accounts including balances, types, and descriptions.
- Retrieve Profit and Loss report from QuickBooks API.
- Retrieve Balance Sheet report from QuickBooks API.
- Retrieve Cash Flow statement from QuickBooks API.
- Retrieve Aged Receivables Detail report from QuickBooks API.
- Retrieve Aged Payables Detail report from QuickBooks API.
No matching actions