PUT - Group Hunt Groups Status
Updates a list of Hunt Groups (HG) status to either active or inactive.
Parameters
service_user_ids (list): List of service user IDs of target HGs.
status (bool, optional): Status to apply to target HGs. Defaults to True.
Returns
None: This method does not return any specific value.
How To Use:
my_hunt_group_user_ids= [
"[email protected]",
"[email protected]"
]
my_api.hunt_groups.put_group_hunt_groups_status(
call_centhunt_group_user_ids = my_hunt_group_user_ids,
status = True
)
Last updated
Was this helpful?