Files
medusa-store/www/apps/resources/app/recipes/omnichannel/page.mdx
T
Shahed Nasser 009d00f27d docs: redesign table of content (#12647)
* implement toc

* added to projects

* fixes and adapt for references

* added product frontmatter

* remove action menu from 404 pages
2025-05-30 16:55:36 +03:00

110 lines
4.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
products:
- sales channel
---
import { AcademicCapSolid, BoltSolid } from "@medusajs/icons"
export const metadata = {
title: `Omnichannel Commerce Recipe`,
}
# {metadata.title}
This recipe provides the general steps to build an omnichannel store with Medusa.
## Overview
Merchants selling across different channels need an efficient way to manage their commerce data and operations across these channels. Omnichannel commerce solves this problem by allowing merchants to support multiple channels through a single system while maintaining layers of separation.
Omnichannel commerce also provides customers a seamless shopping experience, regardless of where theyre shopping. Whether theyre buying your products from your online store, a marketplace like Amazon, or through social media, you provide them with a good experience and handle orders consistently.
Medusas modular architecture facilitates building omnichannel commerce, as your server and storefront arent tightly coupled. You can also use the [Sales Channel Module](../../commerce-modules/sales-channel/page.mdx)'s features to expand your business into other avenues like marketplaces and social commerce.
---
## Create Multiple Storefronts with One Server
When creating an omnichannel commerce, you build multiple webshops or mobile apps. All these storefronts should provide your customers with a similar experience, allow them to browse products, and place orders.
Medusa's commerce features are available as REST APIs that storefronts can access to provide these features for customers. This separation also gives you freedom in choosing the tech stack of the storefronts youre creating.
<Card
href="!api!/store"
title="Store REST APIs"
text="Check out available Store REST APIs in Medusa."
icon={AcademicCapSolid}
/>
---
## Integrate with Marketplaces and Social Commerce
Businesses are no longer bound to sell in their stores. They can reach their customers through their different shopping channels.
One example is marketplaces like Amazon. Customers searching through Amazon to find products are inadvertently searching through many third-party stores connected to Amazons marketplace.
You can implement this example in Medusa with the Sales Channel Module and a custom module. Use the Sales Channel Module's features to set different product availability across sales channels.
Then, in the custom module, integrate with Amazons seller program. You can then build workflows that sync your products with Amazons marketplace.
Another channel that attracts customer sales is social media. You can create a custom module that integrates with social media apps to show your products and sell them to customers.
<CardList items={[
{
href: "/commerce-modules/sales-channel",
title: "Sales Channels",
text: "Learn about the Sales Channel Module.",
icon: AcademicCapSolid,
},
{
href: "!docs!/learn/fundamentals/modules",
title: "Create a Module",
text: "Learn how to create a module.",
icon: AcademicCapSolid,
},
]} />
<Card
href="!docs!/learn/fundamentals/workflows#1-create-workflow"
title="Create a Workflow"
text="Learn how to create a workflow."
icon={AcademicCapSolid}
className="mt-1"
/>
---
## Optimize Customer Experience
Implement the customer journey and design for your storefronts that leads to the best customer experience. The Medusa application doesn't impose any restrictions on how the frontend is built.
Medusas architecture also makes it easier to integrate any third-party services to provide a better customer experience:
- Create a module that integrates the third-party service.
- Build a workflow that performs actions spanning across the third-party service and your Medusa application.
- Expose the workflow's features in API routes.
- Send requests to these API routes from your storefront.
<CardList items={[
{
href: "!docs!/learn/fundamentals/modules",
title: "Create a Module",
text: "Learn how to create a module.",
icon: AcademicCapSolid,
},
{
href: "!docs!/learn/fundamentals/workflows",
title: "Create a Workflow",
text: "Learn how to create a workflow.",
icon: AcademicCapSolid,
},
]} />
<Card
href="!docs!/learn/fundamentals/api-routes"
title="Create API Route"
text="Learn how to create an API route."
icon={AcademicCapSolid}
className="mt-1"
/>