public ActionResult <IEnumerable <Keep> > GetKeeps(string id) { try { return(Ok(_ks.GetByProfile(id))); } catch (System.Exception e) { return(BadRequest(e.Message)); } }