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

    Interface SipRoutingRule

    A routing rule: binds provisioned phone numbers to a dispatch target (room/agent).

    interface SipRoutingRule {
        agentId?: string;
        agentMetadata?: Record<string, unknown>;
        allowedIpAddresses?: string[];
        allowedNumbers?: string[];
        apiKey?: string;
        createdAt?: string;
        dtmf?: boolean;
        headers?: Record<string, string>;
        headersToAttributes?: Record<string, string>;
        hidePhoneNumber?: boolean;
        id: string;
        includeHeaders?: SipIncludeHeaders;
        name?: string;
        noiseCancellation?: boolean;
        numbers?: string[];
        recording?: boolean;
        room?: SipRoomConfig;
        tags?: string[];
        type?: SipDirection;
        updatedAt?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index
    agentId?: string
    agentMetadata?: Record<string, unknown>
    allowedIpAddresses?: string[]
    allowedNumbers?: string[]
    apiKey?: string
    createdAt?: string
    dtmf?: boolean
    headers?: Record<string, string>

    Outbound rules only.

    headersToAttributes?: Record<string, string>

    Inbound rules only.

    hidePhoneNumber?: boolean
    id: string
    includeHeaders?: SipIncludeHeaders
    name?: string
    noiseCancellation?: boolean
    numbers?: string[]
    recording?: boolean
    tags?: string[]
    updatedAt?: string