QBO v3 QueryService是否将响应限制为100行?我可以设定更高的限额吗?

时间:2014-07-24 20:59:53

标签: intuit-partner-platform quickbooks-online

我正在使用QueryService来检索客户列表。这似乎将返回的行数限制为100行,最大值。

这是我的代码:

QueryService<Intuit.Ipp.Data.Customer> customerQueryService = new QueryService<Intuit.Ipp.Data.Customer>(serviceContext); 
List<Intuit.Ipp.Data.Customer> customers = customerQueryService.Select(c => c).ToList();

如何为最大返回行数设置上限?

1 个答案:

答案 0 :(得分:3)

https://developer.intuit.com/docs/0025_quickbooksapi/0050_data_services/020_key_concepts/00300_query_operations

响应中的最大实体数

响应中可以返回的最大实体数为1000.如果未指定结果大小,则默认数为100.如果查询返回许多实体,则按分块中的描述获取块中的实体。要确定特定查询返回的实体数,请使用查询中的COUNT关键字进行探测。有关详细信息,请参阅计数。