Interface MicrosoftTeamsTriggerNodeParameters

Source
interface MicrosoftTeamsTriggerNodeParameters {
    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§

Source§

readonly channelId?: { mode: "id" | "list" | "url"; value: string }

Select a channel from the list, enter an ID or a URL Default: {"mode":"list","value":""}

Source§

readonly chatId?: { mode: "id" | "list" | "url"; value: string }

Select a chat from the list, enter an ID or a URL Default: {"mode":"list","value":""}

Source§

readonly event?:
    | "newChannel"
    | "newChannelMessage"
    | "newChat"
    | "newChatMessage"
    | "newTeamMember"

Select the event to trigger the workflow Default: "newChannelMessage"

Source§

readonly teamId?: { mode: "id" | "list" | "url"; value: string }

Select a team from the list, enter an ID or a URL Default: {"mode":"list","value":""}

Source§

readonly watchAllChannels?: boolean

Whether to watch for the event in all the available channels

Source§

readonly watchAllChats?: boolean

Whether to watch for the event in all the available chats

Source§

readonly watchAllTeams?: boolean

Whether to watch for the event in all the available teams