GroupCollaborateBridgeGetInstancePagedSortedListRequest
Bases: OCIRequest
Get a list of collaborate bridges within a group. The response is either GroupCollaborateBridgeGetInstancePagedSortedListResponse or ErrorResponse.
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.
If no sortOrder is included the response is sorted by Name ascending 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[SortOrderGroupCollaborateBridgeGetInstancePagedSortedList]]):
search_criteria_user_last_name (Optional[List[SearchCriteriaUserLastName]]):
search_criteria_department_name (Optional[List[SearchCriteriaDepartmentName]]):
search_criteria_user_id (Optional[List[SearchCriteriaUserId]]):
search_criteria_dn (Optional[List[SearchCriteriaDn]]):
search_criteria_extension (Optional[List[SearchCriteriaExtension]]):
search_criteria_exact_dn_activation (Optional[SearchCriteriaExactDnActivation]):
search_criteria_mode_or (Optional[bool]):
Source code in src/mercury_ocip/commands/commands.py
42745 42746 42747 42748 42749 42750 42751 42752 42753 42754 42755 42756 42757 42758 42759 42760 42761 42762 42763 42764 42765 42766 42767 42768 42769 42770 42771 42772 42773 42774 42775 42776 42777 42778 42779 42780 42781 42782 42783 42784 42785 42786 42787 42788 42789 42790 42791 42792 42793 42794 42795 42796 42797 42798 42799 42800 42801 42802 42803 42804 42805 42806 42807 42808 42809 42810 42811 42812 42813 42814 42815 42816 42817 42818 42819 42820 42821 42822 42823 42824 | |
Responses
Bases: OCIDataResponse
Response to the GroupCollaborateBridgeGetInstancePagedSortedListRequest. Contains a table with column headings: "Service User Id", "Name", "Phone Number", "Is Phone Number Activated", "Country Code","National Prefix", "Extension", "Department", "Department Type", "Parent Department", "Parent Department Type", "Participants", "Is Default", "Max Room Participants", "Is Support Outdial". The column values for "Is default", "Is Support Outdial" can either be true, or false.
Attributes:
collaborate_bridge_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupCollaborateBridgeGetInstancePagedSortedListRequest
client = Client()
command = GroupCollaborateBridgeGetInstancePagedSortedListRequest(
service_provider_id=...,
group_id=...,
response_paging_control=...,
sort_order=...,
search_criteria_user_last_name=...,
search_criteria_department_name=...,
search_criteria_user_id=...,
search_criteria_dn=...,
search_criteria_extension=...,
search_criteria_exact_dn_activation=...,
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("GroupCollaborateBridgeGetInstancePagedSortedListRequest",
service_provider_id=...,
group_id=...,
response_paging_control=...,
sort_order=...,
search_criteria_user_last_name=...,
search_criteria_department_name=...,
search_criteria_user_id=...,
search_criteria_dn=...,
search_criteria_extension=...,
search_criteria_exact_dn_activation=...,
search_criteria_mode_or=...,
)
print(response)