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_fast/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_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import EnterpriseCallCenterAgentThresholdProfileGetListRequest
client = Client()
command = EnterpriseCallCenterAgentThresholdProfileGetListRequest(
service_provider_id=...,
)
response = client.command(command)
print(response)