Skip to main content
Skip table of contents

How to add Move Work Forward with Jira app to the Microsoft Teams channels and teams?

To receive notifications to a particular Microsoft Teams channel with 2-way integration you need to add our companion app Move Work Forward with Jira (bot) to the team where this channel is located.

Add the bot to Microsoft Teams channel

  1. Open Microsoft Teams and go to Apps section.

  2. Find Move Work Forward with Jira (or follow the link) and click on Add to a team.

  3. Pick the team/channel where you want to receive notifications. Click on Set up a bot.

  4. After you will receive the welcome message to the channel you picked.

Despite the fact that the channel was indicated in the search, the Move Work Forward with Jira app (bot) will be added to the entire team (to all channels of the team).

Additionally, before adding the bot to a particular team you can check the list of teams previously installed on the Move Work Forward with Jira:

  1. Go to Apps section. Click on Manage your apps button in the bottom left corner.

  2. Find Move Work Forward with Jira. Click on it to open the list of teams.

  3. Also, you can remove the bot from the team by clicking on the “bin” button.

Add the bot to all new teams automatically

Move Work Forward with Jira app can be automatically installed when a user creates a new Microsoft Teams team. Custom templates in Microsoft Teams can help with this.

Create a custom team template in Microsoft Teams

Microsoft Teams supports creating and using custom templates to streamline the process of setting up new teams with predefined settings, channels, apps, and configurations. Custom templates help save time when creating teams for different purposes within your organization.

Here's how to create a custom template in Microsoft Teams which includes the Move Work Forward with Jira app:

  1. Log in to the Microsoft Teams Admin Center using your administrator credentials.

  2. In the left navigation menu, click on Teams and select Team template.

  3. Then click +Add to start creating a new template.

  4. In the Template settings section, complete the following fields and then select Next:

    1. Template name;

    2. Template short and long descriptions;

    3. Locale visibility.

  5. In the channels, tabs, and apps section, add any channels and Move Work Forward with Jira tab . Click on Submit. Then add Move Work Forward with Jira in Apps section. Also, we recommend adding Confluence Connector by MWF app to stay informed about Confluence content updates without switching between platforms.

  6. Your new template is displayed in the Team templates list. New teams created with this template will have installed Move Work Forward with Jira and Confluence Connector by MWF apps by default.

Create a team using the Microsoft Graph APIs

Microsoft Graph is a comprehensive API platform that allows developers to access data and perform various operations within Microsoft 365 services, including Teams. You can create Teams with specific settings, including pre-installed Move Work Forward with Jira app and tab, permissions and configurations tailored to your organization's needs.

Here is an example of team with installed Confluence Connector by MWF and Move Work Forward with Jira apps by default:

CODE
{
    "template@odata.bind": "https://graph.microsoft.com/v1.0/teamsTemplates('standard')",
    "displayName": "MWF Team",
    "description": "Apps provided my Move Work Forward",
    "channels": [
        {
            "displayName": "MWF Channel",
            "isFavoriteByDefault": true,
            "description": "This channel contains apps provided my Move Work Forward.",
            "tabs": [
                {
                    "teamsApp@odata.bind": "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/39d845a0-3fa2-4fba-acc2-61afe40cfcea",
                    "displayName": "Jira"
                }
            ]
        }
    ],
    "installedApps": [
        {
            "teamsApp@odata.bind": "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/7c82be72-f9fb-44c9-930f-8064cd849d7d"
        },
        {
            "teamsApp@odata.bind": "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/39d845a0-3fa2-4fba-acc2-61afe40cfcea"
        }
    ]
}

The sample code will create a new team called MWF Team with a channel that has both the Confluence Connector by MWF and Move Work Forward with Jira apps automatically installed.

Updated:

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.