Xero Api 返回批量债权人发票时超出请求限制

Xero Api request limit is exceeding when returning bulk creditor invoices

我正在尝试检索日期范围内的债权人发票。客户在他们的 xero 系统中获得了超过 26000 条记录。我使用分页检索所有债权人发票,然后尝试过滤日期,但最终出现错误 'exceeding the xero limit and try again later'。 是否有任何有效的方法或任何查询字符串方法来检索日期范围内的债权人发票?

使用查询字符串首先过滤所需的发票范围。

  xeroAPI.Invoices.Where(queryString).Page(curPage).Find().Where(m => m.Type == Xero.Api.Core.Model.Types.InvoiceType.AccountsPayable)