php - Quickbooks Integration Making Deposits -
i have php web app integrated quickbooks online. able add invoices , make payments them. trying create deposit payments. here xml:
<?qbxml version="2.0" ?> <qbxml> <signonmsgsrq> <signonticketrq> <clientdatetime>' . date('y-m-d') . 't' . date('h:i:s') . '</clientdatetime> <sessionticket>' . $this->session . '</sessionticket> <language>english</language> <appid>' . $this->application_id . '</appid> <appver>1</appver> </signonticketrq> </signonmsgsrq> <qbxmlmsgsrq onerror="stoponerror"> <depositaddrq requestid="0"> <depositadd> <deposittoaccountref> <fullname>premier checking</fullname> </deposittoaccountref> <depositlineadd> <paymenttxnid>' . $txnid . '</paymenttxnid> </depositlineadd> </depositadd> </depositaddrq> </qbxmlmsgsrq> </qbxml>
i following response request: <depositaddrs requestid="0" statuscode="1030" statusmessage="not supported" statusseverity="error"/>
is there wrong xml? also, how include multiple payments in 1 deposit?
thanks
qbxml qboe being deprecated , should looking @ qb api making connections qbo.
here details on qbxml deprecation: https://developer.intuit.com/blog/2013/12/20/migration-details-quickbooks-online-sdk-to-quickbooks-online-rest-api-v3
here sample desktop connect qbo: https://github.com/intuitdeveloperrelations/oauthhangoutsamples
depositadd not supported in qbxml.
Comments
Post a Comment