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.
Allow admins to mark an event in Microsoft Entra sign-in logs as safe. Admins can either mark the events flagged as risky by Microsoft Entra ID Protection as safe, or they can mark unflagged events as safe. For details about investigating Identity Protection risks, see How to investigate risk.
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) |
IdentityRiskyUser.ReadWrite.All |
Not available. |
Delegated (personal Microsoft account) |
Not supported. |
Not supported. |
Application |
IdentityRiskEvent.ReadWrite.All |
Not available. |
Important
In delegated scenarios with work or school accounts, the signed-in user must be assigned a supported Microsoft Entra role or a custom role with a supported role permission. Security Administrator is the least privileged role supported for this operation.
HTTP request
POST /auditLogs/signIns/confirmSafe
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 |
requestIds |
String collection |
The IDs of the sign in events that should be marked safe for Microsoft Entra ID Protection. |
Response
If successful, this action returns a 204 No Content
response code.
Examples
Request
POST https://graph.microsoft.com/beta/auditLogs/signIns/confirmSafe
Content-Type: application/json
{
"requestIds": [
"5a0c76d2-cb57-4ece-9bc1-c323178f116a",
"96609214-09ef-4f80-9d4a-ace5fceecaec",
"05020696-4eb8-45a3-918f-8f8bb7ad6015"
]
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.AuditLogs.SignIns.ConfirmSafe;
var requestBody = new ConfirmSafePostRequestBody
{
RequestIds = new List<string>
{
"5a0c76d2-cb57-4ece-9bc1-c323178f116a",
"96609214-09ef-4f80-9d4a-ace5fceecaec",
"05020696-4eb8-45a3-918f-8f8bb7ad6015",
},
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
await graphClient.AuditLogs.SignIns.ConfirmSafe.PostAsync(requestBody);
mgc-beta audit-logs sign-ins confirm-safe post --body '{\
"requestIds": [\
"5a0c76d2-cb57-4ece-9bc1-c323178f116a",\
"96609214-09ef-4f80-9d4a-ace5fceecaec",\
"05020696-4eb8-45a3-918f-8f8bb7ad6015"\
]\
}\
'
// Code snippets are only available for the latest major version. Current major version is $v0.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
graphauditlogs "github.com/microsoftgraph/msgraph-beta-sdk-go/auditlogs"
//other-imports
)
requestBody := graphauditlogs.NewConfirmSafePostRequestBody()
requestIds := []string {
"5a0c76d2-cb57-4ece-9bc1-c323178f116a",
"96609214-09ef-4f80-9d4a-ace5fceecaec",
"05020696-4eb8-45a3-918f-8f8bb7ad6015",
}
requestBody.SetRequestIds(requestIds)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
graphClient.AuditLogs().SignIns().ConfirmSafe().Post(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
com.microsoft.graph.beta.auditlogs.signins.confirmsafe.ConfirmSafePostRequestBody confirmSafePostRequestBody = new com.microsoft.graph.beta.auditlogs.signins.confirmsafe.ConfirmSafePostRequestBody();
LinkedList<String> requestIds = new LinkedList<String>();
requestIds.add("5a0c76d2-cb57-4ece-9bc1-c323178f116a");
requestIds.add("96609214-09ef-4f80-9d4a-ace5fceecaec");
requestIds.add("05020696-4eb8-45a3-918f-8f8bb7ad6015");
confirmSafePostRequestBody.setRequestIds(requestIds);
graphClient.auditLogs().signIns().confirmSafe().post(confirmSafePostRequestBody);
const options = {
authProvider,
};
const client = Client.init(options);
const confirmSafe = {
requestIds: [
'5a0c76d2-cb57-4ece-9bc1-c323178f116a',
'96609214-09ef-4f80-9d4a-ace5fceecaec',
'05020696-4eb8-45a3-918f-8f8bb7ad6015'
]
};
await client.api('/auditLogs/signIns/confirmSafe')
.version('beta')
.post(confirmSafe);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\AuditLogs\SignIns\ConfirmSafe\ConfirmSafePostRequestBody;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new ConfirmSafePostRequestBody();
$requestBody->setRequestIds(['5a0c76d2-cb57-4ece-9bc1-c323178f116a', '96609214-09ef-4f80-9d4a-ace5fceecaec', '05020696-4eb8-45a3-918f-8f8bb7ad6015', ]);
$graphServiceClient->auditLogs()->signIns()->confirmSafe()->post($requestBody)->wait();
Import-Module Microsoft.Graph.Beta.Reports
$params = @{
requestIds = @(
"5a0c76d2-cb57-4ece-9bc1-c323178f116a"
"96609214-09ef-4f80-9d4a-ace5fceecaec"
"05020696-4eb8-45a3-918f-8f8bb7ad6015"
)
}
Confirm-MgBetaAuditLogSignInSafe -BodyParameter $params
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.auditlogs.signins.confirm_safe.confirm_safe_post_request_body import ConfirmSafePostRequestBody
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = ConfirmSafePostRequestBody(
request_ids = [
"5a0c76d2-cb57-4ece-9bc1-c323178f116a",
"96609214-09ef-4f80-9d4a-ace5fceecaec",
"05020696-4eb8-45a3-918f-8f8bb7ad6015",
],
)
await graph_client.audit_logs.sign_ins.confirm_safe.post(request_body)
Response
HTTP/1.1 204 No Content