unifiedRoleManagementAlert: refresh

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.

Refresh incidents on all security alerts or on a single security alert in Privileged Identity Management (PIM) for Microsoft Entra roles. This task is a long-running operation and the unifiedRoleManagementAlert object will be updated only when the operation completes.

This API is available in the following national cloud deployments.

Global service US Government L4 US Government L5 (DOD) China operated by 21Vianet

Permissions

Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.

Permission type Least privileged permissions Higher privileged permissions
Delegated (work or school account) RoleManagementAlert.ReadWrite.Directory Not available.
Delegated (personal Microsoft account) Not supported. Not supported.
Application RoleManagementAlert.ReadWrite.Directory Not available.

For delegated scenarios, the calling user must also be assigned at least the Privileged Role Administrator Microsoft Entra role.

HTTP request

To refresh incidents on all alerts, use the following request.

POST /identityGovernance/roleManagementAlerts/alerts/refresh

To refresh a single alert, use the below request.

POST /identityGovernance/roleManagementAlerts/alerts/{alertId}/refresh

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.
Content-Type application/json. Required.

Request body

For refreshing incidents on all alerts (refresh collection of alerts), in the request body, supply a JSON representation of the parameters.

The following table shows the parameters that can be used with this action.

Parameter Type Description
scopeType String The type of the scope where the alert is created. DirectoryRole is the only supported one for Microsoft Entra roles.
scopeId String The identifier of the scope where the alert applies. / is the only supported one for the tenant.

For refreshing a single alert, do not specify a request body.

Response

If successful, this action returns a 202 Accepted response code with a Location header which specifies the URL for polling the operation status.

Examples

Example 1: Refresh all the alerts under a resource scope like a tenant

Request

The following example shows a request.

POST https://graph.microsoft.com/beta/identityGovernance/roleManagementAlerts/alerts/refresh
Content-Type: application/json

{
    "scopeId" : "/",
    "scopeType" : "DirectoryRole"
}

Response

The following example shows the response.

HTTP/1.1 202 Accepted
Content-Type: application/json
Location: https://graph.microsoft.com/beta/identityGovernance/roleManagementAlerts/operations/5c5670d6-a2c0-a394-ef42-882954856de5

Example 2: Refresh a single alert under a resource scope like a tenant

Request

The following example shows a request.

POST https://graph.microsoft.com/beta/identityGovernance/roleManagementAlerts/alerts/DirectoryRole_19356be4-7e93-4ed6-a7c6-0ae28454d125_TooManyGlobalAdminsAssignedToTenantAlert/refresh

Response

The following example shows the response.

HTTP/1.1 202 Accepted
Location: https://graph.microsoft.com/beta/identityGovernance/roleManagementAlerts/operations/7d6771e9-e1d0-a344-fg41-882954856ed7