Member Junction
    Preparing search index...

    Arguments to IWebexMeetingSdk.join — what the bot needs to get into a Webex meeting.

    interface WebexJoinArgs {
        AccessToken?: string;
        BotDisplayName: string;
        MeetingLink: string;
        MeetingNumber?: string;
        SiteUrl?: string;
    }
    Index

    Properties

    AccessToken?: string

    The OAuth bearer / bot access token authorizing the bot's Webex Meetings + Messaging calls. Resolved upstream via MJ's credential system; never inline secrets.

    BotDisplayName: string

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

    MeetingLink: string

    The Webex meeting link (the https://*.webex.com/meet/... / .../join/... URL).

    MeetingNumber?: string

    The parsed Webex meeting number / SIP address (the durable meeting coordinate behind the link), when resolved upstream. Used as a stable meeting identifier when the link is opaque.

    SiteUrl?: string

    The Webex site (org) the meeting belongs to, when joining cross-site.