UserPolycomPhoneServicesGetRequest
Bases: OCIRequest
Request the user's Polycom Phone Services attributes. The response is either a UserPolycomPhoneServicesGetResponse or an ErrorResponse.
Attributes:
user_id (str):
access_device (AccessDevice):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserPolycomPhoneServicesGetRequest.
Attributes:
integrate_phone_directory_with_broad_works (bool):
include_user_personal_phone_list_in_directory (bool):
include_group_custom_contact_directory_in_directory (bool):
group_custom_contact_directory (Optional[str]):
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 UserPolycomPhoneServicesGetRequest
client = Client()
command = UserPolycomPhoneServicesGetRequest(
user_id=...,
access_device=...,
)
response = client.command(command)
print(response)