| title | List secureScores |
|---|---|
| description | Retrieve a list of secureScore objects. |
| author | preetikr |
| ms.localizationpriority | medium |
| ms.subservice | security |
| doc_type | apiPageType |
| ms.date | 07/11/2024 |
Namespace: microsoft.graph
Retrieve a list of secureScore objects.
[!INCLUDE national-cloud-support]
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.
[!INCLUDE permissions-table]
GET /security/secureScores
GET /security/secureScores?$top=1
GET /security/secureScores?$top=1&$skip=7
GET /security/secureScores?$filter={property} eq '{property-value}'This method supports the following OData query parameters to help customize the response:
$count$filter$skip$topwill return the aggregated top results from each security API provider.
| Name | Description |
|---|---|
| Authorization | Bearer {code}. Required. |
Don't supply a request body for this method. The request body will be ignored.
If successful, this method returns a 200 OK response code and collection of secureScores objects in the response body.
The following example shows a request.
GET https://graph.microsoft.com/v1.0/security/secureScores?$top=1
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
The following example shows the response.
HTTP/1.1 200 OK
Content-type: application/json
{
"value": [
{
"id": "00000001-0001-0001-0001-000000000001c_2019-03-19",
"azureTenantId": "00000001-0001-0001-0001-000000000001c",
"activeUserCount": 0,
"createdDateTime": "2019-03-19T15:21:00Z",
"currentScore": 387.0,
"enabledServices": [
"HasExchange",
"HasSharePoint",
"HasInTune"
],
"licensedUserCount": 100,
"maxScore": 697.0,
"averageComparativeScores": [
{
"basis": "AllTenants",
"averageScore": 37.0
},
{
"basis": "TotalSeats",
"averageScore": 46.0
},
{
"basis": "IndustryTypes",
"averageScore": 109.0
}
],
"controlScores": [
{
"controlCategory": "Identity",
"controlName": "AdminMFA",
"description": "Requiring multi-factor authentication (MFA) for all Azure Active Directory accounts with privileged roles",
"score": 35.0
},
{
"controlCategory": "Data",
"controlName": "DLPEnabled",
"description": "Data Loss Prevention (DLP) policies can be used to comply with business standards and industry regulations.",
"score": 20.0
}
],
"vendorInformation": {
"provider": "SecureScore",
"providerVersion": null,
"subProvider": null,
"vendor": "Microsoft"
}
}
]
}