public async Task <ActionResult> AddSerieToList([FromBody] ShowWatchList show)
 {
     try
     {
         var keycloakId = _tokenHelper.ValidateToken(show.token);
         _log.LogInformation($"AddSerieToList(ShowWatchList {keycloakId}) endpoint called");
         return(Ok(await _watchList.AddSerieToList(keycloakId, show.seriesId)));
     }
     catch (Exception e)
     {
         _log.LogError("couldn't Add Series To user ", e, $"Exception({show.seriesId})", show.seriesId);
         return(StatusCode(500));
     }
 }