Get insights for an access review

get

/access-governance/access-reviews/20250331/accessReviews/{accessReviewId}/insights

Returns insights of the access review for a given accessReviewId.

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 access review insights.
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 : AccessReviewInsights
Type: object
The insight information for the given access review.
Show Source
Nested Schema : alignments
Type: array
The list of alignment information.
Show Source
Nested Schema : IdentityCollectionMembership
Type: object
The count for members in the identity collection.
Show Source
Nested Schema : insights
Type: array
The list of insights.
Show Source
Nested Schema : locationAlignments
Type: array
The list of location alignment information.
Show Source
Nested Schema : peerSimilarities
Type: array
The list of peer similarities information.
Show Source
Nested Schema : textualExplanations
Type: array
The list of textual explanation.
Show Source
Nested Schema : Alignment
Type: object
The alignment information for the given Identity Collection.
Show Source
Nested Schema : InsightAttribute
Type: object
The insight attribute
Show Source
Nested Schema : LocationAlignment
Type: object
The alignment information for the given Identity Collection based on a location
Show Source
Nested Schema : locationScores
Type: array
The scores per location for this alignment type
Show Source
Nested Schema : LocationScore
Type: object
The alignment score for the given location
Show Source
Nested Schema : PeerSimilarity
Type: object
The list of peer similarities information
Show Source
Nested Schema : similarities
Type: array
The list of similarities for this alignment type
Show Source
Nested Schema : Similarity
Type: object
The similarity information
Show Source
Nested Schema : TextualExplanation
Type: object
Textual explanation of review recommendation
Show Source
Nested Schema : attributes
Type: array
Maximum Number of Items: 4
Attributes of textual explanation
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

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 insights for a given access review task. The accessReviewId path parameter is mandatory.

cURL Example

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

Example of the Response Body

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

{
    "version": 3,
    "alignments": null,
    "insights": null,
    "locationAlignments": null,
    "peerSimilarities": [
        {
            "type": "SAME_MANAGER",
            "name": null,
            "similarities": null
        },
        {
            "type": "SAME_JOB_CODE",
            "name": null,
            "similarities": null
        },
        {
            "type": "SAME_ORGANIZATION",
            "name": null,
            "similarities": null
        }
    ],
    "identityCollectionMembership": null,
    "textualExplanations": [
        {
            "explanation": "This identity has no peers across <strong>all</strong> locations with the same: ",
            "attributes": ["Job code"]
        }
    ]
}
Back to Top