Get the overview report for the given campaign

get

/access-governance/access-reviews/20250331/campaigns/{campaignId}/overviewReport

Retrieve the overview report for the given campaign.

Request

Path Parameters
Header Parameters
  • The client request ID for tracing. The only valid characters for request IDs are letters, numbers, underscore, and dash.
Back to Top

Response

Supported Media Types

200 Response

The overview report for the given campaign.
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : OverviewReport
Type: object
The overview report of the review task status.
Show Source
Nested Schema : assignmentTypeTotals
Type: array
The totals related to each assignment type.
Show Source
Nested Schema : groupTotals
Type: array
The totals related to each group criteria.
Show Source
Nested Schema : AssignmentTypeTally
Type: object
The tally counts of the assignment type.
Show Source
Nested Schema : GroupTally
Type: object
The tally counts of the group.
Show Source
Nested Schema : topGroups
Type: array
The list of the top 5 values in this group.
Show Source
Nested Schema : TopGroupTally
Type: object
The tally counts of the top value in the group
Show Source

400 Response

Bad Request
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

401 Response

Unauthorized
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

404 Response

Not Found
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

409 Response

Conflict
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

429 Response

Too Many Requests
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

500 Response

Internal Server Error
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

Default Response

Unknown Error
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source
Back to Top

Examples

The following example shows how to retrieve Campaigns Report. Replace placeholder values with actual values before running the sample command.

cURL Example - Without Query Parameters

curl -i -X GET \
   -H "Authorization:Bearer <your access token>" \
 '${service-instance-url}/access-governance/access-reviews/${version}/campaigns/${campaignId}/overviewReport'

Example of the Response Body

The following example shows the contents of the response body in JSON format:

This response outlines the status of different assignment types in an access review process, including accounts, permissions, roles, and workflows. It provides a summary of pending, approved, and revoked counts to track access changes.

{
    "timeGenerated": "2025-06-02T06:55:06.644Z",
    "assignmentTypeTotals": [
        {
            "type": "ACCOUNT",
            "pendingCount": 0,
            "approvedCount": 0,
            "revokedCount": 0,
            "modifiedCount": 0
        },
        {
            "type": "PERMISSION",
            "pendingCount": 1,
            "approvedCount": 0,
            "revokedCount": 0,
            "modifiedCount": 0
        },
        {
            "type": "ROLE",
            "pendingCount": 0,
            "approvedCount": 0,
            "revokedCount": 0,
            "modifiedCount": 0
        },
        {
            "type": "SYSTEM_ACCESS",
            "pendingCount": 0,
            "approvedCount": 0,
            "revokedCount": 0,
            "modifiedCount": 0
        },
        {
            "type": "WORKFLOW_APPROVAL",
            "pendingCount": 0,
            "approvedCount": 0,
            "revokedCount": 0,
            "modifiedCount": 0
        },
        {
            "type": "ACCESS_POLICY",
            "pendingCount": 0,
            "approvedCount": 0,
            "revokedCount": 0,
            "modifiedCount": 0
        }
    ],
    "groupTotals": [
        {
            "type": "RESOURCE",
            "topGroups": [
                {
                    "name": "Database Access Review - July",
                    "pendingCount": 1,
                    "approvedCount": 0,
                    "revokedCount": 0,
                    "modifiedCount": 0
                }
            ]
        },
        {
            "type": "DEPARTMENT",
            "topGroups": [
                {
                    "name": "Software Engineering Team",
                    "pendingCount": 1,
                    "approvedCount": 0,
                    "revokedCount": 0,
                    "modifiedCount": 0
                }
            ]
        },
        {
            "type": "ORGANIZATION",
            "topGroups": [
                {
                    "name": "IT Governance Committee",
                    "pendingCount": 1,
                    "approvedCount": 0,
                    "revokedCount": 0,
                    "modifiedCount": 0
                }
            ]
        }
    ]
}
Back to Top