Stripe Shipping Rate ApiService

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

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

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

GetShippingRates

Gets the Shipping Rates from the Stripe API

Task<StripeList<ShippingRate>> GetShippingRates();

GetShippingRate

Gets a Shipping Rate from the Stripe API

Parameters:

NameDetail

id

Id of the Stripe Shipping Rate

Task<ShippingRate> GetShippingRate(string id);

Last updated