GroupAdminGetPagedSortedListRequest
Bases: OCIRequest
Get a list of group and department administrators within the group. The response is either a GroupAdminGetPagedSortedListResponse or an ErrorResponse. If no sort criterion is included, the response is sorted by administrator id ascending by default. If the responsePagingControl element is not provided, the paging startIndex will be set to 1 by default, and the responsePageSize will be set to the maximum responsePageSize by default. Multiple search criteria are logically ANDed together unless the searchCriteriaModeOr option is included. Then the search criteria are logically ORed together.
Attributes:
service_provider_id (str):
group_id (str):
response_paging_control (Optional[ResponsePagingControl]):
sort_order (Optional[List[SortOrderGroupAdminGetPagedSortedList]]):
search_criteria_admin_id (Optional[List[SearchCriteriaAdminId]]):
search_criteria_admin_last_name (Optional[List[SearchCriteriaAdminLastName]]):
search_criteria_admin_first_name (Optional[List[SearchCriteriaAdminFirstName]]):
search_criteria_exact_group_admin_type (Optional[List[SearchCriteriaExactGroupAdminType]]):
search_criteria_language (Optional[List[SearchCriteriaLanguage]]):
search_criteria_department_name (Optional[List[SearchCriteriaDepartmentName]]):
search_criteria_mode_or (Optional[bool]):
Source code in src/mercury_ocip/commands/commands.py
32621 32622 32623 32624 32625 32626 32627 32628 32629 32630 32631 32632 32633 32634 32635 32636 32637 32638 32639 32640 32641 32642 32643 32644 32645 32646 32647 32648 32649 32650 32651 32652 32653 32654 32655 32656 32657 32658 32659 32660 32661 32662 32663 32664 32665 32666 32667 32668 32669 32670 32671 32672 32673 32674 32675 32676 32677 32678 32679 32680 32681 32682 32683 32684 32685 32686 32687 32688 32689 32690 32691 32692 32693 32694 32695 32696 | |
Responses
Bases: OCIDataResponse
Response to GroupAdminGetPagedSortedListRequest. Contains a 8 column table with column headings "Administrator ID", "Last Name", "First Name", "Administrator Type", "Department", "Language", "Locale" and "Encoding". The following columns are only returned in AS data mode: "Locale" and "Encoding".
Attributes:
group_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 GroupAdminGetPagedSortedListRequest
client = Client()
command = GroupAdminGetPagedSortedListRequest(
service_provider_id=...,
group_id=...,
response_paging_control=...,
sort_order=...,
search_criteria_admin_id=...,
search_criteria_admin_last_name=...,
search_criteria_admin_first_name=...,
search_criteria_exact_group_admin_type=...,
search_criteria_language=...,
search_criteria_department_name=...,
search_criteria_mode_or=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("GroupAdminGetPagedSortedListRequest",
service_provider_id=...,
group_id=...,
response_paging_control=...,
sort_order=...,
search_criteria_admin_id=...,
search_criteria_admin_last_name=...,
search_criteria_admin_first_name=...,
search_criteria_exact_group_admin_type=...,
search_criteria_language=...,
search_criteria_department_name=...,
search_criteria_mode_or=...,
)
print(response)