@jambonz/sdk
    Preparing search index...

    Interface ConferenceVerb

    interface ConferenceVerb {
        verb: "conference";
        id?: string;
        name: string;
        beep?: boolean;
        memberTag?: string;
        speakOnlyTo?: string;
        startConferenceOnEnter?: boolean;
        endConferenceOnExit?: boolean;
        endConferenceDuration?: number;
        maxParticipants?: number;
        joinMuted?: boolean;
        actionHook?: ActionHook;
        waitHook?: ActionHook;
        statusEvents?: string[];
        statusHook?: ActionHook;
        enterHook?: ActionHook;
        record?: Record<string, unknown>;
        listen?: Omit<ListenVerb, "verb">;
        distributeDtmf?: boolean;
    }
    Index

    Properties

    verb: "conference"
    id?: string
    name: string

    Conference room name.

    beep?: boolean

    Beep on join/leave.

    memberTag?: string

    Tag to identify this participant.

    speakOnlyTo?: string

    Whisper to specific participant by tag.

    startConferenceOnEnter?: boolean

    Start conference when this participant joins.

    endConferenceOnExit?: boolean

    End conference when this participant leaves.

    endConferenceDuration?: number

    Max conference duration in seconds.

    maxParticipants?: number

    Max participants allowed.

    joinMuted?: boolean

    Join muted.

    actionHook?: ActionHook

    Webhook when participant leaves.

    waitHook?: ActionHook

    Webhook while waiting for conference to start.

    statusEvents?: string[]

    Conference event types to receive.

    statusHook?: ActionHook

    Webhook for conference status events.

    enterHook?: ActionHook

    Webhook when participant enters.

    record?: Record<string, unknown>

    Conference recording config.

    listen?: Omit<ListenVerb, "verb">

    Audio streaming config.

    distributeDtmf?: boolean

    Distribute DTMF to all participants.