Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Products

Get a filtered list of products

Code Block
languagec#
var IN_MainQueryRequest = new IN_MainQuery() { PartNoStartsWith = "a", Take = 25 };
ServiceStack.QueryResponse<IN_Main> IN_MainQueryResponse = client.Get(IN_MainQueryRequest);


foreach(IN_Main product in IN_MainQueryResponse.Results)
{
    Console.WriteLine("Part '{0}'", product.PartNo);
}


Create a new product

Update an existing product

Delete a product

Categories