Merchant Info Get Merchant Information by passing required parameter.

GET /Merchant Info
Key Value
URL https://api.ovvihq.com/MerchantInfo
APIKey Provided by OVVI
                                
  1. public string GetOrderDetails()
  2. {
  3. get
  4. {
  5. string strResult = string.Empty;
  6. try
  7. {
  8. HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://api.ovvihq.com/OrderDetails");
  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
Id nvarchar(10) Id
Name nvarchar(100) Company Name.
Email nvarchar(100) Company Email ID.
Address nvarchar(30) Company Address.
City nvarchar(30) City.
State nvarchar(20) State.
Zip nvarchar(10) Zipcode.
Timezone nvarchar(500) Timezone.
Phone nvarchar(15) Company Phone Number.