Disclaimer

Your use of this download is governed by Stonebranch’s Terms of Use, which are available at https://www.stonebranch.com/integration-hub/Terms-and-Privacy/Terms-of-Use/

Overview

Microsoft Teams is a collaboration app that helps teams stay organized and have conversations. This Universal Extension provides the capability to monitor a Microsoft Teams channel for uploaded files and run job(s) and/or workflows accordingly.


Template NameExtension NameVersion
Microsoft Teams: Monitor Channelue-msteams-monitor1.0.3

Refer to the Changelog for version history information.

Software Requirements

This integration requires a Universal Agent and a Python runtime to execute the Universal Task. Requires Python version 3.7 or 3.11  

Software Requirements for Universal Agent

Both Windows and Linux agents are supported:

Software Requirements for Universal Controller

Universal Controller Version 7.0.0.0 and later.

This Universal Task requires that Universal Controller property Web Service Default Response Content (uc.web_service.response.content.default) is set to JSON.

Network and Connectivity Requirements

Azure Active Directory Requirements

An application must be registered in the Azure Active Directory. See official instructions on Quickstart: Register an application with the Microsoft identity platform

  1. Use as "Supported Account Types" option "Accounts in this organizational directory only".

  2. When registration finishes an Application (client) ID is generated (required as part of Extension Task configuration).

  3. Configure API permissions.

4. Create a client secret -> Add client secret (client secret is required as part of Extension Task configuration)

Key Features

This Universal Extension provides the following main features:

The scope is to support the exchange of files on a dedicated Microsoft Teams channel that will act as a service channel.

To share a file, a conversation is created with the file being attached. It is not expected that anyone will react or reply to this message.

Known Issues

This extension is subject to the limitations of MS Graph API.

For more technical details, please refer to Microsoft Graph REST API v1.0 chatMessage: delta

Import the Universal Template

To use this downloadable Universal Template, you first must perform the following steps:

  1. This Universal Task requires the Resolvable Credentials feature. Check that the Resolvable Credentials Permitted system property has been set to true.
  2. To import the Universal Template into your Controller, follow the instructions here.
  3. When the files have been imported successfully, refresh the Universal Templates list; the Universal Template will appear on the list.

Configure Universal Task

For the new Universal Task type, create a new task, and enter the task-specific details that were created in the Universal Template.

Input Fields

The input fields for this Universal Extension are described below.

Field

Input type

Default value

Type

Description

Action

Required

Monitor Attachments

Choice

The action performed upon the task execution

Client Credentials

Required

-

Credentials

The credentials for the application registered in the Azure Active Directory.

They are comprised of:

  • Application (client) ID

  • Client secret: The client secret issued to the client during Application registration process

Resource Owner Credentials

Required

-

Credentials

The user's credentials for Microsoft 365.

They are comprised of:

  • username

  • password

Channel Identifier

Required

Channel Link

Choice

The Type of identifier for the channel.

For example: Channel Link to provide the URL

Channel Link

Optional

-

Text

The URL link of the required channel.

Required if Channel Identifier is "Channel Link".

Interval (seconds)

Optional

60

Integer

The Message Polling Interval in seconds.

Universal Controller URL

Required

-

Text

Universal Controller URL.

For example: http://192.168.88.10:8080/uc

Universal Controller Credentials

Required

-

Credentials

The Universal Controller Credentials.

The Credentials must have “Web Service Access” Permissions.

Launch Task

Required

-

Text

The name of the Task to be launched in the Universal Controller.

The task will always be launched with the Task variable {attachment_urls} which contains the SharePoint URLs list of the attachments in JSON format.

Offset Token

Optional

-

Large Text

Tracker for the last read message from the channel.

It can be set to the previous instance run execution with the output parameter offset_token. By setting it, it allows it to resume from the last read message.

Skip MessagesOptional0IntegerThe number of messages to be skipped at the start of the Universal Task.

Launch Task Variables

The Variables that are passed to the launched task are described below.

Parameter

Type

Description

attachment_urls

Large Text (JSON)

The list of the attachment URLs (as SharePoint URLs) in JSON format.

attachment_names

Text (JSON)

The list of the attachment names (as listed on the message) in JSON format.

message_summary

Text (JSON)

A summary of the message information in JSON format: modified date, sender, and message ID.

