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.
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 |
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.
- Reports Reader
- Security Reader
- Global Reader
- Security Operator
- Application Administrator
- Security Administrator
- Cloud Application Administrator
GET /directory/recommendations/tenantSecureScores
Name | Description |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this function returns a 200 OK
response code and a tenantSecureScore collection in the response body.
The following example shows a request.
GET https://graph.microsoft.com/beta/directory/recommendations/tenantSecureScores
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"
}
]
}