List decisions (from a multi-stage access review)
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Get the decisions from a stage in a multi-stage access review. The decisions in an accessReviewStage object are represented by an accessReviewInstanceDecisionItem object.
Permissions
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Permission type | Permissions (from least to most privileged) |
---|---|
Delegated (work or school account) | AccessReview.Read.All, AccessReview.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. |
Application | AccessReview.Read.All, AccessReview.ReadWrite.All |
HTTP request
GET /identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinitionId}/instances/{accessReviewInstanceId}/stages/{accessReviewStageId}/decisions
Optional query parameters
This method supports the $select
, $filter
, $orderBy
, $skip
, and $top
OData query parameters to help customize the response. For general information, see OData query parameters.
The default page size for this API is 100 accessReviewStage objects. To improve efficiency and avoid timeouts due to large result sets, apply pagination using the $skip
and $top
query parameters. For more information, see Paging Microsoft Graph data in your app.
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. |
Request body
Do not supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and a collection of accessReviewInstanceDecisionItem objects in the response body.
Examples
Request
GET https://graph.microsoft.com/beta/identityGovernance/accessReviews/definitions/16d424f6-0100-4bf1-9ebc-fe009c5e5006/instances/bb14c722-51b8-4962-9bd2-1d96ba773d80/stages/8f0a8999-205b-4c29-a68c-2bee353fd4c5/decisions
Response
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/beta/identityGovernance/accessReviews/definitions/16d424f6-0100-4bf1-9ebc-fe009c5e5006/instances/bb14c722-51b8-4962-9bd2-1d96ba773d80/stages/8f0a8999-205b-4c29-a68c-2bee353fd4c5/decisions",
"@odata.count": 1,
"value": [
{
"id": "bfbd4d74-275c-4368-aaa1-06c93838d0d5",
"accessReviewId": "bb14c722-51b8-4962-9bd2-1d96ba773d80",
"reviewedDateTime": "2021-05-05T16:48:28.79Z",
"decision": "Deny",
"justification": "bye alexxxxx",
"appliedDateTime": "2021-05-05T16:50:30.9Z",
"applyResult": "AppliedSuccessfully",
"recommendation": "Approve",
"principalLink": "https://graph.microsoft.com/v1.0/users/540da31b-4d25-4934-b7f7-98bc230eb15a",
"resourceLink": null,
"resource": null,
"reviewedBy": {
"id": "ff15bedb-22de-49ad-b2d7-59656607484d",
"displayName": "group owner",
"userPrincipalName": "group owner"
},
"appliedBy": {
"id": "8798d204-fa3c-4d7b-977d-bc939b8a0848",
"displayName": "Access Reviews",
"userPrincipalName": ""
},
"target": {
"@odata.type": "#microsoft.graph.accessReviewInstanceDecisionItemUserTarget",
"userId": "540da31b-4d25-4934-b7f7-98bc230eb15a",
"userDisplayName": "Alex Wilber",
"userPrincipalName": "AlexW@contoso.com"
},
"principal": {
"@odata.type": "#microsoft.graph.userIdentity",
"id": "540da31b-4d25-4934-b7f7-98bc230eb15a",
"displayName": "Alex Wilber",
"userPrincipalName": "AlexW@contoso.com"
}
}
]
}
Feedback
Submit and view feedback for