EnterpriseCallCenterAgentThresholdProfileGetListRequest
Bases: OCIRequest
Get the list of Call Center Agent Threshold Profiles in the Enterprise. The response is either EnterpriseCallCenterAgentThresholdProfileGetListResponse or ErrorResponse.
Attributes:
service_provider_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the EnterpriseCallCenterAgentThresholdProfileGetListRequest. Contains a table with all the Call Center Agent Threshold Profiles in the Enterprise. The column headings are: "Default", "Name", "Description".
Attributes:
profiles_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import EnterpriseCallCenterAgentThresholdProfileGetListRequest
client = Client()
command = EnterpriseCallCenterAgentThresholdProfileGetListRequest(
service_provider_id=...,
)
response = client.command(command)
print(response)