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§

§readonly channelId?: { ... }

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

§readonly chatId?: { ... }

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 teamId?: { ... }

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

§readonly watchAllChannels?: boolean

Whether to watch for the event in all the available channels

§readonly watchAllChats?: boolean

Whether to watch for the event in all the available chats

§readonly watchAllTeams?: boolean

Whether to watch for the event in all the available teams