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.
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. The maximum count of users to dismiss in one call is 60.
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
HTTP request
POST /riskyUsers/dismiss
GET /identityProtection/riskyUsers/dismiss
Request headers
Name
Description
Authorization
Bearer {token}. Required.
Request body
Specify the userIds to dismiss in the request body.
Response
If successful, this method returns a 204 No Content response code. It does not return anything in the response body.
GraphServiceClient graphClient = new GraphServiceClient( authProvider );
var userIds = new List<String>()
{
"04487ee0-f4f6-4e7f-8999-facc5a30e232"
};
await graphClient.IdentityProtection.RiskyUsers
.Dismiss(userIds)
.Request()
.PostAsync();
Important
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
POST https://graph.microsoft.com/beta/identityProtection/riskyUsers/dismiss
Content-Type: application/json
{
"userIds": [
"04487ee0-f4f6-4e7f-8999-facc5a30e232"
]
}
GraphServiceClient graphClient = new GraphServiceClient( authProvider );
var userIds = new List<String>()
{
"04487ee0-f4f6-4e7f-8999-facc5a30e232"
};
await graphClient.IdentityProtection.RiskyUsers
.Dismiss(userIds)
.Request()
.PostAsync();
Important
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.
Microsoft Graph SDKs use the v1.0 version of the API by default, and do not support all the types, properties, and APIs available in the beta version. For details about accessing the beta API with the SDK, see Use the Microsoft Graph SDKs with the beta API.