2013-05-02 51 views
0

我试图将QuickBooksOnline中的所有总帐条目拖到我的C#Asp.net应用程序中以获得给定的日期范围。我已经能够成功地提取与我用作参考的损益明细报告相匹配的账单,支票和日记账分录。但是,我似乎错过了该报告中的所有“存款”类型。我正在为发票和付款提取数据,但他们将返回空我正在寻找的TxnDates。如何使用IntuitAnywhere从QuickBooksOnline中扣取存款

万一它有助于我包括发票和付款的请求和响应xml日志。

发票申请

Filter=TxnDate :AFTER: 2013-02-28T00:00:00-05:00 :AND: TxnDate :BEFORE: 2013-04-01T00:00:00-04:00&PageNum=1&ResultsPerPage=100 

发票响应

<?xml version="1.0" encoding="UTF-8" standalone="yes"?><qbo:SearchResults xmlns="http://www.intuit.com/sb/cdm/v2" xmlns:qbp="http://www.intuit.com/sb/cdm/qbopayroll/v1" xmlns:qbo="http://www.intuit.com/sb/cdm/qbo"><qbo:CdmCollections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="Invoices"/><qbo:Count>0</qbo:Count><qbo:CurrentPage>1</qbo:CurrentPage></qbo:SearchResults> 

付款申请

Filter=TxnDate :AFTER: 2013-02-28T00:00:00-05:00 :AND: TxnDate :BEFORE: 2013-04-01T00:00:00-04:00&PageNum=1&ResultsPerPage=100 

支付响应

<?xml version="1.0" encoding="UTF-8" standalone="yes"?><qbo:SearchResults xmlns="http://www.intuit.com/sb/cdm/v2" xmlns:qbp="http://www.intuit.com/sb/cdm/qbopayroll/v1" xmlns:qbo="http://www.intuit.com/sb/cdm/qbo"><qbo:CdmCollections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="Payments"/><qbo:Count>0</qbo:Count><qbo:CurrentPage>1</qbo:CurrentPage></qbo:SearchResults> 

回答

0

存款与发票或付款不同。存款是一笔单独的交易,表明支付存款给银行。

根据Intuit的documentation,v2 API不支持查询存款。