Example #1
0
        public DeleteAuthKeyResponse DeleteAuthKey([FromBody] DeleteAuthKeyRequest request)
        {
            DeleteAuthKeyResponse response = _accountFacade.DeleteAuthKey(request);

            return(response);
        }
 public JsonResult DeleteKey(DeleteAuthKeyRequest deleteAuthKey)
 {
     _accountFacade.DeleteAuthKey(deleteAuthKey);
     return(Json("Ok"));
 }