recommendation: tenantSecureScores

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.

Get the historical Secure Score data for your Microsoft Entra tenant. This API returns the latest score and doesn't include the details for each control. To view detailed information, see the secureScore resource type and its associated methods.

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

For delegated scenarios, the calling user must have at least one of the following Microsoft Entra roles:

  • Reports Reader
  • Security Reader
  • Global Reader
  • Security Operator
  • Application Administrator
  • Security Administrator
  • Cloud Application Administrator

HTTP request

GET /directory/recommendations/tenantSecureScores

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 function returns a 200 OK response code and a tenantSecureScore collection in the response body.

Examples

Request

The following example shows a request.

GET https://graph.microsoft.com/beta/directory/recommendations/tenantSecureScores

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

{
    "@odata.context": "https://graph.microsoft.com/beta/$metadata#Collection(microsoft.graph.tenantSecureScore)",
    "value": [
        {
            "tenantScore": 11,
            "tenantMaxScore": 56,
            "createDateTime": "2023-11-01T00:00:00Z"
        },
        {
            "tenantScore": 11,
            "tenantMaxScore": 56,
            "createDateTime": "2023-10-31T00:00:00Z"
        },
        {
            "tenantScore": 11,
            "tenantMaxScore": 56,
            "createDateTime": "2023-10-30T00:00:00Z"
        },
        {
            "tenantScore": 11,
            "tenantMaxScore": 56,
            "createDateTime": "2023-10-29T00:00:00Z"
        }
    ]
}