interface MicrosoftTeamsTriggerNodeParameters {
authentication?:
| "microsoftEntraServicePrincipalApi"
| "microsoftOAuth2Api"
| "microsoftTeamsOAuth2Api";
channelId?: {
mode: "id"
| "list"
| "url";
value: string;
};
chatId?: { mode: "id"
| "list"
| "url"; value: string };
event?:
| "newChannel"
| "newChannelMessage"
| "newChat"
| "newChatMessage"
| "newTeamMember";
teamId?: { mode: "id"
| "list"
| "url"; value: string };
watchAllChannels?: boolean;
watchAllChats?: boolean;
watchAllTeams?: boolean;
}
Properties§
§
§
§
§
§
§
§
§
readonly authentication?:
| "microsoftEntraServicePrincipalApi"
| "microsoftOAuth2Api"
| "microsoftTeamsOAuth2Api"
readonly channel Id?: { ... }
Select a channel from the list, enter an ID or a URL Default: {"mode":"list","value":""}
readonly chat Id?: { ... }
Select a chat from the list, enter an ID or a URL Default: {"mode":"list","value":""}
readonly event?:
| "newChannel"
| "newChannelMessage"
| "newChat"
| "newChatMessage"
| "newTeamMember"
Select the event to trigger the workflow Default: "newChannelMessage"
readonly team Id?: { ... }
Select a team from the list, enter an ID or a URL Default: {"mode":"list","value":""}
readonly watch All Channels?: boolean
Whether to watch for the event in all the available channels
readonly watch All Chats?: boolean
Whether to watch for the event in all the available chats
readonly watch All Teams?: boolean
Whether to watch for the event in all the available teams
Default: "microsoftTeamsOAuth2Api"