GET - Group Hunt Groups Available Users

Deletes the specified hunt group.

Parameters

  • service_user_id (str): The service user ID of the hunt group to be deleted.

Returns

  • Dict: Profile of the deleted hunt group.

How To Use:

my_api.hunt_groups.get_group_hunt_groups_available_users(
    service_user_id="[email protected]"
)

Example Returned Data (Formatted)

{
    "serviceInstanceProfile": {
        "name": "test_hg",
        "callingLineIdLastName": "hg",
        "callingLineIdFirstName": "test",
        "hiraganaLastName": "test_hg",
        "hiraganaFirstName": "Hunt Group",
        "language": "English",
        "timeZone": "Europe/London",
        "timeZoneDisplayName": "(GMT+01:00) Greenwich Mean Time",
        "aliases": []
    },
    "policy": "Regular",
    "huntAfterNoAnswer": false,
    "noAnswerNumberOfRings": 5,
    "forwardAfterTimeout": false,
    "forwardTimeoutSeconds": 10,
    "allowCallWaitingForAgents": false,
    "useSystemHuntGroupCLIDSetting": true,
    "includeHuntGroupNameInCLID": true,
    "enableNotReachableForwarding": false,
    "makeBusyWhenNotReachable": false,
    "allowMembersToControlGroupBusy": false,
    "enableGroupBusy": false,
    "applyGroupBusyWhenTerminatingToAgent": false,
    "serviceUserId": "[email protected]",
    "resellerId": null,
    "serviceProviderId": "Example Service Provider ID",
    "groupId": "Example Group ID",
    "isEnterprise": true,
    "agents": []
}

Last updated

Was this helpful?