public async Task <JsonResult> OnPostVerificarEmail([FromBody] Persons usuario) { bool EmailExistent = false; string error = null; try { var respuesta = await _peopleService.ConsultaEmails(usuario.Email.Address, int.Parse(Request.Cookies["Country"])); if (respuesta != null) { if ((respuesta.Id != null && respuesta.Name != null) && (respuesta.Id != "" && respuesta.Name != "")) { EmailExistent = true; } if (respuesta.Id == null && respuesta.Name == "record not found") { error = respuesta.Name; } } } catch { } return(new JsonResult(new { emailExist = EmailExistent, errors = error })); }