HomeDev GuideAPI Reference
Dev GuideAPI ReferenceUser GuideGitHubNuGetDev CommunityDoc feedbackLog In
GitHubNuGetDev CommunityDoc feedback


Classes in this topic are available in the following namespaces:

  • Mediachase.Commerce.Orders. Contains the Shipment class.

  • Mediachase.Commerce.Orders.Managers. Contains the ShippingManager and CountryManager classes.

Optimizely Customized Commerce includes two shipping options/providers which are used by two shipping methods. The shipping model supports multiple shipments per cart and per order. The provider model lets you also create and incorporate your own shipping providers and methods.

Each shipment (represented by the Shipment class) contains one or more LineItem references, a shipping address, a shipping method, and a rate. The LineItems, shipping address, and shipping method can determine the shipping rate.

  • Each shipping method is associated with a shipping option/provider. You can associate shipping providers with multiple shipping methods.

  • The shipping provider contains the logic to use whatever required information is needed (line item properties like weight or size, other order properties, the shipping address, and/or any other properties or external services your implementation includes) to determine a shipment's shipping rate.

  • Shipping methods contain shipping scenarios representing different pricing for distinct jurisdictions (location can be as general as a country and as specific as a zip code) and shipment weight scenarios.

## Key classes and files

  • Shipment – Represents the class in an order for each shipment in the order.

  • ShippingGateway – The interface shipping gateways must implement to be incorporated into the Optimizely Commerce Framework.

  • ShippingManager – Provides access to shipping methods, shipping method cases, and package information.

  • CountryManager – Provides access to countries defined as shipping jurisdictions.

Note

The implementation of IShippingGateway and IShippingPlugin requires a constructor which takes IMarket as a parameter.

## Examples

To retrieve available shipping methods, use the ShippingManager class, GetShippingMethods method. Because shipping methods are specific to a locale, the language name needs to be provided when calling this method.

Below is an example of retrieving and displaying available shipping methods for a cart with the associated rates:



The ShippingMethodDto typed dataset provides several tables that are useful for different aspects of shipment option display:

  • ShippingMethod – Contains a row of data for each shipping method. This contains data displayed in the **Overview** tab of Commerce Admin UI (version 13 and lower: Overview tab in Commerce Manager), and the IDs for the shipping methods.

  • ShippingCountry – Contains a row for each restricted country associated for a shipping method.

  • ShippingRegion – Contains a row for each restricted state or region for a shipping method.

  • ShippingPaymentRestriction – Contains a row for each payment type restricted for a shipping method.

  • ShippingMethodCase – Contains a row of data for each shipping rate scenario for a shipping method. See the **Parameters** tab of the Default Shipping method to see the type of data stored.

  • ShippingOption – Contains a row of data for each shipping option/provider. You can see this information on the **Overview** tab of a shipping provider's definition.

A shipping method can also be restricted (that is, not available) to configured restricted countries and regions/states associated with the shipping method. In addition, a shipping method can be restricted for certain types of payment. To match, for example, a country from a shipping address with the restricted countries associated with a shipping method, you need to know the IDs of the shipping country. To retrieve this information, use the CountryManager.

**Example:** Retrieve country shipping ID.



The CountryManager also returns regions. Regions map to either an addresses State or RegionCode properties.

**Example:** Iterating through a shipping method's restricted countries.



To retrieve the shipping rate for a shipping method, given the order's address and items in the cart, you need to call the shipping provider's GetRate method. This is required by the IShippingGateway, an interface all shipping providers must implement.

**Example:** Retrieving the shipping rate for each available shipment method with a cart.