interface SlackTriggerNodeParameters {
channelId?: {
mode: "id" | "list" | "url";
value: string;
};
downloadFiles?: boolean;
options?: { resolveIds?: boolean; userIds?: unknown[] };
trigger?: (
| "message"
| "any_event"
| "app_mention"
| "file_public"
| "file_share"
| "channel_created"
| "team_join"
| "reaction_added"
)[];
watchWorkspace?: boolean;
}Properties§
§§§§
readonly channel Id?: { ... }§
readonly download Files?: booleanWhether to download the files and add it to the output
readonly options?: { ... }Default: {}
readonly trigger?: (
| "message"
| "any_event"
| "app_mention"
| "file_public"
| "file_share"
| "channel_created"
| "team_join"
| "reaction_added"
)[]Default: []
readonly watch Workspace?: booleanWhether to watch for the event in the whole workspace, rather than a specific channel
The Slack channel to listen to events from. Applies to events: Bot/App mention, File Shared, New Message Posted on Channel, Reaction Added. Default: {"mode":"list","value":""}