Stripe Tax Rate ApiService

A service which handles getting the Stripe Shipping Rates from the Stripe API

This feature requires a paid license

The Stripe Tax Rate API service is what handles the retrieval of the Tax Rates from the Stripe API.

You can access the API service by injecting IStripeTaxRateApiService which can be found within the namespace UmbCheckout.Stripe.Addons.Interfaces

GetTaxRates

Gets the Tax Rates from the Stripe API

Task<StripeList<TaxRate>> GetTaxRates();

GetTaxRate

Gets a Tax Rate from the Stripe API

Parameters:

NameDetail

id

Id of the Stripe Tax Rate

Task<TaxRate> GetTaxRate(string id);

Last updated