List riskyServicePrincipals

Namespace: microsoft.graph

Retrieve the properties and relationships of riskyServicePrincipal objects.

Note: Using the riskyServicePrincipals 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 the Security Administrator Microsoft Entra role.

HTTP request

GET /identityProtection/riskyServicePrincipals

Optional query parameters

This method supports the $count, $filter, $select, and $top OData query parameters to help customize the response. For general information, see OData query parameters.

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.

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 riskyServicePrincipal objects in the response body.

Examples

Request

GET https://graph.microsoft.com/v1.0/identityProtection/riskyServicePrincipals

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#riskyServicePrincipal",
  "value": [
    {
      "id": "9089a539-a539-9089-39a5-899039a58990",
      "isEnabled": 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"
    }
  ]
}