GroupRoutePointGetInstanceListRequest
Bases: OCIRequest
Get a list of Route Point instances within a group. It is possible to search by various criteria to restrict the number of rows returned. The response is either GroupRoutePointGetInstanceListResponse 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]):
response_size_limit (Optional[int]):
search_criteria_route_point_name (Optional[List[SearchCriteriaRoutePointName]]):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupRoutePointGetInstanceListRequest. Contains a table with column headings: "Service User Id", "Name", "Video", "Phone Number", "Extension", "Department", "Is Active". The column values for "Video" and "Is Active" can either be true, or false.
Attributes:
route_point_table (OCITable):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupRoutePointGetInstanceListRequest
client = Client()
command = GroupRoutePointGetInstanceListRequest(
service_provider_id=...,
group_id=...,
group_department_name=...,
response_size_limit=...,
search_criteria_route_point_name=...,
)
response = client.command(command)
print(response)