Advertisement
IDNPeterL

IPP .NET DevKit v2 - QBO SalesReceiptsQuery - CustomerId

May 31st, 2012
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.39 KB | None | 0 0
  1. //Retrieve QBO Sales Receipts by Customer ID
  2. //Documentation:  http://goo.gl/jL8SQ
  3.  
  4. Intuit.Ipp.Data.Qbo.SalesReceiptQuery salesReceiptQuery = new Intuit.Ipp.Data.Qbo.SalesReceiptQuery();
  5. salesReceiptQuery.CustomerId = new IdType { Value = "106" };
  6. 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