riskyUser: dismiss

Namespace: microsoft.graph

Note: Using the riskyUsers API requires an Azure AD Premium P2 license.

Dismiss the risk of one or more riskyUser objects. This action sets the targeted user's risk level to none.

This API is supported in the following national cloud deployments.

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

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) IdentityRiskyUser.ReadWrite.All
Delegated (personal Microsoft account) Not supported.
Application IdentityRiskyUser.ReadWrite.All

For delegated scenarios, the signed-in user must be assigned at least the Security Administrator Azure AD role.

HTTP request

POST /identityProtection/riskyUsers/dismiss

Request headers

Name Description
Authorization Bearer {token}. Required.
Content-Type application/json. Required.

Request body

In the request body, supply JSON representation of the parameters.

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

Parameter Type Description
userIds String collection Specify the userIds to dismiss in the request body.

Response

If successful, this action returns a 204 No Content response code.

Examples

Request

POST https://graph.microsoft.com/v1.0/identityProtection/riskyUsers/dismiss
Content-Type: application/json

{
  "userIds": [
    "04487ee0-f4f6-4e7f-8999-facc5a30e232",
    "13387ee0-f4f6-4e7f-8999-facc5120e345"
  ]
}

Response

HTTP/1.1 204 No Content