Files
medusa-store/www/apps/docs/content/recipes/omnichannel.mdx
Shahed Nasser c28935b4e8 docs: update endpoints to use file-routing approach (#5397)
- Move the original guides for creating endpoints and middlewares to sub-sections in the Endpoints category.
- Replace existing guides for endpoints and middlewares with the new approach.
- Update all endpoints-related snippets across docs to use this new approach.
2023-10-19 15:56:26 +00:00

120 lines
5.2 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.
---
addHowToData: true
---
import DocCardList from '@theme/DocCardList';
import Icons from '@theme/Icon';
# Omnichannel Commerce
This document guides you through the different documentation resources that will help you build 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 should provide them with a good experience and handle orders consistently.
Medusas headless backend facilitates building omnichannel commerce, as your backend and storefront arent tightly coupled. You can also utilize plugins and Medusas sales channels feature to expand your business into other avenues like marketplaces and social commerce.
---
## Create Multiple Storefronts with One Backend
Youll likely build multiple webshops or mobile apps when creating omnichannel commerce. All these storefronts should be able to provide your customers with a similar experience and allow them to browse products and place orders.
Medusas headless backend allows all storefronts to interact with Store REST APIs to provide the same commerce functionalities. This separation also allows you to choose your tech stack for the different storefronts youre creating.
<DocCardList colSize={6} items={[
{
type: 'link',
href: '/development/fundamentals/architecture-overview',
label: 'Medusas Architecture',
customProps: {
icon: Icons['academic-cap-solid'],
description: 'Learn about Medusa\'s architecture and its ecosystem.',
}
},
{
type: 'link',
href: 'https://docs.medusajs.com/api/store',
label: 'Store REST APIs',
customProps: {
icon: Icons['academic-cap-solid'],
description: 'Check out available Store REST APIs in Medusa.',
}
},
]} />
---
## 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.
With Medusa, you can use the Sales Channels feature to set different product availability across sales channels. You can then integrate with Amazons seller program and use their APIs to push your products on Amazon. This integration can be achieved through a custom plugin you create and install on your Medusa backend.
Another channel that attracts customer sales is social media. Customers browsing a social media app can now find products and buy them. With an approach similar to what was mentioned above, you can create a plugin in your Medusa backend that integrates with social media apps to show your products and sell them to customers on the app.
<DocCardList colSize={6} items={[
{
type: 'link',
href: '/modules/sales-channels/overview',
label: 'Sales Channels',
customProps: {
icon: Icons['academic-cap-solid'],
description: 'Learn about the Sales Channel features.',
}
},
{
type: 'link',
href: '/development/plugins/create',
label: 'Create a Plugin',
customProps: {
icon: Icons['academic-cap-solid'],
description: 'Learn how to create a plugin.',
}
},
]} />
---
## Optimize Customer Experience
With Medusas modular architecture, businesses can focus on bringing their brands to life without restrictions.
You can implement the customer journey and design for your storefronts that leads to the best customer experience. The backend does not 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. This plugins functionality can be accessible to the storefronts connected to the Medusa backend.
For example, if youve integrated a search plugin like Algolia in the Medusa backend, the storefronts can utilize it through the Search Products API Route. Another example is installing the Stripe payment plugin on the backend and using it in your storefronts to make payments before placing an order.
<DocCardList colSize={6} items={[
{
type: 'link',
href: '/development/plugins/create',
label: 'Create a Plugin',
customProps: {
icon: Icons['academic-cap-solid'],
description: 'Learn how to create a plugin.',
}
},
{
type: 'link',
href: 'https://medusajs.com/plugins/',
label: 'Plugins Library',
customProps: {
icon: Icons['bolt-solid'],
description: 'Check out available community plugins.',
}
},
]} />
---
## Additional Development
You can find other resources for your omnichannel development in the [Medusa Development section](../development/overview.mdx) of this documentation.