Member Junction
    Preparing search index...

    Arguments to ITeamsMeetingSdk.join — what the bot needs to get into a Teams meeting.

    interface TeamsJoinArgs {
        AccessToken?: string;
        BotDisplayName: string;
        JoinUrl: string;
        TenantId?: string;
        ThreadId?: string;
    }
    Index

    Properties

    AccessToken?: string

    The OAuth bearer / application token authorizing the bot's Graph + ACS calls. Resolved upstream via MJ's credential system; never inline secrets.

    BotDisplayName: string

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

    JoinUrl: string

    The Teams meeting join URL (the https://teams.microsoft.com/l/meetup-join/... link).

    TenantId?: string

    The Azure tenant id the meeting belongs to, when joining cross-tenant.

    ThreadId?: string

    The parsed meeting thread id (the chat/conversation id behind the join URL), when resolved upstream. Used for posting to the meeting chat and as a stable meeting coordinate.