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

    Interface RoutingRuleTarget

    Where a routing rule sends the caller: { type: "direct", roomId } places every call into one fixed room; { type: "individual", roomPrefix } creates a fresh room for each call.

    interface RoutingRuleTarget {
        pin?: string;
        roomId?: string;
        roomPrefix?: SipRoomPrefix;
        type: "direct" | "individual";
    }
    Index
    pin?: string

    Optional room PIN.

    roomId?: string

    Fixed room id (for "direct").

    roomPrefix?: SipRoomPrefix

    How the per-call room id is generated (for "individual") — a strategy, not a literal prefix string.

    type: "direct" | "individual"