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§

§readonly channelId?: { ... }

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

§readonly downloadFiles?: boolean

Whether 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 watchWorkspace?: boolean

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