Questions tagged [qbxml]

Quickbooks XML is used communicate with most versions of Quickbooks, including Online Edition

Quickbooks XML is a data format that is used to make SDK calls to most versions of Quickbooks. It is preferred over the legacy IIF format because it runs through the API, and is thus constrained to behave more like the QB frontend. QBXML is also bi-directional, while IIF can only insert data.

If you do not have a local Microsoft COM program running on your machine to connect to your instance of QB directly, you can use to make your QBXML calls via a remote web server.

The complete QBXML reference can be found in the Intuit OSR

307 questions
2
votes
2 answers

Integrated Application using getcurrentcompanyfilename results in error

I use qbxmlrp.getcurrentcompanyfilename (using qbxmlrp2) in QB 2011, 2012, and 2013 (sometimes) I get error 2147220470 and the message "QuickBooks is already open and the file is different from the one requested, or there are multiple instances of…
BobGinn
  • 21
  • 1
2
votes
1 answer

Quickbooks QBXML and customerAdd

I am working with the Intuit Web Connector. I am able to add customers using "customerAdd" and by using "openBalance" it creates an invoice. I have tried everything to make it create an invoice number (the invoice that gets created has no number,…
2
votes
1 answer

Import customers from QuickBooks (PHP WebKit)

For query I use QB WebKit, so my queries look like as: $customer = new QuickBooks_Object_Customer(); $customer->set(...); return QBXML_START . $customer->asQBXML('CustomerQueryRq') . QBXML_END; But for iterators methods it doesn't work. And so I…
Salavat
  • 111
  • 1
  • 11
2
votes
1 answer

Quickbooks time tracking

I'm in charge of a time clock system which provides easy access for our employees to enter their hours and then publish those hours into quickbooks This has thus far not been a problem as we have utilized the web connector to interface with a web…
Robert Petz
  • 2,718
  • 4
  • 23
  • 52
1
vote
1 answer

Move Quickbooks Online Company to the Development Site

Anyone know how to move a live Quickbooks Online company to the Test site? I think the address for the test site is: https://qbo.idnbeta.quickbooks.com/
JasonRShaver
  • 4,344
  • 3
  • 32
  • 39
1
vote
0 answers

AccountQueryRq (qbxml) throwing error when parsing the provided XML text stream

I am using Keith's Consolibyte PHP SDK for QBXML to fetch the data from QB Desktop (US 2022 version). I have 2 client company files on two different machines (2 different QB Desktop instances. both same version as above). When I request Accounts…
adang
  • 547
  • 4
  • 14
1
vote
2 answers

QBXML Receive payment showing parsing error in web connector - php Devkit

I am trying to add customer payment(Receive Payment qbxml) only with payment amount, date and payment method with QBXML but I'm getting the following error from web connector QuickBooks found an error when parsing the provided XML text stream My…
1
vote
1 answer

Consolibyte QuickBooks PHP Library - Importing All Active Customers

I am looking at the directory of example files at https://github.com/consolibyte/quickbooks-php/tree/master/docs/web_connector for Consolibyte's QuickBooks PHP library and don't see an example that allows you to import a list of all customers in…
Lloyd Banks
  • 35,740
  • 58
  • 156
  • 248
1
vote
1 answer

How can i upload attachments to Quickbook Desktop via Quickbook Web Connector

I'm working to sync data such as invoice, purchase order, sales order,... from my application to client's Quickbook Desktop via Quickbook Web Connector. But i don't know how can i upload attachments. Please help!
hhuutan
  • 11
  • 1
1
vote
1 answer

How to get INSTANT RESPONSE from Quickbooks Desktop

I'm using quickbooks-php to query/add customer from quickbooks desktop. At this point, I want to write some rest apis to put new customer to quickbooks desktop and get instant response with customer's ID from QB. I'm not sure even I can get instant…
Tiffgray34
  • 61
  • 1
  • 8
1
vote
3 answers

Quickbooks isn't compatible with the version of qbXML that I expect

I have a homemade C++ app built using the Quickbooks SDK version 13. The purpose of the app is to allow me to talk to Quickbooks by receiving an XML string from a network port. I'm able to communicate using qbXML version 2.1. It's talking to…
aswine
  • 179
  • 11
1
vote
1 answer

QB Time Tracking WebService

so this is the xml node i am creating for Quickbooks. Sending over duration (its time kinda thingie) XmlElement duration2 = inputXmlDoc.CreateElement("Duration"); timeTrackingAdd2.AppendChild(duration2); duration2.InnerText = "PT0H14M0S" as per…
ARr0w
  • 1,701
  • 15
  • 31
1
vote
1 answer

shipping method added by qbxml does not appearing in quickbooks desktop UI

I have added ShipMethodRef and ShipDate by qbxml query but in Quickbooks Desktop it does not appearing for that sales receipt or invoice. This is request that I am making to add shipInfo :
Kesha
  • 497
  • 6
  • 19
1
vote
1 answer

QBXML - Query Customer ID

I am working on a qbxml application with PHP, and looking for some advice. The application will be pulling information from a ecommerce system, and allowing a sync over to quickbooks. I need to be able to query quickbooks for an existing customer,…
Aaron A
  • 535
  • 7
  • 20
1
vote
0 answers

QuickBooks QBXML SDK releases and compatibility

Where can I find information about future releases of QBXML and outstanding issues? For instance, I would like to know if there are any changes that need to be made for the newest release of QuickBooks Desktop (2018). According to this link QBXML…
Hans Vonn
  • 3,949
  • 3
  • 21
  • 15