V3ExtensionsMSTeamsChannelConfiguration
Defines a mapping from a Squadcast Team/Service to a specific MS Teams channel.
Example Usage
import { V3ExtensionsMSTeamsChannelConfiguration } from "@solarwinds/squadcast-sdk-typescript/models";
let value: V3ExtensionsMSTeamsChannelConfiguration = {
squadcastTeamId: "<id>",
squadcastTeamName: "<value>",
isAllServices: false,
services: [],
msteamsChannelId: "<id>",
msteamsChannelName: "<value>",
};Fields
Field
Type
Required
Description
id
string
➖
The MongoDB ObjectID for this specific channel configuration entry.
squadcastTeamId
string
✔️
The MongoDB ObjectID of the corresponding team in Squadcast.
squadcastTeamName
string
✔️
The name of the corresponding team in Squadcast.
isAllServices
boolean
✔️
If true, alerts for all services in the Squadcast Team are sent to this channel.
services
✔️
An array of specific services to route to this channel. Used when 'is_all_services' is false.
msteamsChannelId
string
✔️
The unique identifier of the target channel in MS Teams.
msteamsChannelName
string
✔️
The display name of the target channel in MS Teams.
Last updated