Member Junction
    Preparing search index...

    Arguments to ISlackHuddleSdk.join — what the bot needs to get into a huddle.

    interface SlackJoinArgs {
        BotDisplayName: string;
        BotToken?: string;
        ChannelId: string;
        HuddleId?: string;
        TeamId?: string;
    }
    Index

    Properties

    BotDisplayName: string

    The display name the bot appears as in the huddle participant list.

    BotToken?: string

    The OAuth bot token authorizing the Slack Web API + Events calls. Resolved upstream via MJ's credential system; never inline secrets.

    ChannelId: string

    The Slack channel id the huddle is hosted in (parsed from the huddle link / supplied directly).

    HuddleId?: string

    The huddle / huddle-thread id, when resolved upstream. Used for posting and as a stable coordinate.

    TeamId?: string

    The Slack team / workspace id, when joining a specific workspace. Resolved upstream.