public async Task <string> GetList(string token) { try { var keycloakId = _tokenHelper.ValidateToken(token); _log.LogInformation($"GetList(string {keycloakId}) endpoint called"); return(_serializer.Serialize(_watchList.GetUsersWatchList(keycloakId))); } catch (Exception e) { _log.LogError("couldn't Remove Series From List ", e); return(StatusCode(500).ToString()); } }