UserRoutePointSupervisorGetListRequest
Bases: OCIRequest
Get a list of Route Point supervisors assigned to a user. The response is either a UserRoutePointSupervisorGetListResponse or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserRoutePointSupervisorGetListRequest. Contains a table with column headings: "User Id", "Last Name", "First Name", "Hiragana Last Name", "Hiragana First Name", "Phone Number", "Extension", "Department", "Email Address", "Location Code".
Attributes:
supervisor_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 UserRoutePointSupervisorGetListRequest
client = Client()
command = UserRoutePointSupervisorGetListRequest(
user_id=...,
)
response = client.command(command)
print(response)