EnterpriseCallCenterMonitoringGetRequest23
Bases: OCIRequest
Request the enterprise level data associated with Call Center Monitoring. The response is either an EnterpriseCallCenterMonitoringGetResponse23 or an ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to EnterpriseCallCenterMonitoringGetRequest23.
Attributes:
enable_supervisor_coaching (bool):
bypass_enforcement_of_supervisor_agent_relationship (Optional[bool]):
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 EnterpriseCallCenterMonitoringGetRequest23
client = Client()
command = EnterpriseCallCenterMonitoringGetRequest23(
service_provider_id=...,
)
response = client.command(command)
print(response)