GroupPolycomPhoneServicesGetRequest
Bases: OCIRequest
Request the group's Polycom Phone Services attributes. The response is either a GroupPolycomPhoneServicesGetResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
group_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to GroupPolycomPhoneServicesGetRequest.
Attributes:
include_group_common_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/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupPolycomPhoneServicesGetRequest
client = Client()
command = GroupPolycomPhoneServicesGetRequest(
service_provider_id=...,
group_id=...,
)
response = client.command(command)
print(response)