Interface SlackTriggerNodeParameters

Source
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§

Source§

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

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":""}

Source§

readonly downloadFiles?: boolean

Whether to download the files and add it to the output

Source§

readonly options?: { resolveIds?: boolean; userIds?: unknown[] }

Default: {}

Source§

readonly trigger?: (
    | "message"
    | "any_event"
    | "app_mention"
    | "file_public"
    | "file_share"
    | "channel_created"
    | "team_join"
    | "reaction_added"
)[]

Default: []

Source§

readonly watchWorkspace?: boolean

Whether to watch for the event in the whole workspace, rather than a specific channel