Fulfillment Concepts

In this document, you’ll learn about some basic fulfillment concepts.

Fulfillment Set#

A fulfillment set is a general form or way of fulfillment. For example, shipping is a form of fulfillment, and pick-up is another form of fulfillment. Each of these can be created as fulfillment sets.

A fulfillment set is represented by the FulfillmentSet data model. All other configurations, options, and management features are related to a fulfillment set, in one way or another.

Code
1const fulfillmentSets = await fulfillmentModuleService.createFulfillmentSets(2  [3    {4      name: "Shipping",5      type: "shipping",6    },7    {8      name: "Pick-up",9      type: "pick-up",10    },11  ]12)

Service Zone#

A service zone is a collection of geographical zones or areas. It’s used to restrict available shipping options to a defined set of locations.

A service zone is represented by the ServiceZone data model. It’s associated with a fulfillment set, as each service zone is specific to a form of fulfillment. For example, if a customer chooses to pick up items, you can restrict the available shipping options based on their location.

A diagram showcasing the relation between fulfillment sets, service zones, and geo zones

A service zone can have multiple geographical zones, each represented by the GeoZone data model. It holds location-related details to narrow down supported areas, such as country, city, or province code.


Shipping Profile#

A shipping profile defines a type of items that are shipped in a similar manner. For example, a default shipping profile is used for all item types, but the digital shipping profile is used for digital items that aren’t shipped and delivered conventionally.

A shipping profile is represented by the ShippingProfile data model. It only defines the profile’s details, but it’s associated with the shipping options available for the item type.

Was this page helpful?
Edit this page