getDashboardReportConfigurations

get

/ccadmin/v1/dashboardReportConfigurations

Get Dashboard Report Configurations. Gets the configurations for all the dashboard reports including their chart configurations

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

Following model is returned when operation succeeds.
Body ()
Root Schema : getDashboardReportConfigurations_response
Type: object
Show Source
Nested Schema : array
Type: array
Array of the report configurations.
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : chart
Type: array
The chart configuration for this report
Show Source
Nested Schema : detailedReport
Type: object
Detailed report for the report configurations.
Show Source
Nested Schema : summaryReport
Type: object
Summary report for the report configurations.
Show Source
Nested Schema : items
Type: object
Show Source
Example Response (application/json)
[
    {
        "fullReportsTabId":"orders",
        "summaryReport":{
            "repositoryId":"orderMetrics"
        },
        "detailedReport":{
            "repositoryId":"detailedOrderMetrics"
        },
        "defaultReport":true,
        "displayName":"Gross Revenue",
        "name":"grossRevenue",
        "repositoryId":"grossRevenue",
        "summaryInfoType":"currency",
        "chart":{
            "overview":"off",
            "animationOnDisplay":"auto",
            "orientation":"vertical",
            "stack":"off",
            "hoverBehavior":"dim",
            "type":"area",
            "animationOnDataChange":"auto",
            "zoomAndScroll":"off",
            "component":"ojChart",
            "hideAndShowBehavior":"off",
            "repositoryId":"simpleLine",
            "timeAxisType":"disabled",
            "dataCursor":"off"
        },
        "dateAxis":"groups"
    },
    {
        "fullReportsTabId":"orders",
        "summaryReport":{
            "repositoryId":"orderMetrics"
        },
        "detailedReport":{
            "repositoryId":"detailedOrderMetrics"
        },
        "defaultReport":false,
        "displayName":"Orders",
        "name":"orders",
        "repositoryId":"orders",
        "summaryInfoType":"numeric",
        "chart":{
            "overview":"off",
            "animationOnDisplay":"auto",
            "orientation":"vertical",
            "stack":"off",
            "hoverBehavior":"dim",
            "type":"area",
            "animationOnDataChange":"auto",
            "zoomAndScroll":"off",
            "component":"ojChart",
            "hideAndShowBehavior":"off",
            "repositoryId":"simpleLine",
            "timeAxisType":"disabled",
            "dataCursor":"off"
        },
        "dateAxis":"groups"
    },
    {
        "fullReportsTabId":"trafficVolume",
        "summaryReport":{
            "repositoryId":"trafficVolumeSummary"
        },
        "detailedReport":{
            "repositoryId":"trafficVolumeDetail"
        },
        "defaultReport":false,
        "displayName":"Site Traffic",
        "name":"visits",
        "repositoryId":"visits",
        "summaryInfoType":"numeric",
        "chart":{
            "overview":"off",
            "animationOnDisplay":"auto",
            "orientation":"vertical",
            "stack":"off",
            "hoverBehavior":"dim",
            "type":"area",
            "animationOnDataChange":"auto",
            "zoomAndScroll":"off",
            "component":"ojChart",
            "hideAndShowBehavior":"off",
            "repositoryId":"simpleLine",
            "timeAxisType":"disabled",
            "dataCursor":"off"
        },
        "dateAxis":"groups"
    }
]

Default Response

The error response. The following are the internal error codes thrown by this API when the request processing fails in Oracle Commerce Cloud: |Error Code|Description| |------------------|------------------| |94020|List report configuration error.| |94011|Error in fetching summary in dashboard.| |94010|Error in fetching report configuration in dashboard.|
Body ()
Root Schema : errorModel
Type: object
Show Source
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top