Most Popular
Courier is a notification service that centralizes all of your templates and messaging channels in one place which increases visibility and reduces engineering time.
Sign-up
Messaging apps are essential for internal collaboration and critical notifications such as reminders, alerts, and other time-sensitive updates. While integrating with the Slack and Microsoft APIs is fairly straightforward, implementing these tools as a part of a full-featured notification system that embeds with your app experience can be far more daunting.
In this article, we'll show you how to send notifications via Slack and Microsoft Teams, using Courier to make these tools a seamless part of how your app communicates with users.
pip install trycourier
commandHead over to the Notification Designer and create a new notification. Once you have created the notification, you will be able to select your channels. Here you can add Slack, Teams, and/or any other channels you would like to send with.
Click on any of the channels to customize your message. Once you have created your message, you can use the drag-and-drop "Library" on the left side to recreate the message for the remaining channels.
Click on the settings (gear) icon next to the template name (top right) to access the Notification ID, which you will need later to send this message.
Step 1: Add the Slack integration to Courier
First, head to the Slack channel in Courier https://app.courier.com/channels/slack and click "Install Provider". If you only want to send with Teams, you can skip to the “Send with Microsoft Teams” section.
Step 2: Create a Slack App
Navigate to the Slack Apps page and log into Slack. Click the Create an App button and provide your App Name as depicted below.
Step 3: Add OAuth Permission and Scopes
Define the permissions that your Slack App is authorized to do.
To do so, navigate to the OAuth & Permissions page in the sidebar menu and select the following options from the Scopes section:
Afterward, click the Install App to Workspace or Reinstall App button at the top of the page. This will generate an output -"Bot User OAuth Token" as depicted below, which will be needed later.
Step 4: Send a Slack DM with Python
Add the code snippet below to your codebase (e.g. index.py
) and update the following properties:
access_code
: replace xoxb-abcd
with the Bot User OAuth Tokenexample@gmail.com
with your user's email address (this is the email associated with the recipient's Slack Account)85S5NWXJVQ4GN8J21JSKV3JVCSV2
with your Notification ID from the first part of this tutorial1from trycourier import Courier2client = Courier(auth_token="<auth-token>")34resp = client.send_message(5message={6"to": {7"slack": {8"access_token": "xoxb-abcd",9"email": "example@gmail.com",10},11},12"template": "85S5NWXJVQ4GN8J21JSKV3JVCSV2",13"data": {14},15}16)17print(resp['requestId'])
Execute the Python script to see your notification popup in the user's Slack direct message!
Check your Courier logs for errors if your user did not receive the message.
We can now try sending the same message via Teams. If you only want to send with Slack, you can skip to the “Routing to multiple channels” section.
Step 1: Sign up for a Microsoft 365 Developer Account
If you do not have a Microsoft 365 developer account, follow the instructions from this guideline to create an account. If you already have an account, you can skip this step.
Step 2: Create a Teams App
Create a new App in Teams. You will need to install the Developer Portal from the Team Apps.
After installing the Developer Portal, navigate to the Apps tab and click the New App button. Then, you will get prompted to enter the application name.
After clicking the Add button, you will be redirected to a new window where you can see the App ID. Make sure to copy the App ID for later use.
Then, click App features from the left menu and click on the tile named Bot. It will open a new window for selecting a bot and bot scopes.
If you do not have a bot created already, follow these steps to create a new one. Also, make sure to save the password generated during the process. Keep the Messaging endpoint blank for the moment.
Step 3: Deploy the bot
Now you need to deploy the App to create the messaging endpoint. For that, open the Microsoft Teams Bot Starter Repo and click the Deploy to Netlify button. There, you will have to connect to your GitHub account and enter your App ID (Bot ID), App Password, Courier Auth Token, and a name for the repo.
Once the site is deployed, copy your site URL since you need it to finish installing the bot.
Step 4: Install the bot
Now, go back to the Tools > Bot Management tab in Developer Portal and select the created bot to finalize the installation process. There, select the Configure option and copy the site URL to the Bot endpoint address field.
Then, select the Channels option from the left menu and tick the Microsoft Teams option.
Step 5: Add the Teams integration to Courier
Now, you need to create a Teams integration in Courier. For that, navigate to the Channels tab and select Microsoft Teams from the options. Then, it will show a window like the one below. Enter the App ID, App Password and click the Install Provider button.
Step 6: Sending a Simple Teams Notification with Python
Add the code snippet below to your codebase (e.g. index.py ) and update the following properties:
<auth-token>
with your Courier API keyconversation_id
: get the conversation id from threadId query parameter from the URL after opening Microsoft Teams in the browserservice_url
: the service URL associated with that Microsoft Teams tenant (if you are located in the Americas Region, the service url is https://smba.trafficmanager.net/amer)tenant_id
: go to https://teams.microsoft.com/?tenantId and copying the value from the redirected URL tenantId query parameter, or click the three dots next to your Team and click Get link to team to find a link with the tenantId parameter1from trycourier import Courier2client = Courier(auth_token="<auth-token>")34resp = client.send_message(5message={6"to": {7"ms_teams": {8"conversation_id": "Yl2wJmlmFQkc65UAg0I2kJyCnPJlXvIM4Q3XSrDBZnQ1",9"tenant_id": "aac0c564-6c5e-4b05-8dc3-408087f77f76",10"service_url": "https://smba.trafficmanager.net/amer",11},12},13"template": "M79W7S9TRYM04CM634A805T8SYKM",14"data": {15},16}17)18print(resp['requestId'])
Finally, you can run the python script, and you will see a notification in your Team channel.
Microsoft Teams Resources
Courier's multi-channel functionality allows you to send notifications across multiple channels, including email, SMS, push notifications, voice, chatbots, and social media platforms, using a single API.
For example, if you want to send an urgent alert to your team, you would use Courier to send this alert as an email, as well as a Slack or Teams notification. As you can see below, Courier supports a large selection of Email, SMS, chat, and push notification providers.
Let’s update the notification template to send across four channels: email, SMS, Slack, and Teams. First, add email and SMS channels to the template and make sure they both also have the same content as the previous two (remember, you can use the Library to drop in pre-built content blocks).
Next, update the Settings of each channel so that “Always send to” is toggled on (away from “Best Of”) for each of the four channels listed.
1from trycourier import Courier2client = Courier(auth_token="<auth-token>")34resp = client.send_message(5message={6"to": {7"slack": {8"access_token": "xoxb-abcd",9"email": "example@gmail.com",10},11"ms_teams": {12"conversation_id": "85S5NWXJVQ4GN8J21JSKV3JVCSV2",13"tenant_id": "aac0c564-6c5e-4b05-8dc3-408087f77f76",14"service_url": "https://smba.trafficmanager.net/amer",15},16},17"template": "Z5N9D2J8DSMBKEHWF27AEEF6J822"18}19)20print(resp['requestId'])
You can also decide whether you actually want to send to all four channels or only specific ones. “Best of” means that Courier will send to one channel out of all that are listed. E.g. if you list Slack as “Always send to”, but have email and SMS as “Best of”, Courier will send a Slack message and attempt to send an email. If the email fails to deliver for any reason, Courier will then reroute to SMS. This means it will only send an SMS if and when email fails.
If you prefer a visual workflow, you can create an automation template within Courier.
Create a new Automation, select a schedule Trigger, and add a Send step for your notification. We will update the Type to "Date" and Date to the specific date/time this message should be sent.
In the Send step, select JSON and use the Editor to add the recipient information. In the editor, click "+ Add field" and add slack as an Object. Then click "+Add nested field" and add access_token
and email
with the appropriate values from the code above.
The notification template will automatically send to all selected channels.
Head over to the Automation and, in the JSON editor of the Send step, click "+ Add field" and add ms_teams as an Object. Then click "+Add nested field" and add conversation_id
, tenant_id
, and service_id
, with the appropriate values from the code above.
This automation will now have the required user profile data to send to both Slack and MS Teams. If you also want to send to an email or SMS, edit the JSON object to add field for "email"
and "phone_number"
with the appropriate values.
Automating notifications in team communication platforms such as Slack and Teams can significantly improve team productivity and communication. However, building automated notifications from scratch can be complex and time-consuming. That's where Courier comes in with its easy-to-use Python SDK that allows developers to send notifications to multiple channels with just a few lines of code.
By following the steps outlined in this article, you can set up notification automation with Courier and Python for both Slack and Teams. Additionally, you can leverage Courier's multi-channel functionality to integrate other applications and channels into your notification system.
1. What is Courier?
Courier connects communication APIs, data, and development tools that your team already uses to deliver a best-in-class notification system that will trigger messages from your app at just the right time, using just the right channel. It provides powerful API primitives and reusable UI components for building, plus no-code tools for designing templates and communication sequences.
2. What is Slack?
Slack is a cloud-based messaging platform that enables teams to communicate and collaborate in real-time. It is known for its user-friendly interface and extensive third-party integrations, making it a highly customizable platform for teams of all sizes. Slack allows users to easily organize their conversations into channels, share files, and collaborate with other team members. It also offers multiple app integrations, including project management and automation tools.
3. What is Microsoft Teams?
Microsoft Teams is another popular communication and collaboration platform that is part of the Microsoft Office 365 suite. It enables teams to chat, share files, and collaborate in real time, both synchronously and asynchronously. With features such as video conferencing, screen sharing, and group chats, Microsoft Teams is ideal for businesses and organizations that require a comprehensive and centralized collaboration platform.
4. Missing Provider Support error message
If your message did not go through, check your Courier logs. For a "MISSING_PROVIDER_SUPPORT" error message, you will need to double-check if the Slack and/or Teams channels were installed properly in Courier. Try removing the channel(s) (go to the channel and click "Remove Channel" at the bottom of the page) that is causing the error and then adding it again.
Courier is a notification service that centralizes all of your templates and messaging channels in one place which increases visibility and reduces engineering time.
Sign-up
How to Set Up Automatic Push Notifications Based on Segment Events
Push notifications have carved their own niche as a powerful tool for continuous user engagement. Regardless of whether an app is actively in use, they deliver your messages straight to your user's device. Two key players that can combine to enhance your push notification strategy are Segment and Courier. In this tutorial, we show you how to set up Courier to listen to your Segment events and then send push notifications to an Android device based on data from these events.
Sarah Barber
November 17, 2023
How to Send Firebase Notifications to iOS Devices Using Courier
This tutorial explains how to send push notifications to iOS devices from your iOS application code using Firebase FCM and Courier’s iOS SDK.
Martina Caccamo
November 01, 2023
Free Tools
Comparison Guides
Send up to 10,000 notifications every month, for free.
Get started for free
Send up to 10,000 notifications every month, for free.
Get started for free
© 2025 Courier. All rights reserved.