Questions tagged [quickbooks]

QuickBooks is popular small to medium-sized business accounting software created by Intuit, Inc. QuickBooks Pro/Premier/Enterprise for Windows all include support for programmatic access to QuickBooks via Intuit's SDK/XML-based APIs. QuickBooks Online edition also supports an XML-based API. QuickBooks for Mac does not support any SDK/API/programmatic access.

QuickBooks is popular small to medium-sized business accounting software created by Intuit, Inc.

Intuit produces several different QuickBooks versions:

  • QuickBooks Pro/Premier/Enterprise for Windows - a Windows XP/Vista/7 desktop software
  • QuickBooks for Mac - an OS X desktop software
  • QuickBooks Online Edition - a hosted SaaS solution

QuickBooks Pro/Premier/Enterprise for Windows all include support for programmatic access to QuickBooks via Intuit's SDK/XML-based APIs. QuickBooks Online edition also supports an XML-based API. QuickBooks for Mac does not support any SDK/API/programmatic access.

Developers looking to integrate with QuickBooks might want to check out these popular open-source libraries:

Developers may also want to look at these links for documentation/help/forums:

1903 questions
0
votes
1 answer

Unable to add duplicate customers to Quickbooks using QBFC

I have the following code: public void addCustomer() { bool sessionBegun = false; bool connectionOpen = false; QBSessionManager sessionManager = null; try { …
Giardino
  • 1,367
  • 3
  • 10
  • 30
0
votes
1 answer

Can I query for Estimates with NULL ClassRef in Quickbooks API v3?

According to the documents, you should be able to query for NULL ClassRef values like so: select * from Estimate where ClassRef = ' ' But, that query is causing a validation error: { "Fault": { "Error": [ { "Message": "Invalid…
barelyknown
  • 5,510
  • 3
  • 34
  • 46
0
votes
0 answers

Sample of payment update in Quickbook PHP

I am using the open-source QuickBooks PHP DevKit on GitHub. I treid to update payment. But it showing error. Please give any sample of payment update.
Shino
  • 125
  • 2
  • 5
  • 14
0
votes
1 answer

Can I export TimeActivity with Payroll Items

I have web based time tracking application. With the QuickBooks desktop edition I am able to export TimeActivity transactions that contain Customer Job, Service Item, and Payroll Item information assigned to the hours worked. With the QuickBooks…
0
votes
1 answer

com.intuit.ipp.exception.FMSException in Quickbooks

When I use the following query: SELECT * FROM Account WHERE Name = 'ABC' And I am getting the following error: com.intuit.ipp.exception.FMSException: ERROR CODE:3202, ERROR MESSAGE:message=BadRequest;statusCode=400;error detail: null; I am not…
0
votes
1 answer

Quickbooks web connector error

I had a working setup of desktop QuickBooks and my website PHP application so far. Recently I decided to restore a backup of a different company file in my QuickBooks. It restored successfully, but now when I try to add a new application in…
0
votes
1 answer

Quickbooks sdk- Extract customer email

I am using the Quickbooks sdk from consolibyte and am trying to extract the email address from the customer query. Here is the code: $CustomerService = new QuickBooks_IPP_Service_Customer(); $customers = $CustomerService->query($this->Context,…
rstewart8
  • 89
  • 1
  • 10
0
votes
1 answer

Quickbooks error message: something has been deleted

When we sent some data to Quickbooks Online to sync up, the following error was returned. The values looked fine. How to further investigate this problem?
0
votes
1 answer

Update payment in open-source QuickBooks PHP DevKit on GitHub

I am using the open-source QuickBooks PHP DevKit on GitHub. I am trying to update a payment. But I am getting an error "ERROR!2030: [Invalid ID, Id should be a valid number. Supplied value:{-17}]" Code I had given is shown below First added code for…
Shino
  • 125
  • 2
  • 5
  • 14
0
votes
1 answer

Update a line in an invoice in open-source QuickBooks PHP DevKit on GitHub

I am using the open-source QuickBooks PHP DevKit on GitHub. Suppose their are three line items in a invoice. Is it possilbe to update third line item? Also Is it possible to delete an invoice? Please help.
Shino
  • 125
  • 2
  • 5
  • 14
0
votes
1 answer

How to get QB client version using qbxml?

I'm trying to check if the user connecting to my web app is using Quickbooks Canada or US. Is there a way to retrieve the client version or locale of quickbooks using qbxml?
0
votes
1 answer

Installing .net framework on Amazon EC2 windows server 2012

Need help on how to install quickbooks on amazon ec2 server. I already installed the quickbooks enterprise 2014 but now i need to access the server by sharing it by accessing it via internet from our network. I have found this…
vher
  • 21
  • 11
0
votes
1 answer

Update & delete Items in open-source QuickBooks PHP DevKit on GitHub

I am using the open-source QuickBooks PHP DevKit on GitHub. I added an Item using the example example_items_add.php. How can I update & delete an item? Please help me.
Shino
  • 125
  • 2
  • 5
  • 14
0
votes
1 answer

Unable to update 2 domains at the same time in quickbook via QBWC

i need to update customer & vendor in quickbook at once but i got error. //Here my code package com.company.product.wsai.qb.ws.endpoint; import java.io.StringWriter; import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBException; import…
Yasa
  • 332
  • 4
  • 21
0
votes
2 answers

VBA SQL Loop using QODBC

I am trying to loop through an existing table (tblSalesOrder) and I need to run through every line (where they relate to that particular customer) and write each line into an SQL statement and execute it. What is the easiest way to go about this…
Daniel
  • 73
  • 2
  • 8
1 2 3
99
100