SystemCallCenterEnhancedReportingScheduledReportGetActiveListRequest
Bases: OCIRequest
Request to get the list of all active call center reporting scheduled reports in the system. The response is either a SystemCallCenterEnhancedReportingScheduledReportGetActiveListResponse or an ErrorResponse.
Attributes:
response_size_limit (Optional[int]):
search_criteria_call_center_scheduled_report_name (Optional[List[SearchCriteriaCallCenterScheduledReportName]]):
search_criteria_group_id (Optional[List[SearchCriteriaGroupId]]):
search_criteria_exact_call_center_scheduled_report_service_provider (Optional[SearchCriteriaExactCallCenterScheduledReportServiceProvider]):
search_criteria_service_provider_id (Optional[List[SearchCriteriaServiceProviderId]]):
search_criteria_exact_call_center_scheduled_report_created_by_supervisor (Optional[SearchCriteriaExactCallCenterScheduledReportCreatedBySupervisor]):
search_criteria_call_center_report_template_name (Optional[List[SearchCriteriaCallCenterReportTemplateName]]):
Source code in src/mercury_ocip/commands/commands.py
75982 75983 75984 75985 75986 75987 75988 75989 75990 75991 75992 75993 75994 75995 75996 75997 75998 75999 76000 76001 76002 76003 76004 76005 76006 76007 76008 76009 76010 76011 76012 76013 76014 76015 76016 76017 76018 76019 76020 76021 76022 76023 76024 76025 76026 76027 76028 76029 76030 76031 76032 76033 76034 76035 76036 76037 76038 76039 76040 76041 76042 76043 76044 76045 | |
Responses
Bases: OCIDataResponse
Response to SystemCallCenterEnhancedReportingScheduledReportGetActiveListRequest Contains a table with column headings : "Scheduled Report Name", "Description", "Service Provider Id", "Is Enterprise", "Group Id", "Created By", "Is Supervisor Report", "Report Template Name", "Report Template Level" and "Recurring". The "Created By" can be either "Administrator" or user id if created by supervisor. The possible values for "Recurring" are "None", "Daily", "Weekly", "Monthly" and "Yearly". The possible values for "Report Template Level" are "System", "Enterprise" and "Group". For the rows with "Is Enterprise" column value "true", the "Group Id" column will be empty.
Attributes:
scheduled_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 SystemCallCenterEnhancedReportingScheduledReportGetActiveListRequest
client = Client()
command = SystemCallCenterEnhancedReportingScheduledReportGetActiveListRequest(
response_size_limit=...,
search_criteria_call_center_scheduled_report_name=...,
search_criteria_group_id=...,
search_criteria_exact_call_center_scheduled_report_service_provider=...,
search_criteria_service_provider_id=...,
search_criteria_exact_call_center_scheduled_report_created_by_supervisor=...,
search_criteria_call_center_report_template_name=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("SystemCallCenterEnhancedReportingScheduledReportGetActiveListRequest",
response_size_limit=...,
search_criteria_call_center_scheduled_report_name=...,
search_criteria_group_id=...,
search_criteria_exact_call_center_scheduled_report_service_provider=...,
search_criteria_service_provider_id=...,
search_criteria_exact_call_center_scheduled_report_created_by_supervisor=...,
search_criteria_call_center_report_template_name=...,
)
print(response)