Skip to content

Commit

Permalink
Fixed put.group_hunt_group method (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
LivCurtis authored Aug 12, 2024
1 parent 77ecefe commit 34a7287
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions odins_spear/methods/put.py
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ def user_do_not_disturb(self, user_id: str, dnd_active: bool = False, ring_splas
#HOTELING HOST
#HUNT GROUPS

def group_hunt_groups_status(self, hunt_group_user_ids: list, status: bool =True):
def group_hunt_groups_status(self, service_user_ids: list, status: bool =True):
"""Updates a list of Hunt Groups (HG) status to either active or inactive.
Args:
Expand All @@ -889,18 +889,18 @@ def group_hunt_groups_status(self, hunt_group_user_ids: list, status: bool =True
endpoint = f"/groups/hunt-groups/status"

data = {
"instances": [{'serviceUserId': hunt_group_user_id, 'isActive': status}
for hunt_group_user_id in hunt_group_user_ids]
"instances": [{'serviceUserId': service_user_id, 'isActive': status}
for service_user_id in service_user_ids]
}

return self.requester.put(endpoint, data=data)


def group_hunt_group(self, service_provider_id: str, group_id: str, hunt_group_user_id: str, updates: dict):
"""Update a Hunt Groups (HG) settings.
def group_hunt_group(self, service_provider_id: str, group_id: str, service_user_id: str, updates: dict):
"""Update a Hunt Group's (HG) settings.
Args:
hunt_group_user_id (str): Service provider ID of where the group that hosts the HG is located.
service_provider_id (str): Service provider ID of where the group that hosts the HG is located.
group_id (str): Group ID of where the HG is located.
service_user_id (str): Target service user ID of the HG.
updates (dict): Updates to be applied to HG.
Expand All @@ -913,19 +913,21 @@ def group_hunt_group(self, service_provider_id: str, group_id: str, hunt_group_u

updates["serviceProviderId"] = service_provider_id
updates["groupId"] = group_id
updates["serviceUserId"] = hunt_group_user_id
updates["serviceUserId"] = service_user_id
if not updates.get("serviceInstanceProfile"):
updates["serviceInstanceProfile"] = {}

return self.requester.put(endpoint, data=updates)


def group_hunt_group_weighted_call_distribution(self, service_provider_id: str, group_id, hunt_group_user_id: str,
def group_hunt_group_weighted_call_distribution(self, service_provider_id: str, group_id, service_user_id: str,
agents: list):
"""Update the Weighted Call Distribution (WCD) between users in a Hunt Group (HG).
Args:
service_provider_id (str): Service provider ID where the group is located.
group_id (_type_): Group ID where the HG is located.
hunt_group_user_id (str): Service user ID of the target HG.
service_user_id (str): Service user ID of the target HG.
agents (list): Updates of WCD to be applied to HG.
Raises:
Expand All @@ -940,7 +942,7 @@ def group_hunt_group_weighted_call_distribution(self, service_provider_id: str,
data = {
"serviceProviderId": service_provider_id,
"groupId": group_id,
"serviceUserId": hunt_group_user_id,
"serviceUserId": service_user_id,
"agents": agents
}

Expand Down Expand Up @@ -1240,4 +1242,4 @@ def user_portal_passcode(self, user_id: str, new_passcode: str):
#USER UTILITIES
#ODIN TASKS COPY
#ODIN CONNECTORS
#LOCALES
#LOCALES

0 comments on commit 34a7287

Please sign in to comment.