Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Retrieve QBO Sales Receipts by Customer ID
- //Documentation: http://goo.gl/jL8SQ
- Intuit.Ipp.Data.Qbo.SalesReceiptQuery salesReceiptQuery = new Intuit.Ipp.Data.Qbo.SalesReceiptQuery();
- salesReceiptQuery.CustomerId = new IdType { Value = "106" };
- List<Intuit.Ipp.Data.Qbo.SalesReceipt> salesReceiptResult = salesReceiptQuery.ExecuteQuery<Intuit.Ipp.Data.Qbo.SalesReceipt>(context).ToList();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement