GroupDepartmentAdminGetListRequest
Bases: OCIRequest
Get a list of department administrators for the department. The response is either a GroupDepartmentAdminGetListResponse or an ErrorResponse.
Attributes:
department_key (GroupDepartmentKey):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to GroupDepartmentAdminGetListRequest. Contains a 5 column table with column headings "Administrator ID", "Last Name", "First Name", "Department", "Language".
Attributes:
department_admin_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupDepartmentAdminGetListRequest
client = Client()
command = GroupDepartmentAdminGetListRequest(
department_key=...,
)
response = client.command(command)
print(response)