I just started learning the QuickBooks, able to successfully send the XML requests, but a bit confused about what I get back
I try different request types, CheckQueryRq, VendorQueryRq, InvoiceQueryRq but ALWAYS get back the same identical data
Here are my XML's
<xml version=""1.0"" encoding=""utf-8"" ?>
<qbxml version=""12.0""?>
<QBXML>
<QBXMLMsgsRq onError=""stopOnError"">
<CheckQueryRq>
<IncludeLineItems>true</IncludeLineItems>
</CheckQueryRq>
</QBXMLMsgsRq>
</QBXML>
<xml version=""1.0"" encoding=""utf-8"" ?>
<qbxml version=""12.0""?>
<QBXML>
<QBXMLMsgsRq onError=""stopOnError"">
<VendorQueryRq>
<IncludeLineItems>true</IncludeLineItems>
</VendorQueryRq>
</QBXMLMsgsRq>
</QBXML>
<xml version=""1.0"" encoding=""utf-8"" ?>
<qbxml version=""12.0""?>
<QBXML>
<QBXMLMsgsRq onError=""stopOnError"">
<InvoiceQueryRq>
<IncludeLineItems>true</IncludeLineItems>
</InvoiceQueryRq>
</QBXMLMsgsRq>
</QBXML>
Why do those qb XML's return the same identical data?
Thank you in advance