Create your customized white-label softphone solution with Cloud Softphone. Design, build, and deploy your VoIP app quickly.
White Label Softphone →Try LinkUp for a custom white-label video conferencing solution. Add your branding elements to the user interface for a unique experience.
White Label Video Conferencing →Groundwire & Acrobits Softphone: softphone app solutions designed for quality VoIP, secure calling, and fast mobile setup.
Softphone Apps →Explore the Acrobits VoIP SDK. Built for devs who need real-time voice, seamless mobility, and full control over SIP behavior.
Softphone SDK →Engineered specifically for exceptional Windows performance.
Windows Softphone →Provide instant alerts with stable Push Notifications powered by Local Push.
Push Notifications →Fit the needs of your industry with highly customizable softphone features.
Softphone Features →Add busy lamp field integration to your real-time communications platform to see whether users are in an active call.
// Blf status
val dialogInfo = Instance.Registration.getDialogInfo(accountId, uri)
val blfString = if (dialogInfo.busyLamp) "On call" else "Off call"
busyLampStatusLabel.setText(blfString)
// Busy Lamp field iOS
DialogInfo *dialogInfo = Softphone::instance()->registration()->getDialogInfo(uri);
if (dialogInfo) {
if (dialogInfo->busyLamp) {
busyLampStatusLabel.text = NSLocalizedString(@"On Call", nil);
} else {
busyLampStatusLabel.text = NSLocalizedString(@"Off Call", nil);
}
}