You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#Customer intent: As an access package manager, I want detailed information about requests for access packages so that I can view the status and troubleshoot any issues.
22
22
23
23
---
24
-
# View requests for an access package in Azure AD entitlement management
24
+
# View and remove requests for an access package in Azure AD entitlement management
25
25
26
-
In Azure AD entitlement management, you can see who has requested access packages, their policy, and status. This article describes how to view requests for an access packages.
26
+
In Azure AD entitlement management, you can see who has requested access packages, their policy, and status. This article describes how to view requests for an access package, and remove requests that are no longer needed.
27
27
28
28
## View requests
29
29
@@ -39,8 +39,37 @@ In Azure AD entitlement management, you can see who has requested access package
39
39
40
40

41
41
42
+
1. You can click on **Request History details** to see who approved a request, what their approval justifications were, and when access was delivered.
43
+
44
+
If you have a set of users whose requests are in the "Partially Delivered" or "Failed" state, you can retry those requests by using the [reprocess functionality](entitlement-management-reprocess-access-package-requests.md).
45
+
46
+
### View assignments with Microsoft Graph
47
+
You can also retrieve requests for an access package using Microsoft Graph. A user in an appropriate role with an application that has the delegated `EntitlementManagement.Read.All` or `EntitlementManagement.ReadWrite.All` permission can call the API to [list accessPackageAssignmentRequests](/graph/api/accesspackageassignmentrequest-list?view=graph-rest-beta&preserve-view=true). You can supply a filter to indicate a specific access package, such as: `$expand=accessPackage&$filter=accessPackage/id eq '9bbe5f7d-f1e7-4eb1-a586-38cdf6f8b1ea'`. An application that has the application permission `EntitlementManagement.Read.All` or `EntitlementManagement.ReadWrite.All` permission can also use this API.
48
+
49
+
## Remove request (Preview)
50
+
51
+
You can also remove a completed request that is no longer needed. To remove a request:
52
+
53
+
1. In the Azure portal, click **Azure Active Directory** and then click **Identity Governance**.
54
+
55
+
1. In the left menu, click **Access packages** and then open the access package.
56
+
57
+
1. Click **Requests**.
58
+
59
+
1. Find the request you want to remove from the access package.
60
+
61
+
1. Select the Remove button.
62
+
63
+
> [!NOTE]
64
+
> If you remove a completed request from an access package, this doesn't remove the active assignment, only the data of the request. So the requestor will continue to have access. If you also need to remove an assignment and the resulting access from that access package, in the left menu, click **Assignments**, locate the assignment, and then [remove the assignment](entitlement-management-access-package-assignments.md).
65
+
66
+
### Remove a request with Microsoft Graph
67
+
68
+
You can also remove a request using Microsoft Graph. A user in an appropriate role with an application that has the delegated `EntitlementManagement.ReadWrite.All` permission, or an application with that application permission, can call the API to [remove an accessPackageAssignmentRequest](/graph/api/accesspackageassignmentrequest-delete?view=graph-rest-beta&preserve-view=true).
69
+
42
70
## Next steps
43
71
72
+
-[Reprocess requests for an access package](entitlement-management-reprocess-access-package-requests.md)
44
73
-[Change request and approval settings for an access package](entitlement-management-access-package-request-policy.md)
45
74
-[View, add, and remove assignments for an access package](entitlement-management-access-package-assignments.md)
0 commit comments