private JObject BuildRequest(JObject tags)
 {
     return(new JObject(
                new JProperty("application", _appId),
                new JProperty("hwid", SDKHelpers.GetDeviceUniqueId()),
                new JProperty("tags", tags)));
 }
 private string BuildRequest(string tags)
 {
     return((new JObject(
                 new JProperty("request",
                               new JObject(
                                   new JProperty("application", _appId),
                                   new JProperty("hwid", SDKHelpers.GetDeviceUniqueId()),
                                   new JProperty("tags", JObject.Parse(tags)))))).ToString());
 }