PUT - User Call Center Agents Update
Update the Call Centers (CC) a user is assigned to.
Parameters
user_id (str): User ID of the target user.
call_center_service_ids (list): List of CC service user IDs to update the user with.
Returns
None: This method does not return any specific value.
How To Use:
my_agent_user_id = "[email protected]"
my_call_centers = ["[email protected]", "[email protected]", "[email protected]"]
my_api.call_centers.put_user_call_center_agents_update(
user_id = my_agent_user_id,
call_center_service_ids= my_call_centers
)
Last updated
Was this helpful?