public ActionResult <VaultKeep> GetVaultKeepsByProfileId(string id) { try { return(Ok(_vaultKeepsService.GetVaultKeepsByProfileId(id))); } catch (System.Exception e) { return(BadRequest(e.Message)); } }