我如何使用API 在线检索Quickbooks中的存款

问题描述 投票:-1回答:2

我们无法使用Quickbooks在线API检索存款,交易,对帐单和转帐。

环境:C#

quickbooks
2个回答
0
投票

您可以参考QBO实体文档。

https://developer.intuit.com/docs/0025_quickbooksapi/0050_data_services/030_entity_services_reference

“无法检索”是什么意思?你有什么例外吗?在这种情况下,请在您的帖子中提及详细信息。

您可以使用API​​Explorer工具尝试所有QBO端点。https://developer.intuit.com/apiexplorer?apiname=V3QBO

您也可以尝试示例.net应用程序。

https://github.com/IntuitDeveloperRelations/QuickbooksV3API-DotNet

谢谢


0
投票

您可以使用以下脚本从QBO中提取存款:

QueryService<Deposit> DepositQueryService = new QueryService<Deposit>(context);
var ListDeposit = DepositQueryService.ExecuteIdsQuery("Select * From Deposit MaxResults 1000").ToList();

这将为您提供帮助。

© www.soinside.com 2019 - 2024. All rights reserved.