GroupHuntGroupGetInstanceRequest20
Bases: OCIRequest
Request to get all the information of a Hunt Group instance. The response is either GroupHuntGroupGetInstanceResponse20 or ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to GroupHuntGroupGetInstanceRequest20. Contains the service profile information and a table of assigned users. The table has column headings: "User Id", "Last Name", "First Name", "Hiragana Last Name", "Hiragana First Name", "Weight", "Phone Number", "Extension", "Department", "Email Address", "Is Phone Number Activated", "Country Code","National Prefix", "Department Name" ,"Department Type", "Parent Department", "Parent Department Type","Group Id","Group Name". The following elements are only used in AS data mode: useSystemHuntGroupCLIDSetting includeHuntGroupNameInCLID Is Phone Number Activated Country Code National Prefix Department Name Department Type Parent Department Parent Department Type Group Id Group Name
Attributes:
service_instance_profile (ServiceInstanceReadProfile19sp1):
policy (str):
hunt_after_no_answer (bool):
no_answer_number_of_rings (int):
forward_after_timeout (bool):
forward_timeout_seconds (int):
forward_to_phone_number (Optional[str]):
agent_user_table (OCITable):
allow_call_waiting_for_agents (bool):
use_system_hunt_group_clid_setting (bool):
include_hunt_group_name_in_clid (bool):
enable_not_reachable_forwarding (bool):
not_reachable_forward_to_phone_number (Optional[str]):
make_busy_when_not_reachable (bool):
allow_members_to_control_group_busy (bool):
enable_group_busy (bool):
apply_group_busy_when_terminating_to_agent (bool):
network_class_of_service (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
126720 126721 126722 126723 126724 126725 126726 126727 126728 126729 126730 126731 126732 126733 126734 126735 126736 126737 126738 126739 126740 126741 126742 126743 126744 126745 126746 126747 126748 126749 126750 126751 126752 126753 126754 126755 126756 126757 126758 126759 126760 126761 126762 126763 126764 126765 126766 126767 126768 126769 126770 126771 126772 126773 126774 126775 126776 126777 126778 126779 126780 126781 126782 126783 126784 126785 126786 126787 126788 126789 126790 126791 126792 126793 126794 126795 126796 126797 126798 126799 126800 126801 126802 126803 126804 126805 126806 126807 126808 126809 126810 126811 126812 126813 126814 126815 126816 126817 126818 126819 126820 126821 126822 126823 126824 126825 126826 126827 126828 126829 126830 126831 126832 126833 126834 126835 126836 126837 126838 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupHuntGroupGetInstanceRequest20
client = Client()
command = GroupHuntGroupGetInstanceRequest20(
service_user_id=...,
)
response = client.command(command)
print(response)