C# CODE EXAMPLE
string webAddr = “XYZ”;
string result = “”;
string json = “”;
using (WebClient client = new WebClient())
{
client.Headers[HttpRequestHeader.ContentType] = “application/json”;
client.Headers.Add(“APIApplicationID”, “myAppID”);
client.Headers.Add(“APIApplicationKey”, “myAppKey”);
json = “{ “;
json += “\”strAdminUserName\”: \”myUserName\”, “;
json += “\”strAdminPassword\”: \”myPassword\”, “;
json += “\”strAdminSecurityCode\”: \”mySecCode\””;
json += ” }”;
** XYZ will be provided to you once we approve your API application