GroupGetUserServiceAssignedUserListRequest
Bases: OCIRequest
Get the list of users assigned the user service or service pack. The response is either a GroupGetUserServiceAssignedUserListResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
service_name (Optional[str]):
service_pack_name (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Return a table containing the list of users assigned the user service or service pack. The table contains columns: "User Id", "Last Name", "First Name", "Department", "Phone Number", "Email Address", "Hiragana Last Name"; "Hiragana First Name", "Extension". This is a response to the GroupGetUserServiceAssignedUserListRequest.
Attributes:
user_list_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 GroupGetUserServiceAssignedUserListRequest
client = Client()
command = GroupGetUserServiceAssignedUserListRequest(
service_provider_id=...,
group_id=...,
service_name=...,
service_pack_name=...,
)
response = client.command(command)
print(response)