GET - Group Hunt Group
Returns detailed information about the specified Hunt Group.
Parameters
service_user_id (str): UserID of the target Hunt Group.
Returns
Dict: Returns the specified Hunt Groups settings and information, such as group policies, agents, and extension.
How To Use:
my_api.hunt_groups.get_group_hunt_group(
service_user_id="[email protected]"
)
Example Returned Data (Formatted)
[
{
"serviceInstanceProfile": {
"name": "[email protected]",
"callingLineIdLastName": "Test Last Name",
"callingLineIdFirstName": "Test First Name",
"hiraganaLastName": "Test Last Name",
"hiraganaFirstName": "Test First Name",
"language": "English",
"timeZone": "America/Denver",
"timeZoneDisplayName": "(GMT-06:00) (US) Mountain Time",
"aliases": []
},
"policy": "Regular",
"huntAfterNoAnswer": true,
"noAnswerNumberOfRings": 5,
"forwardAfterTimeout": false,
"forwardTimeoutSeconds": 10,
"allowCallWaitingForAgents": true,
"useSystemHuntGroupCLIDSetting": true,
"includeHuntGroupNameInCLID": true,
"enableNotReachableForwarding": false,
"makeBusyWhenNotReachable": false,
"serviceUserId": "[email protected]",
"serviceProviderId": "serviceProivederID",
"groupId": "groupID",
"isEnterprise": true,
"agents": [
{
"userId": "[email protected]"
},
{
"userId": "[email protected]"
}
]
}
]
Last updated
Was this helpful?