List history (risk history of riskyServicePrincipal)
Article
08/23/2023
2 contributors
Feedback
In this article
Namespace: microsoft.graph
Get the risk history of a riskyServicePrincipal object.
Note: Using the riskyServicePrincipal API requires an Entra Workload Identity Premium license.
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)
IdentityRiskyServicePrincipal.Read.All, IdentityRiskyServicePrincipal.ReadWrite.All
Delegated (personal Microsoft account)
Not supported.
Application
IdentityRiskyServicePrincipal.Read.All, IdentityRiskyServicePrincipal.ReadWrite.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/riskyServicePrincipals/{riskyServicePrincipalId}/history
Name
Description
Authorization
Bearer {token}. Required.
Request body
Do not supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and a collection of riskyServicePrincipalHistoryItem objects in the response body.
Example
Request
GET https://graph.microsoft.com/v1.0/identityProtection/riskyServicePrincipals/{riskyServicePrincipalId}/history
// Code snippets are only available for the latest version. Current version is 5.x
var graphClient = new GraphServiceClient(requestAdapter);
var result = await graphClient.IdentityProtection.RiskyServicePrincipals["{riskyServicePrincipal-id}"].History.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 risky-service-principals history list --risky-service-principal-id {riskyServicePrincipal-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)
history, err := graphClient.IdentityProtection().RiskyServicePrincipals().ByRiskyServicePrincipalId("riskyServicePrincipal-id").History().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();
RiskyServicePrincipalHistoryItemCollectionPage history = graphClient.identityProtection().riskyServicePrincipals("{riskyServicePrincipalId}").history()
.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 history = await client.api('/identityProtection/riskyServicePrincipals/{riskyServicePrincipalId}/history')
.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()->riskyServicePrincipals()->byRiskyServicePrincipalId('riskyServicePrincipal-id')->history()->get()->wait();
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.risky_service_principals.by_risky_service_principal_id('riskyServicePrincipal-id').history.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
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#riskyServicePrincipalHistoryItem",
"value": [
{
"id": "0fbef39d-9e8c-460b-444e-8ae5abcdffd7",
"isEnabled": true,
"isProcessing": false,
"riskLastUpdatedDateTime": "2021-10-20T01:14:37.7214159Z",
"riskState": "atRisk",
"riskDetail": "none",
"riskLevel": "high",
"displayName": "Contoso App",
"appId": "ede08db0-9492-4a0c-8ae3-8ggg056c5d75",
"servicePrincipalType": "Application",
"initiatedBy": null,
"activity": null
}
]
}