I using PHP sdk to connect to QuickBooks through Web Connector.
I am able to write QBXML request for fetching all sales order from QuickBooks.
Below is my QBXML request.
<?qbxml version="11.0"?>
<QBXML>
<QBXMLMsgsRq onError="stopOnError">
<SalesOrderQueryRq iterator="Start" >
<MaxReturned>100</MaxReturned>
</SalesOrderQueryRq>
</QBXMLMsgsRq>
</QBXML>
It returns all details of sales orders but not the items which are in that sales order.
I want to fetch all items with their cost in particular sales order.
So can anybody tell me how can I do that ?