Member Junction
    Preparing search index...

    SIP device credentials + codec for one softphone registration. Resolved upstream (MJ credential system / provider Configuration) from a RingCentral "Other Phone" (BYO-device) registration — never inlined at a call site. Maps 1:1 to the real Softphone constructor options.

    interface RingCentralSoftphoneConfig {
        authorizationId: string;
        codec?: "OPUS/16000" | "OPUS/48000/2" | "PCMU/8000";
        domain: string;
        ignoreTlsCertErrors?: boolean;
        outboundProxy: string;
        password: string;
        username: string;
    }
    Index

    Properties

    authorizationId: string

    SIP authorization id (the device's RC authorization id).

    codec?: "OPUS/16000" | "OPUS/48000/2" | "PCMU/8000"

    Codec to negotiate. Defaults to OPUS/16000 (clean wideband PCM16, the least-friction realtime path).

    domain: string

    SIP domain (e.g. sip.ringcentral.com).

    ignoreTlsCertErrors?: boolean

    Skip TLS cert validation (test/sandbox only — never in production).

    outboundProxy: string

    SIP outbound proxy (host:port, e.g. sip10.ringcentral.com:5096).

    password: string

    SIP auth password (resolved upstream).

    username: string

    SIP auth username (the device's phone number / extension).