Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
In this article
Namespace: microsoft.graph
Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
This API is available in the following national cloud deployments.
Global service | US Government L4 | US Government L5 (DOD) | China operated by 21Vianet |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
Permission type | Permissions (from least to most privileged) |
---|---|
Delegated (work or school account) | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. |
Application | DeviceManagementConfiguration.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementManagedDevices.Read.All, DeviceManagementManagedDevices.ReadWrite.All |
GET /deviceManagement/userExperienceAnalyticsDevicePerformance/summarizeDevicePerformanceDevices
Header | Value |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Accept | application/json |
In the request URL, provide the following query parameters with values. The following table shows the parameters that can be used with this function.
Property | Type | Description |
---|---|---|
summarizeBy | userExperienceAnalyticsSummarizedBy |
If successful, this function returns a 200 OK
response code and a userExperienceAnalyticsDevicePerformance collection in the response body.
Here is an example of the request.
GET https://graph.microsoft.com/beta/deviceManagement/userExperienceAnalyticsDevicePerformance/summarizeDevicePerformanceDevices(summarizeBy='parameterValue')
Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 909
{
"value": [
{
"@odata.type": "#microsoft.graph.userExperienceAnalyticsDevicePerformance",
"id": "852ae826-e826-852a-26e8-2a8526e82a85",
"deviceName": "Device Name value",
"model": "Model value",
"manufacturer": "Manufacturer value",
"diskType": "hdd",
"operatingSystemVersion": "Operating System Version value",
"bootScore": 9,
"coreBootTimeInMs": 0,
"groupPolicyBootTimeInMs": 7,
"healthStatus": "insufficientData",
"loginScore": 10,
"coreLoginTimeInMs": 1,
"groupPolicyLoginTimeInMs": 8,
"deviceCount": 11,
"responsiveDesktopTimeInMs": 9,
"blueScreenCount": 15,
"restartCount": 12,
"averageBlueScreens": 6.0,
"averageRestarts": 5.0,
"startupPerformanceScore": 7.666666666666667,
"modelStartupPerformanceScore": 9.3333333333333339
}
]
}