EnterpriseCallCenterEnhancedReportingScheduledReportGetReportTemplateUsageListRequest
Bases: OCIRequest
Request to get all the call center reporting scheduled report in an enterprise that uses a given enterprise level report template. The response is either a EnterpriseCallCenterEnhancedReportingScheduledReportGetReportTemplateUsageListResponse or an ErrorResponse.
Attributes:
service_provider_id (str):
name (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to EnterpriseCallCenterEnhancedReportingScheduledReportGetReportTemplateUsageListRequest. Contains a table with column headings: "Schedule Name", "Created By", "Created By Supervisor", and "Is Active". The "Created By" can be either "Administrator" or user id if created by supervisor.
Attributes:
schedule_report_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import EnterpriseCallCenterEnhancedReportingScheduledReportGetReportTemplateUsageListRequest
client = Client()
command = EnterpriseCallCenterEnhancedReportingScheduledReportGetReportTemplateUsageListRequest(
service_provider_id=...,
name=...,
)
response = client.command(command)
print(response)