0

我正在尝试将 QuickBooksOnline 中的所有总帐条目提取到给定日期范围内的 C# Asp.net 应用程序中。我已经能够成功提取与我用作参考的损益明细报告相匹配的账单、支票和日记帐条目。但是,我似乎缺少该报告中的所有“存款”类型。我正在提取 Invoices 和 Payments 的数据,但对于我正在寻找的 TxnDates,它们是空的。

如果有帮助,我将包括发票和付款的请求和响应 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>
4

1 回答 1

0

押金与发票或付款不同。存款是一项单独的交易,表明将付款存入银行。

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

于 2013-05-02T21:31:10.227 回答