PUT - Group Call Center Stranded Calls Unavailable

Update the stranded calls unavailable settings of a single Call Center (CC).

Parameters

  • call_center_user_id (str): Service user ID of the target CC.

  • updates (dict): Updates to apply to target CC.

Returns

  • None: This method does not return any specific value.

How To Use:

my_call_center = "[email protected]"
my_updates= {
	"conditionPolicyOnNumberOfAgentsWithSpecifiedUnavailableCode":false,
	"numberOfAgentsWithSpecifiedUnavailableCode":null,
	"agentsUnavailableCode":null,
	"action":"None",
	"transferPhoneNumber":null,
	"audioMessageSource":"Default",
	"videoMessageSource":"Default",
	"audioUrlList":[],
	"videoUrlList":[],
	"audioFileList":[],
	"videoFileList":[]
}

my_api.call_centers.put_group_call_center_forced_forwarding(
    call_center_user_id = my_call_center,
    updates = my_updates
)

Last updated

Was this helpful?