Item/PLU Get Item/PLU list by passing required parameter.

GET /Item/PLU
Key Value
URL https://api.ovvihq.com/Inventory
APIKey Provided by OVVI
                                
  1. public string GetInventory()
  2. {
  3. get
  4. {
  5. string strResult = string.Empty;
  6. try
  7. {
  8. HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://api.ovvihq.com/Inventory");
  9. request.ContentType = "application/json";
  10. request.Method = "GET";
  11. request.Headers.Add("APIKey", "Provided by OVVI");
  12. // Set some reasonable limits on resources used by this request
  13. request.ContentLength = 0;
  14. // Set credentials to use for this request.
  15. request.Credentials = CredentialCache.DefaultCredentials;
  16. HttpWebResponse response = (HttpWebResponse)request.GetResponse();
  17. // Get the stream associated with the response.
  18. Stream receiveStream = response.GetResponseStream();
  19. // Pipes the stream to a higher level stream reader with the required encoding format.
  20. StreamReader readStream = new StreamReader(receiveStream, Encoding.UTF8);
  21. strResult = readStream.ReadToEnd().ToString();
  22. response.Close();
  23. readStream.Close();
  24. return strResult;
  25. }
  26. catch (Exception ex)
  27. {
  28. strResult = Convert.ToString(ex.Message);
  29. return strResult;
  30. }
  31. }
  32. }
Key Data Type Description
ItemNumber nvarchar(20) Item Number/Id.
ItemName nvarchar(100) Item Name.