We provide Call, CallHistory, Messages and ConferenceInvite features in the widget. Sometimes you only need some features. So we allow developers to disable features that unneeded.
Just pass disableMessages on adapter.js uri or iframe src uri.
Just pass disableReadText on adapter.js uri or iframe src uri.
<script>
(function() {
var rcs = document.createElement("script");
rcs.src = "https://ringcentral.github.io/ringcentral-embeddable/adapter.js?disableMessages=true";
var rcs0 = document.getElementsByTagName("script")[0];
rcs0.parentNode.insertBefore(rcs, rcs0);
})();
</script><iframe width="300" height="500" id="rc-widget" allow="microphone" src="https://ringcentral.github.io/ringcentral-embeddable/app.html?disableMessages=true">
</iframe>To pass disableCall=true on adapter.js uri or iframe src uri as upper example.
To pass disableMeeting=true on adapter.js uri or iframe src uri as upper example.
Glip feature is in beta. It is disabled it by default. To enable it:
<script>
(function() {
var rcs = document.createElement("script");
rcs.src = "https://ringcentral.github.io/ringcentral-embeddable/adapter.js?disableGlip=false";
var rcs0 = document.getElementsByTagName("script")[0];
rcs0.parentNode.insertBefore(rcs, rcs0);
})();
</script>Before we start to use Glip API, need to add Glip permission to your app in RingCentral Developer website.
Conference Invite feature will be deprecated in end of 2020. Now it is disabled by default.
To enable it by passing disableConferenceInvite=false on adapter.js uri or iframe src uri as upper example.
To enable Conference Call (3-way-calling) feature, please add CallControl permission to your app via the RingCentral Developer console. If your app has already been graduated and you need help, please submit a help ticket and we can assist. After the permission is added you can obtain the feature after you re-login to the widget.
Active Call Control feature uses new CallControl RESTful API to control RingCentral Call. With this API, users can control their calls on other devices in this widget.
Before we start to use Active Call Control feature, need to add CallControl permission to your app in RingCentral Developer website. After permissions added, you can get the feature after re-login to the widget.
Please submit a help ticket to add CallControl permission if you get any problem.
For when call is ringing, app will play default ringtone. But we also support to customize ringtone.
Ringtone settings is disabled by default. To enable it:
<script>
(function() {
var rcs = document.createElement("script");
rcs.src = "https://ringcentral.github.io/ringcentral-embeddable/adapter.js?enableRingtoneSettings=1";
var rcs0 = document.getElementsByTagName("script")[0];
rcs0.parentNode.insertBefore(rcs, rcs0);
})();
</script>By enabled, user can get ringtone settings at settings page. Notice: supported after v1.6.3
