public async Task <IAccountsService_SearchForPlayersByPhraseRes> SearchForPlayersByPhraseReq(IAccountsService_SearchForPlayersByPhraseReq request)
        {
            request.application_id = _configurationService.GetApplicationID();

            var httpClient   = _clientFactory.CreateClient("default");
            var url          = "https://api.worldoftanks.eu/wot/account/list/" + _urlExtension.BuildUrlQueryParams(request);
            var httpResponse = await httpClient.GetAsync(url);

            var httpResponseString = await httpResponse.Content.ReadAsStringAsync();

            return(JsonConvert.DeserializeObject <AccountsService_SearchForPlayersByPhraseRes>(httpResponseString));
        }