Order Type Get Order Types by passing required parameter.

Order type
Key Value
URL https://api.ovvihq.com/OnlineOrder/OrderTypes
APIKey Provided by OVVI
                                    
  1. public string GetOrderType()
  2. {
  3. get
  4. {
  5. string strResult = string.Empty;
  6. try
  7. {
  8. HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://api.ovvihq.com/OnlineOrder/OrderTypes");
  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. }
                                
  1. <OrderTypeOptions>
  2. <OrderType>
  3. <Name> Take Out </Name>
  4. <Id> 1 </Id>
  5. </OrderType>
  6. <OrderType>
  7. <Name> Delivery </Name>
  8. <Id> 2 </Id>
  9. </OrderType>
  10. <OrderTypeOptions>
Xml Node Description
OrderType
Name Name of the Order type. Take out or Delivery.
ID Order Type Id.