public async Task <IActionResult> GetMatchListByAccountIdAsync(string accountId, string server)
        {
            var result = await matchesService.GetMatchListByAccountIdAsync(accountId, server);

            if (result.IsSuccess)
            {
                return(Ok(result.MatchList));
            }

            return(NotFound());
        }