Group Pickup

About Group Pickup

Pickup a call in the group/user/device configured.

Schema

Validator for the group_pickup callflow data object

KeyDescriptionTypeDefaultRequiredSupport Level
approved_device_idRestrict calling device to Devicestring()false
approved_group_idRestrict calling device to Groupstring()false
approved_user_idRestrict calling device to Userstring()false
device_idDevice to pickupstring()false
group_idGroup in which to find a call to pickupstring()false
skip_moduleWhen set to true this callflow action is skipped, advancing to the wildcard branch (if any)boolean()false
user_idUser in which to find a call to pickupstring()false

Usage

When a device is ringing in the office but no one is able to pick it up, it can be helpful to let others pick up the ringing line from their phone (versus hopping over desks and chairs, attempting to catch the call before it stops ringing).

Which devices are checked

The first thing to decide is the scope of the pickup group - it can be a single device, a user’s device(s), or a group’s device(s). You define the appropriate device_id, user_id or group_id in the action’s data.

!!! note Preference is given to the most restrictive option if more than one are defined - so device_id is used before user_id is used before group_id.

Which devices can pickup ringing calls

It might not always be preferred to have anyone in the office able to call the group_pickup callflow. You can restrict the device, user, or group of users/devices who can utilize the callflow by defining the appropriate approved_* field (following similar preference which is used if multiple exist in the action’s data).

Example

Define a callflow with extension 8000 that allows the sales group’s lines to be picked up by the sales group’s devices:

{"numbers":["8000"]
 ,"flow":{
   "module":"group_pickup"
   ,"data":{
     "group_id":"{SALES_GROUP_ID}"
     ,"approved_group_id":"{SALES_GROUP_ID}"
   }
 }
}

The group_pickup action is a terminal one; no children will be evaluated and can be omitted.

On this Page