PUT - User Call Center Supervised Agents
Update the list of agents a supervisor has in a single Call Center (CC).
Parameters
call_center_user_id (str): Service user ID of the target CC.
supervisor_user_id (str): User ID of the supervisor.
supervisor_ids (list): List of user IDs of agents to apply to supervisor.
Returns
Dict: Superivor ID and list of agents they supervise.
How To Use:
my_call_center = "[email protected]"
my_supervsor_id = "[email protected]"
my_agents = ["[email protected]", "[email protected]", "[email protected]"]
my_api.call_centers.put_user_call_center_supervised_agents(
call_center_user_id = my_call_center,
supervsor_user_id = my_supervsor_id,
agent_ids = my_agents
)
Last updated
Was this helpful?