GroupCallCenterDistinctiveRingingGetRequest
Bases: OCIRequest
Get the distinctive ringing configuration values for call center. The response is either a GroupCallCenterDistinctiveRingingGetResponse or an ErrorResponse.
Attributes:
service_user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupCallCenterDistinctiveRingingGetRequest.
The following element is only used in AS data mode and not returned in XS data mode:
distinctiveRingingForceDeliveryRingPattern
Attributes:
distinctive_ringing_call_center_calls (bool):
distinctive_ringing_ring_pattern_for_call_center (str):
distinctive_ringing_force_delivery_ring_pattern (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupCallCenterDistinctiveRingingGetRequest
client = Client()
command = GroupCallCenterDistinctiveRingingGetRequest(
service_user_id=...,
)
response = client.command(command)
print(response)