List Dashboard History

get

/serviceapi/dashboardModel/history/dashboards/{dashboardId}

Get all the actions that were performed on the dashboard with this dashboard id.

Request

Path Parameters
  • The id of the dashboard. The id of a dashboard is displayed as a query parameter in the URL while using Oracle Management Cloud through the user interface.
Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : Action
Type: object

This is the object that is returned whenever an action is performed.

Show Source
Back to Top

Examples

This cURL call will get all the actions that were performed on the dashboard with dashboardId: 5432361245:

curl -u ${OMC_USERNAME}:${PASSWORD} -X GET "https://{OMC_URL}/serviceapi/dashboardModel/history/dashboards/5432361245"

Example of Response

The following shows an example of the response body.

[
    {
        "id": "1",
        "dashboardId": "5432361245",
        "dashboardName": "A Public Single Dashboard",
        "actionTime": "2019-04-23T12:46:13.346+0000",
        "userName": "demouser",
        "changedData": "demouser1",
        "actionDetail": "REVOKE_MANAGER_PRIVILEGE",
        "actionType": "PRIVILEGE_CHANGE"
    },
    {
        "id": "2",
        "dashboardId": "5432361245",
        "dashboardName": "A Public Single Dashboard",
        "actionTime": "2019-04-23T12:39:38.563+0000",
        "userName": "demouser",
        "changedData": "demouser1",
        "actionDetail": "REVOKE_VIEW_PRIVILEGE",
        "actionType": "PRIVILEGE_CHANGE"
    },
    {
        "id": "3",
        "dashboardId": "5432361245",
        "dashboardName": "A Public Single Dashboard",
        "actionTime": "2019-04-23T11:55:35.838+0000",
        "userName": "demouser",
        "changedData": "demouser1",
        "actionDetail": "SHARE_MANAGER_PRIVILEGE",
        "actionType": "PRIVILEGE_CHANGE"
    },
    {
        "id": "4",
        "dashboardId": "5432361245",
        "dashboardName": "A Public Single Dashboard",
        "actionTime": "2019-04-23T09:14:19.096+0000",
        "userName": "demouser",
        "changedData": "SHARE_PUBLIC",
        "actionDetail": "SHARE_VIEW_PRIVILEGE",
        "actionType": "PRIVILEGE_CHANGE"
    },
    {
        "id": "5",
        "dashboardId": "5432361245",
        "dashboardName": "A Public Single Dashboard",
        "actionTime": "2019-04-23T09:05:51.512+0000",
        "userName": "demouser",
        "actionDetail": "EDIT",
        "actionType": "DATA_CHANGE"
    },
    {
        "id": "6",
        "dashboardId": "5432361245",
        "dashboardName": "A Public Single Dashboard",
        "actionTime": "2019-04-23T09:00:26.377+0000",
        "userName": "demouser",
        "actionDetail": "CREATE",
        "actionType": "DATA_CHANGE"
    }
]
Back to Top