Beispiel #1
0
 public IHttpActionResult Reset(string clientKey, string instance)
 {
     try
     {
         verificationService.Reset(clientKey, instance);
         return(Json(new { success = true }));
     }
     catch (Exception e)
     {
         return(Json(new { success = false, data = e.Message }));
     }
 }