Quickbooks:如何通过交易清单获取客户
Quickbooks: How to get customer with transactions list
我已经通过 PHP SDK
获得了 quickbooks 客户列表
$dataService = $this->quickBookService->getDataService();
$customers = $dataService->Query("select * from Customer");
所以 $customers
有客户列表 但是我找不到任何地方我如何才能获得客户交易列表
喜欢下面的一位顾客
如何获取客户交易列表?
您尝试使用 Intuit Developer API 参考资料了吗?它显示了您可以查询的所有内容。
具体来说:
- 估计 -
SELECT * FROM Estimate
- 付款 -
SELECT * FROM Payment
- 发票 -
SELECT * FROM Invoice
- 等等等等等
链接:
- https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/invoice#query-an-invoice
- https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/estimate#query-an-estimate
- https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/payment#query-a-payment
我已经通过 PHP SDK
获得了 quickbooks 客户列表$dataService = $this->quickBookService->getDataService();
$customers = $dataService->Query("select * from Customer");
所以 $customers
有客户列表 但是我找不到任何地方我如何才能获得客户交易列表
喜欢下面的一位顾客
如何获取客户交易列表?
您尝试使用 Intuit Developer API 参考资料了吗?它显示了您可以查询的所有内容。
具体来说:
- 估计 -
SELECT * FROM Estimate
- 付款 -
SELECT * FROM Payment
- 发票 -
SELECT * FROM Invoice
- 等等等等等
链接:
- https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/invoice#query-an-invoice
- https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/estimate#query-an-estimate
- https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/payment#query-a-payment