Skip to content

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/commands/commands.py
@dataclass(kw_only=True)
class GroupRoutePointExternalSystemGetAssignedRoutePointListRequest(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]]):

    """

    service_provider_id: str = field(metadata={"alias": "serviceProviderId"})

    group_id: str = field(metadata={"alias": "groupId"})

    external_system: str = field(metadata={"alias": "externalSystem"})

    response_size_limit: Optional[int] = field(
        default=None, metadata={"alias": "responseSizeLimit"}
    )

    search_criteria_route_point_name: Optional[List[SearchCriteriaRoutePointName]] = (
        field(default=None, metadata={"alias": "searchCriteriaRoutePointName"})
    )

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/commands/commands.py
@dataclass(kw_only=True)
class GroupRoutePointExternalSystemGetAssignedRoutePointListResponse(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):

    """

    route_point_table: OCITable = field(metadata={"alias": "routePointTable"})

Bases: OCIResponse

Source code in src/mercury_ocip/commands/base_command.py
class ErrorResponse(OCIResponse):
    errorCode: Optional[int] = None
    summary: str
    summaryEnglish: str
    detail: Optional[str] = None

Example Usage

from mercury_ocip.client import Client
from mercury_ocip.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)

Example 2 with Raw Command

from mercury_ocip.client import Client

client = Client()

response = client.raw_command("GroupRoutePointExternalSystemGetAssignedRoutePointListRequest",
    service_provider_id=...,
    group_id=...,
    external_system=...,
    response_size_limit=...,
    search_criteria_route_point_name=...,
)

print(response)