Builds a hunt group (HG) in the specified group.
hunt_group_agents= [
"hunt_group_user1@microv-works.com",
"hunt_group_user2@microv-works.com"
]
my_api.hunt_groups.post_group_hunt_group(
my_service_provider_id = "ServiceProviderID",
my_group_id = "GroupID",
service_user_id = "odin.mock.hg.2@microv-works.com",
clid_first_name = "odin",
clid_last_name = "mock.hg.2",
hunt_group_extension = "1234",
agents = hunt_group_agents,
policy = "Regular"
)
{
"serviceInstanceProfile": {
"name": "odin mock.hg.2",
"callingLineIdLastName": "mock.hg.2",
"callingLineIdFirstName": "odin",
"hiraganaLastName": "odin mock.hg.2",
"hiraganaFirstName": "Hunt Group",
"extension": "1234",
"language": "English",
"timeZone": "Europe/London",
"timeZoneDisplayName": "(GMT+01:00) Greenwich Mean Time",
"aliases": []
},
"policy": "Regular",
"huntAfterNoAnswer": False,
"noAnswerNumberOfRings": 5,
"forwardAfterTimeout": False,
"forwardTimeoutSeconds": 0,
"allowCallWaitingForAgents": False,
"useSystemHuntGroupCLIDSetting": False,
"includeHuntGroupNameInCLID": False,
"enableNotReachableForwarding": False,
"makeBusyWhenNotReachable": False,
"allowMembersToControlGroupBusy": False,
"enableGroupBusy": False,
"applyGroupBusyWhenTerminatingToAgent": False,
"serviceUserId": "odin.mock.hg.2@microv-works.com",
"resellerId": None,
"serviceProviderId": "ServiceProviderID",
"groupId": "GroupID",
"isEnterprise": True,
"agents": [
{
"userId": "hunt_group_user1@microv-works.com",
"lastName": "1",
"firstName": "hunt_group_user",
"hiraganaLastName": "1",
"hiraganaFirstName": "hunt_group_user",
"weight": None,
"phoneNumber": None,
"extension": "111111",
"department": None,
"emailAddress": None,
"isPhoneNumberActivated": None,
"countryCode": None,
"nationalPrefix": None,
"departmentName": None,
"departmentType": None,
"parentDepartment": None,
"parentDepartmentType": None,
"groupId": "GroupID",
"groupName": "Group Name"
},
{
"userId": "hunt_group_user2@microv-works.com",
"lastName": "2",
"firstName": "hunt_group_user",
"hiraganaLastName": "2",
"hiraganaFirstName": "hunt_group_user",
"weight": None,
"phoneNumber": None,
"extension": "222222",
"department": None,
"emailAddress": None,
"isPhoneNumberActivated": None,
"countryCode": None,
"nationalPrefix": None,
"departmentName": None,
"departmentType": None,
"parentDepartment": None,
"parentDepartmentType": None,
"groupId": "GroupID",
"groupName": "Group Name"
}
]
}