Get servicePrincipalRiskDetection
Article
08/19/2023
2 contributors
Feedback
In this article
Namespace: microsoft.graph
Read the properties and relationships of a servicePrincipalRiskDetection object.
Note: You must have an Entra Workload Identity Premium license to use the servicePrincipalRiskDetection API.
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)
IdentityRiskEvent.Read.All
Delegated (personal Microsoft account)
Not supported.
Application
IdentityRiskEvent.Read.All
For delegated scenarios, the signed-in user must have one of the following Azure AD roles .
Global Reader
Security Operator
Security Reader
Security Administrator
Global Administrator
HTTP request
GET /identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetectionId}
Name
Description
Authorization
Bearer {token}. Required.
Content-Type
application/json
Request body
Do not supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and a servicePrincipalRiskDetection object in the response body.
Example: Get a specific risk detection object
Request
GET https://graph.microsoft.com/v1.0/identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetectionId}
// Code snippets are only available for the latest version. Current version is 5.x
var graphClient = new GraphServiceClient(requestAdapter);
var result = await graphClient.IdentityProtection.ServicePrincipalRiskDetections["{servicePrincipalRiskDetection-id}"].GetAsync();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
// THE CLI IS IN PREVIEW. NON-PRODUCTION USE ONLY
mgc identity-protection service-principal-risk-detections get --service-principal-risk-detection-id {servicePrincipalRiskDetection-id}
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-sdk-go"
//other-imports
)
graphClient := msgraphsdk.NewGraphServiceClientWithCredentials(cred, scopes)
servicePrincipalRiskDetections, err := graphClient.IdentityProtection().ServicePrincipalRiskDetections().ByServicePrincipalRiskDetectionId("servicePrincipalRiskDetection-id").Get(context.Background(), nil)
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
GraphServiceClient graphClient = GraphServiceClient.builder().authenticationProvider( authProvider ).buildClient();
ServicePrincipalRiskDetection servicePrincipalRiskDetection = graphClient.identityProtection().servicePrincipalRiskDetections("{servicePrincipalRiskDetectionId}")
.buildRequest()
.get();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
const options = {
authProvider,
};
const client = Client.init(options);
let servicePrincipalRiskDetection = await client.api('/identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetectionId}')
.get();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
<?php
// THIS SNIPPET IS A PREVIEW VERSION OF THE SDK. NON-PRODUCTION USE ONLY
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$result = $graphServiceClient->identityProtection()->servicePrincipalRiskDetections()->byServicePrincipalRiskDetectionId('servicePrincipalRiskDetection-id')->get()->wait();
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
Import-Module Microsoft.Graph.Identity.SignIns
Get-MgServicePrincipalRiskDetection -ServicePrincipalRiskDetectionId $servicePrincipalRiskDetectionId
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
# THE PYTHON SDK IS IN PREVIEW. FOR NON-PRODUCTION USE ONLY
graph_client = GraphServiceClient(request_adapter)
result = await graph_client.identity_protection.service_principal_risk_detections.by_service_principal_risk_detection_id('servicePrincipalRiskDetection-id').get()
For details about how to add the SDK to your project and create an authProvider instance, see the SDK documentation .
Response
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"value": {
"@odata.type": "#microsoft.graph.servicePrincipalRiskDetection",
"id": "2856d6e87c5c3a74021ff70291fa68107570c150d8dc145bdea5",
"requestId": null,
"correlationId": null,
"riskEventType": "investigationsThreatIntelligence",
"riskState": "atRisk",
"riskLevel": "high",
"riskDetail": "none",
"source": "IdentityProtection",
"detectionTimingType": "offline",
"activity": "servicePrincipal",
"tokenIssuerType": "AzureAD",
"ipAddress": null,
"location": null,
"activityDateTime": "2021-10-26T00:00:00Z",
"detectedDateTime": "2021-10-26T00:00:00Z",
"lastUpdatedDateTime": "2021-10-26T16:28:17.8202975Z)",
"servicePrincipalId": "99b8d28b-11ae-4e84-9bef-0e767e286grg",
"servicePrincipalDisplayName": "Contoso App",
"appId": "0grb38ac-a572-491d-a9db-b07197643457",
"keyIds": [
"9d9fea30-d8e3-481b-b57c-0ef569a989e5"
],
"additionalInfo": "[{\"Key\":\"alertUrl\",\"Value\":null}]"
}
}