1

I may be missing something in the OSR, but what query do I use to retrieve a customer statement? I cant seem to identify the right query.

Would greatly appreciate some insight.

Regards

Louis van Tonder
  • 3,664
  • 3
  • 31
  • 62

1 Answers1

1

None of the QuickBooks APIs (QBFC and QBXML included) support fetching customer statements.

You could probably build your own by querying for the customers invoices, payments, etc. and displaying the summary data.

Keith Palmer Jr.
  • 27,666
  • 16
  • 68
  • 105
  • Thanks. I ended up using ITransactionQuery, which gets a list of all the transactions for the company, which can be filtered to a customer. – Louis van Tonder Aug 27 '13 at 13:20