GroupRoutePointExternalSystemGetAssignedRoutePointListRequest
Bases: OCIRequest
Request a list of route points within in a group that have a given external system assigned. The response is either GroupRoutePointExternalSystemGetAssignedRoutePointListResponse or ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
external_system (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 GroupRoutePointExternalSystemGetAssignedRoutePointListRequest. Contains a table with column headings: "Service User Id", "Name", "Video", "Phone Number", "Extension", "Department". The column values for "Video" 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 GroupRoutePointExternalSystemGetAssignedRoutePointListRequest
client = Client()
command = GroupRoutePointExternalSystemGetAssignedRoutePointListRequest(
service_provider_id=...,
group_id=...,
external_system=...,
response_size_limit=...,
search_criteria_route_point_name=...,
)
response = client.command(command)
print(response)