List history (risk history of riskyServicePrincipal)
Namespace: microsoft.graph
Get the risk history of a riskyServicePrincipal object.
Note: Using the riskyServicePrincipal API requires a Microsoft Entra Workload ID Premium license.
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) | IdentityRiskyServicePrincipal.Read.All | IdentityRiskyServicePrincipal.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | IdentityRiskyServicePrincipal.Read.All | IdentityRiskyServicePrincipal.ReadWrite.All |
For delegated scenarios, the signed-in user must be assigned at least one of the following Microsoft Entra roles.
- Global Reader
- Security Operator
- Security Reader
- Security Administrator
HTTP request
GET /identityProtection/riskyServicePrincipals/{riskyServicePrincipalId}/history
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. |
Request body
Don't 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
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
}
]
}
Feedback
Submit and view feedback for