Files
medusa-store/www/apps/docs/content/plugins/notifications/slack.md
Shahed Nasser fa7c94b4cc docs: create docs workspace (#5174)
* docs: migrate ui docs to docs universe

* created yarn workspace

* added eslint and tsconfig configurations

* fix eslint configurations

* fixed eslint configurations

* shared tailwind configurations

* added shared ui package

* added more shared components

* migrating more components

* made details components shared

* move InlineCode component

* moved InputText

* moved Loading component

* Moved Modal component

* moved Select components

* Moved Tooltip component

* moved Search components

* moved ColorMode provider

* Moved Notification components and providers

* used icons package

* use UI colors in api-reference

* moved Navbar component

* used Navbar and Search in UI docs

* added Feedback to UI docs

* general enhancements

* fix color mode

* added copy colors file from ui-preset

* added features and enhancements to UI docs

* move Sidebar component and provider

* general fixes and preparations for deployment

* update docusaurus version

* adjusted versions

* fix output directory

* remove rootDirectory property

* fix yarn.lock

* moved code component

* added vale for all docs MD and MDX

* fix tests

* fix vale error

* fix deployment errors

* change ignore commands

* add output directory

* fix docs test

* general fixes

* content fixes

* fix announcement script

* added changeset

* fix vale checks

* added nofilter option

* fix vale error
2023-09-21 20:57:15 +03:00

4.7 KiB
Raw Blame History

description, addHowToData
description addHowToData
Learn how to integrate Slack with the Medusa backend. Learn how to create and configure a Slack app and install the Slack plugin on the Medusa backend. true

Slack

In this documentation, you'll learn how to add the Slack plugin to your Medusa backend to start receiving order notifications.

Overview

When you add this plugin, the store owner can receive order notifications into their Slack workspace.

The notification contains details about the order including:

  • Customer's details and address
  • Items ordered, their quantity, and the price
  • Order totals including Tax amount.
  • Promotion details if there are any (this is optional and can be turned off).

The plugin registers a subscriber to the order.placed event. When an order is placed, the subscriber handler method uses the ID of the order to retrieve order details mentioned above.

Then, the order notification is sent to Slack using Webhooks. So, you'll need to create a Slack App, add it into your workspace, and activate Incoming Webhooks.


Prerequisites

Slack Account

To follow along with this guide, you need to have a Slack account with a connected workspace. If you dont have one, you can create a free account on Slack.

Medusa Backend

This tutorial assumes you already have a Medusa backend installed. If you dont, please follow along with the quickstart guide. The Medusa backend must also have an event bus module installed, which is available when using the default Medusa backend starter.


Create Slack App

The first step is to create a Slack app. This app will be connected to your workspace and will have Incoming Webhooks activated to receive notifications from the Medusa backend using a Webhook URL.

Go to Slack API and click Create app. This will take you to a new page with a pop-up. In the pop-up, choose From scratch.

Create Slack App

Youll then need to enter some info like the App name and the workspace it will be connected to. Once youre done, the app will be created.

Activate Incoming Webhooks

To activate Incoming Webhooks, choose Features > Incoming Webhooks from the sidebar. At first, it will be disabled so make sure to enable it by switching the toggle.

Incoming Webhooks

Add New Webhook

After activating Incoming Webhooks, on the same page scroll down and click on the Add New Webhook to Workspace button.

Add New Webhook

After that, choose the channel to send the notifications to. You can also choose a DM to send the notifications to. Once youre done click Allow.

Choose channel or DM

This will create a new Webhook with a URL which you can see in the table at the end of the Incoming Webhooks page. Copy the URL as youll use it in the next section.


Install Slack Plugin

The next step is to install Medusas Slack plugin into your Medusa backend.

Open the terminal in the Medusa backends directory and run the following command:

npm install medusa-plugin-slack-notification

After that, open medusa-config.js and add the new plugin with its configurations in the plugins array:

const plugins = [
  // ...,
  {
    resolve: `medusa-plugin-slack-notification`,
    options: {
      show_discount_code: false,
      slack_url: `<WEBHOOK_URL>`,
      admin_orders_url: `http://localhost:7001/a/orders`,
    },
  },
]
  • Make sure to change <WEBHOOK_URL> with the Webhook URL you copied after creating the Slack app.
  • The show_discount_code option enables or disables showing the discount code in the notification sent to Slack.
  • The admin_orders_url is the prefix of the URL of the order detail pages on your admin panel. If youre using Medusas Admin locally, it should be http://localhost:7001/a/orders. This will result in a URL like http://localhost:7001/a/orders/order_01FYP7DM7PS43H9VQ1PK59ZR5G.

Thats all you need to do to integrate Slack into Medusa!


See Also