Create your customized white-label softphone solution with Cloud Softphone. Design, build, and deploy your app quickly.
White Label Softphone →Try LinkUp for custom white-label video conferencing. Add your branding elements to the UI/UX for a unique experience.
White Label Video Conferencing →Enhance your VoIP experience with softphone app solutions powered by the industry-leading Acrobits SDK.
Softphone Apps →Test the developer-friendly Acrobits VoIP SDK. Quickly integrate it with your favorite apps with our powerful API.
VoIP SDK →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);
}
}