@videosdk.live/server-sdk
    Preparing search index...

    Interface CreateRoomOptions

    Options for RoomsResource.create.

    interface CreateRoomOptions {
        allowedParticipantIds?: string[];
        autoCloseConfig?: AutoCloseConfigInput;
        autoStartConfig?: AutoStartConfig;
        customRoomId?: string;
        geoFence?: GeoFence;
        multiComposition?: { hls?: boolean; recording?: boolean; rtmp?: boolean };
        webhook?: RoomWebhookInput;
    }
    Index
    allowedParticipantIds?: string[]

    Restrict which participant ids may join.

    autoCloseConfig?: AutoCloseConfigInput

    Auto-close behavior when the session ends.

    autoStartConfig?: AutoStartConfig

    Compositions to start automatically when a session begins.

    customRoomId?: string

    Caller-supplied stable id. Creation is idempotent on this value.

    geoFence?: GeoFence

    Region to pin the room to. Falls back to the API key's region.

    multiComposition?: { hls?: boolean; recording?: boolean; rtmp?: boolean }

    Independently start multiple compositions of the same type.

    Webhook subscription for room/session events.