Get riskyServicePrincipal
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.
Read the properties and relationships 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 |
---|---|---|---|
✅ | ✅ | ✅ | ❌ |
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 |
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. The following least privileged roles are supported for this operation.
- Global Reader
- Security Operator
- Security Reader
- Security Administrator
GET /identityProtection/riskyServicePrincipals/{riskyServicePrincipalId}
Name | Description |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this method returns a 200 OK
response code and a riskyServicePrincipal object in the response body.
GET https://graph.microsoft.com/beta/identityProtection/riskyServicePrincipals/9089a539-a539-9089-39a5-899039a58990
HTTP/1.1 200 OK
Content-Type: application/json
{
"value": {
"@odata.type": "#microsoft.graph.riskyServicePrincipal",
"id": "9089a539-a539-9089-39a5-899039a58990",
"accountEnabled": true,
"isProcessing": false,
"riskLastUpdatedDateTime": "2021-08-14T13:06:51.0451374Z",
"riskLevel": "high",
"riskState": "atRisk",
"riskDetail": "none",
"displayName": "Contoso App",
"appId": "b55552fe-a272-4b56-990b-95038d917878",
"servicePrincipalType": "Application"
}
}