获取所有从quickbooks数据库接收付款记录? [关闭]

Working on a quickbooks api project in php. I created a request query for getting all receive payment records from quickbooks database. But the webconnector is giving error like Invalid xml. can u pls help me with the request and response query??

I recently worked on this same project, so I can post complete code for receive payment records.

I think you are using quickbooks php api downloaded from consolibyte.

So in query request copy function like this :-

 function _quickbooks_receivepayment_query_request($requestID, $user, $action, $ID, $extra, &$err, $last_action_time, $last_actionident_time, $version, $locale)

{

$xml = '<?xml version="1.0" encoding="utf-8"?>
    <?qbxml version="2.0"?>
    <QBXML>
        <QBXMLMsgsRq onError="stopOnError">
    <ReceivePaymentQueryRq>
        <IncludeLineItems>true</IncludeLineItems>
            </ReceivePaymentQueryRq>    
        </QBXMLMsgsRq>
    </QBXML>';

return $xml;

}