GroupCustomContactDirectoryGetAvailableUserListRequest17
Bases: OCIRequest
Get a list of users that can be part of a custom contact directory. The response is either GroupCustomContactDirectoryGetAvailableUserListResponse17 or ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
response_size_limit (Optional[int]):
search_criteria_user_last_name (Optional[List[SearchCriteriaUserLastName]]):
search_criteria_user_first_name (Optional[List[SearchCriteriaUserFirstName]]):
search_criteria_exact_user_department (Optional[SearchCriteriaExactUserDepartment]):
search_criteria_exact_user_group (Optional[SearchCriteriaExactUserGroup]):
search_criteria_user_id (Optional[List[SearchCriteriaUserId]]):
search_criteria_dn (Optional[List[SearchCriteriaDn]]):
search_criteria_extension (Optional[List[SearchCriteriaExtension]]):
Source code in src/mercury_ocip/commands/commands.py
43864 43865 43866 43867 43868 43869 43870 43871 43872 43873 43874 43875 43876 43877 43878 43879 43880 43881 43882 43883 43884 43885 43886 43887 43888 43889 43890 43891 43892 43893 43894 43895 43896 43897 43898 43899 43900 43901 43902 43903 43904 43905 43906 43907 43908 43909 43910 43911 43912 43913 43914 43915 43916 43917 43918 43919 43920 43921 43922 43923 43924 43925 43926 43927 | |
Responses
Bases: OCIDataResponse
Response to the GroupCustomContactDirectoryGetAvailableUserListRequest17. Contains a table with column headings: "User Id", "Last Name", "First Name", "Hiragana Last Name", "Hiragana First Name", "Virtual On-Net Phone Number", "Group Id", "Is Virtual On-Net User", "Phone Number", "Extension", "Department", "Email Address".
If the entry represents a Virtual On-Net user then "User Id" is blank,
the "Virtual On-Net Phone Number" contains the phone Number of the
Virtual On-Net user, the "Group Id" contains the Virtual On-Net user's
group and the "Is Virtual On-Net User" contains true.
If the entry represents a BroadWorks user then the "User Id" contains
his BroadWorks userId, the "Virtual On-Net Phone Number" and
"Group Id" fields are blank and the "Is Virtual On-Net User"
contains false.
Attributes:
user_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupCustomContactDirectoryGetAvailableUserListRequest17
client = Client()
command = GroupCustomContactDirectoryGetAvailableUserListRequest17(
service_provider_id=...,
group_id=...,
response_size_limit=...,
search_criteria_user_last_name=...,
search_criteria_user_first_name=...,
search_criteria_exact_user_department=...,
search_criteria_exact_user_group=...,
search_criteria_user_id=...,
search_criteria_dn=...,
search_criteria_extension=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("GroupCustomContactDirectoryGetAvailableUserListRequest17",
service_provider_id=...,
group_id=...,
response_size_limit=...,
search_criteria_user_last_name=...,
search_criteria_user_first_name=...,
search_criteria_exact_user_department=...,
search_criteria_exact_user_group=...,
search_criteria_user_id=...,
search_criteria_dn=...,
search_criteria_extension=...,
)
print(response)