Files
medusa-store/www/apps/resources/app/recipes/omnichannel/page.mdx
T
Shahed Nasser 4fe28f5a95 chore: reorganize docs apps (#7228)
* reorganize docs apps

* add README

* fix directory

* add condition for old docs
2024-05-03 17:36:38 +03:00

108 lines
4.7 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.
import { AcademicCapSolid, BoltSolid } from "@medusajs/icons"
import { LearningPath } from "docs-ui"
export const metadata = {
title: `Omnichannel Commerce Recipe`,
}
# {metadata.title}
In this recipe, you'll find resources to guide you in building an omnichannel commerce 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'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.
<CardList itemsPerRow={2} items={[
{
href: "#",
title: "Medusas Architecture",
text: "Learn about Medusa's architecture and its ecosystem.",
startIcon: <AcademicCapSolid />,
showLinkIcon: false
},
{
href: "#",
title: "Store REST APIs",
text: "Check out available Store REST APIs in Medusa.",
startIcon: <AcademicCapSolid />,
showLinkIcon: false
},
]} />
---
## 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 plugin. Use the Sales Channel Module's features to set different product availability across sales channels. Then, in the custom plugin, integrate with Amazons seller program and use their APIs to push your products on Amazon.
Another channel that attracts customer sales is social media. You can create a plugin that integrates with social media apps to show your products and sell them to customers.
<CardList itemsPerRow={2} items={[
{
href: "#",
title: "Sales Channels",
text: "Learn about the Sales Channel Module.",
startIcon: <AcademicCapSolid />,
showLinkIcon: false
},
{
href: "#",
title: "Create a Plugin",
text: "Learn how to create a plugin.",
startIcon: <AcademicCapSolid />,
showLinkIcon: false
},
]} />
---
## Optimize Customer Experience
With Medusas modular architecture, businesses focus on bringing their brands to life without restrictions.
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 necessary to provide a better customer experience with a plugin. Storefronts then use the features provided by that plugin if they're exposed by API routes.
For example, if you integrate a search plugin like Algolia in the Medusa application, the storefronts use it through the [Search Products API Route](https://docs.medusajs.com/api/store#products_postproductssearch). Another example is installing the Stripe payment plugin in the Medusa application and using it in your storefronts to make payments before placing an order.
<CardList itemsPerRow={2} items={[
{
href: "#",
title: "Create a Plugin",
text: "Learn how to create a plugin.",
startIcon: <AcademicCapSolid />,
showLinkIcon: false
},
{
href: "#",
title: "Plugins Library",
text: "Check out available community plugins.",
startIcon: <BoltSolid />,
showLinkIcon: false
},
]} />
---
## Additional Development
Refer to other guides in the Medusa Resources or the Medusa Book for additional guidance during your development.