List healthIssues

Namespace: microsoft.graph.security

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.

Get a list of health issue objects and their properties.

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) SecurityIdentitiesHealth.Read.All Not available.
Delegated (personal Microsoft account) Not supported. Not supported.
Application SecurityIdentitiesHealth.Read.All Not available.

HTTP request

GET /security/identities/healthIssues

Optional query parameters

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

The following examples show how to use optional query parameters.

Get all open health alerts

GET /security/identities/healthIssues?$filter=Status eq 'open'

Get the top five open health alerts

GET /security/identities/healthIssues?$filter=Status eq 'open'&$top=5

Get open health alerts based on issue type

GET /security/identities/healthIssues?$filter=Status eq 'open' and healthIssueType eq 'global'
GET /security/identities/healthIssues?$filter=Status eq 'open' and healthIssueType eq 'sensor'

Get open health alerts based on severity

GET /security/identities/healthIssues?$filter=Status eq 'open' and severity eq 'medium'
GET /security/identities/healthIssues?$filter=Status eq 'open' and severity eq 'low'

See open global health alerts that domain name \ sensor DNS name ends with spesific value (name=contoso.com)

GET /security/identities/healthissues?$filter=Status eq 'open' and healthIssueType eq 'global' and domainNames/any(s:endswith(s,'contoso.com'))
GET /security/identities/healthissues?$filter=Status eq 'open' and healthIssueType eq 'global' and sensorDNSNames/any(s:endswith(s,'contoso.com'))

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

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/beta/security/identities/healthIssues

Response

The following example shows the 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.security.healthIssue",
      "ID": "b3c1b5fc-828c-45fa-a1e1-10d74f6d6e9c",
      "displayName": "Directory Services Object Auditing is not configured as required",
      "healthIssueType": "Global",
      "issueTypeId": "1031",
      "severity": "medium",
      "status": "open",
      "createdDateTime": "2022-07-15T12:19:27.7211305Z",
      "lastModifiedDateTime": "2022-07-15T12:19:27.7211305Z",
      "domainNames": [
        "domain1.contoso.com",
        "domain2.contoso.com"
      ],
      "sensorDNSNames": [
        "DC1.domain1.contoso.com",
        "DC2.domain2.contoso.com"
      ],
      "description": "Directory Services Object Auditing is not configured as required on domain1.contoso.com",
      "recommendations": [
        "Please configure the Directory Services Object Auditing events according to the guidance as described in https://aka.ms/mdi/objectauditing"
      ],
      "recommendedActionCommands": [
        "Import-Module DefenderForIdentity",
        "Set-MDIConfiguration -Configuration DomainObjectAuditing -Mode Domain -Force"
      ],
      "additionalInformation": [
        "Descendant User Objects (Schema-Id-Guid: bf967aba-0de6-11d0-a285-00aa003049e2)",
        "Descendant Group Objects (Schema-Id-Guid: bf967a9c-0de6-11d0-a285-00aa003049e2)",
        "Descendant Computer Objects (Schema-Id-Guid: bf967a86-0de6-11d0-a285-00aa003049e2)",
        "Descendant msDS-GroupManagedServiceAccount Objects (Schema-Id-Guid: 7b8b558a-93a5-4af7-adca-c017e67f1057)",
        "Descendant msDS-ManagedServiceAccount Objects (Schema-Id-Guid: ce206244-5827-4a86-ba1c-1c0c386c1b64)"
      ]
    }
  ]
}