public async Task <IActionResult> UpdateCustom([FromBody] WatchList watchList, [FromQuery] string userId)
        {
            await _watchListService.UpdateCustomAsync(userId, watchList);

            return(NoContent());
        }