GroupHuntGroupGetInstanceListRequest
Bases: OCIRequest
Get a list of Hunt Group instances within a group. The response is either GroupHuntGroupGetInstanceListResponse or ErrorResponse. It is possible to get the instances within a specified department.
Attributes:
service_provider_id (str):
group_id (str):
group_department_name (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupHuntGroupGetInstanceListRequest. Contains a table with column headings: "Service User Id", "Name", "Phone Number", "Extension", "Department", "Is Active", "Policy". The column values for "Is Active" can either be true, or false. NOTE: prior to release 14, the policy column did not match the HuntPolicy enumerated type.
Attributes:
hunt_group_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupHuntGroupGetInstanceListRequest
client = Client()
command = GroupHuntGroupGetInstanceListRequest(
service_provider_id=...,
group_id=...,
group_department_name=...,
)
response = client.command(command)
print(response)