Mountain View
Jabber SDK API Documentation

Tutorial: Other Call Pickup Features

Other Call Pickup Features

Title Other notable call pickup feature are:
  • Group Call Pickup
  • Other Group Pickup

Group Call Pickup

Group call pickup feature allows for a user to pickup a call from another group. This is done through TelephonyController.groupCallPickup method as it is shown in the snippet below:

        var groupNumber = "105"

        // We need to check if group call pickup feature is enabled.
        if(TelephonyController.capabilities.isGroupCallPickupEnabled)
        {
            cwic.TelephonyController.groupCallPickup(groupNumber);
        }
     
Once the conversation has been picked up, "onConversationIncoming" event will be fired.

Other Group Pickup

Other group pickup allows users to pick up incoming calls in a group that is associated with their group. This is done through TelephonyController.otherGroupPickup method as it is shown in the snippet below:

         // We need to check if group call pickup feature is enabled.
         if(TelephonyController.capabilities.isGroupCallPickupEnabled)
         {
            cwic.TelephonyController.otherGroupPickup();
         }
     
Once the conversation has been picked up, "onConversationIncoming" event will be fired.

Next

Previous