/// <summary>
        /// Method to make Api call to get Tax Rate based on location
        /// </summary>
        /// <returns></returns>
        public async Task <TaxRateResponse> GetTaxRate(TaxRateApiRequest apiRequest)
        {
            var response = await _apiClient.ApiCall <TaxRateResponse>(HttpMethod.Get, apiRequest.TaxApiUrl, apiRequest.Uri, apiRequest.TaxApiAuthToken);

            return(response);
        }