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
0
votes
1 answer

I need to retrieve customer balance detail from Quick Books for the desktop

I am not sure the best way to retrieve customer balance detail from Quick Books. I tried using the TransactionQuery, but it was missing customer payments (see code below). I also tried using the GeneralDetailReportQuery, but this format is…
HeidiH
  • 31
  • 4
0
votes
1 answer

How to modify a record with a Specific ListID in Quickbooks Using c#

I am new to QuickBooks development. I have successfully managed to call add records and query but I am having problems figuring out how to modify records. I have quick books ListIds stored in a separate system, I would like modify the specific…
earnshae
  • 169
  • 13
0
votes
1 answer

InvoiceAddRq fails for unknown reason

I hope I stay in line here, I don't want to waste your time. I developed a simple app that extracts customer invoice data from a database and writes xml requests to load the invoice data into QuickBooks. It works well. I've run into and fixed a…
0
votes
1 answer

Modifying a RecievePayment with QB Web Connector

When I modify a payment using the RecievePaymentMod request, I need to supply the txnID of the payment. Then in the response, it sends back a txnID (don't know if it's the same or not, haven't put it into practice yet). If I have to modify the same…
user3826040
0
votes
1 answer

How can I get the list list of all Invoices,Estimates and Payments for a particular Customer in Quickbooks offline?

I want to provide a Customer ListId through QBXML and get the list of all Invoices, Estimates and Payments under that particular customer. What QBXML request would give me this? Please help.
Mainak
  • 469
  • 3
  • 9
  • 33
0
votes
1 answer

Is there a way to delete a customer from Quickbooks offline using qbsdk and qbxml?

I want to delete a particular customer from quickbooks using the ListId of that customer . What would be my qbxml request in that case ?
Mainak
  • 469
  • 3
  • 9
  • 33
0
votes
2 answers

How can I get invoice information when I do a ReceivePaymentQueryRq?

I want to get the invoice no. and list id of the invoice when I do a ReceivePaymentQueryRq with QBXML to know against which invoice the payment is being received. The quickbooks version is Enterprise 7.0 and sdk version in 13.0. Please help.
Mainak
  • 469
  • 3
  • 9
  • 33
0
votes
1 answer

COM Exception with QBXMLRP2

I am working on creating a Quick Books Web Connector like desktop application using QBXML. I have been through the programming guide and trying to write the code to communicate with Quick Books. But I am getting the COM exception at the very first…
HSharma
  • 385
  • 2
  • 18
0
votes
0 answers

Quickbooks Webservice Connector not connecting to python web service

I am trying to connect Quickbooks Webservice Connector to a python webservice but the connection is not being established. I think the problem is with my .qwc file. Below is the code for the .qwc file.
Hassan Zaheer
  • 1,361
  • 2
  • 20
  • 34
0
votes
1 answer

Quickbooks desktop web connector, invoice CLASS is empty

I've been using QuickBooks Enterprise, Web connector ver: 2.1.0.30 and the framework found here: https://github.com/consolibyte/quickbooks-php for adding invoices and jobs. It is working fine but I can't get the CLASS of the invoice to be shown in…
realife
  • 79
  • 1
  • 8
0
votes
1 answer

I want to integrate my ASP.Net application with quickbooks enterprise, is the integration similar for desktop enterprise as it is for online with IPP?

I want to integrate my asp.net application with quickbooks enterprise. I have done integration with quickbooks-online using IPPV3 ASP.net; I can send HTTP calls with JSON objects to get response, but now my requirement is to connect my asp.net…
0
votes
1 answer

quickbooks desktop web connector qbxml add job continueOnError not working

I'm using QuickBooks Enterprise, Web connector ver: 2.1.0.30 and the framework found here: https://github.com/consolibyte/quickbooks-php. When adding jobs there are some cases that the same job name exists, so quickbooks gives an error. I want the…
realife
  • 79
  • 1
  • 8
0
votes
2 answers

QBSDK: Access all transactions of all clients (date period)

I need to look at the "audit" log for quickbooks using the SDK. I am basically looking to sync quickbooks transactions to a 3rd party platform (for reference purposes) I cant find a reference to the audit log in the OSR, but I do see…
Louis van Tonder
  • 3,664
  • 3
  • 31
  • 62
0
votes
2 answers

Map Quickbooks QBXML nodes to Ipp.Data objects

Is there such a thing to convert QBXML XmlNodes to IPP.Data objects in C#. For instance, CustomerRet returned in a CustomerQueryRs could be mapped to a Intuit.Ipp.Data.Customer
jsgoupil
  • 3,788
  • 3
  • 38
  • 53
0
votes
1 answer

How can I have QuickBooks send deleted line items in an InvoiceQuery?

In making a request via qbXML for importing invoices, I'm using the following snippet: true 0 This allows me to grab all line items for all…
brazilianldsjaguar
  • 1,409
  • 1
  • 20
  • 45