DELETE - Group Hunt Group

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.delete_group_hunt_group(
    service_user_id = "[email protected]"
)

Example Returned Data (Formatted)

{
    "serviceInstanceProfile": {
        "name": "test_hunt_group",
        "callingLineIdLastName": "Hunt Group",
        "callingLineIdFirstName": "Test",
        "hiraganaLastName": "Hunt Group",
        "hiraganaFirstName": "Test",
        "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": None,
    "serviceProviderId": "ExampleServiceProvider",
    "groupId": "ExampleGroup",
    "isEnterprise": True,
    "agents": []
}

Last updated

Was this helpful?