Example: attachment_urls

{
  "contentUrls": [ "https://uacextensions.sharepoint.com/sites/my_site/Shared%20Documents/General/my_file.txt" ]
}

Example: attachment_names

{
  "names": [ "my_file.txt" ]
}

Example: message_summary

{
  "lastModifiedDateTime": "2021-09-21T16:09:29.236Z",
  "id": "1632240161921",
  "from": {
    "user": {
      "displayName": "John Doe"
     }
  }
}

Task Output

Output Fields

The output parameters are set after every message processing. If they are 'preserved on re-run', they prevent a re-run of the task instance from restarting from scratch.

The output fields for this Universal Extension are described below.

Field

Type

Preserved on re-run

Description

Last Modified Date Time

Text

True

The last modified date time on the last modified message (the maximum value in case of 'Run forever').

Offset Token

Large Text

True

Tracker for the last read message from the channel.

Outstanding Message

Boolean

True

Shows whether there are more messages to be read from the channel.

Launched Task

Text

True

The sysID (32 char) of the last launched task as returned by UAC REST API.

Message Count

Text

False

The number of fetched messages since the start of the monitoring (task instance).

Task Count

Text

False

The number of launched tasks since the start of the monitoring (task instance).

Exit Codes

The exit codes for this Universal Extension are described below.

Exit Code

Status Classification Code

Status Classification Description

Status Description

2

AUTHENTICATION_ERROR

Bad Authentication data

AUTHENTICATION_ERROR: Incorrect username or password.

3

AUTHORIZATION_ERROR

Insufficient Permissions

AUTHORIZATION_ERROR: The authorization credentials provided for the request are invalid.

20

FOREIGN_API_REQUEST_ERROR

Bad request to third-party API

FOREIGN_API_REQUEST_ERROR: Bad request to Microsoft API.

21

FOREIGN_API_RESPONSE_ERROR

Validation error response from third-party API

FOREIGN_API_RESPONSE_ERROR: Microsoft API response validation error.

22

LAUNCH_TASK_EXEC_ERROR

Error while launching a Task in UAC REST API

LAUNCH_TASK_EXEC_ERROR: Error while launching a task.

Task Examples

Follow the steps below to create a Task.

  1. Give the Task a name.

  2. Select an active agent of version 7.0.0.0 or higher for the task to run on.

  3. Select the action.

  4. Set your Client Credentials.

  5. Set your Resource Owner Credentials.

  6. Set your Universal Controller Credentials.

  7. Select the Channel Identifier.

  8. Enter the required Channel Link. An easy way to retrieve this is from the Microsoft Teams UI:




  9. Enter the Launch Task name.

  10. Enter the Universal Controller URL.

  11. Enter the Offset Token from the previous instance execution.

  12. Enter the required Interval in seconds.




Example with the Usage of Offset Token in an Instance Re-run

Create a global variable from inside a Task.

Set the value of the global variable to be set, when the instance finishes, with the value of the task instance variable as below. ('ops_msteams_monitor_offset_token' is the task instance variable name for the tracker for the last read message from the channel.)



${ops_msteams_monitor_offset_token}


2. In the Task, set the global variable value in the Offset Token field.

The offset is kept between the task executions and allows to resume from the last read message on that channel.

Document References

This document references the following documents:

Name

Location

Description

Universal Templates

Creating a Universal Template

User documentation for creating Universal Templates in the Universal Controller user interface.

Universal Tasks

Creating a Universal Task

User documentation for creating Universal Tasks in the Universal Controller user interface.

Credentials

Credentials

User Documentation for Credentials Details Field Description.

Launch a Task

Task Web Services

User Documentation for Launching a Task.

Force Finish/Cancel

Manually Running and Controlling Tasks

User Documentation for Cancelling a Task.

Azure Active Directory

https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app

Register an application with the Microsoft identity platform.

Properties

Properties

User Documentation for all Universal Controller properties.

Changelog

ue-msteams-monitor-1.0.3 (2024-03-07)

Enhancements

ue-msteams-monitor-1.0.2 (2022-03-30)

Enhancements

ue-msteams-monitor-1.0.1 (2021-12-13)

Enhancements


Fixes

ue-msteams-monitor-1.0.0 (2021-10-14)

Initial Release