cloudPcReports: getRawRemoteConnectionReports
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 raw real-time remote connection report for a Cloud PC without any calculation, such as roundTripTime or available bandwidth, which are aggregated hourly from the raw event data.
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) | CloudPC.Read.All | CloudPC.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | CloudPC.Read.All | CloudPC.ReadWrite.All |
HTTP request
POST /deviceManagement/virtualEndpoint/reports/getRawRemoteConnectionReports
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Content-Type | application/json. Required. |
Request body
In the request body, supply a JSON representation of the parameters.
The following table shows the parameters that can be used with this action.
Parameter | Type | Description |
---|---|---|
filter | String | OData filter syntax. Supported filters include and , or , lt , le , gt , ge and eq . |
select | String collection | OData select syntax. The columns to include in the report. |
skip | Int32 | The number of records to skip. |
top | Int32 | The top number of records to return. |
Response
If successful, this action returns a 200 OK
response code and a Stream in the response body.
Examples
Request
The following example shows a request.
POST https://graph.microsoft.com/beta/deviceManagement/virtualEndpoint/reports/getRawRemoteConnectionReports
Content-Type: application/json
Content-length: 199
{
"filter": "ActivityId eq 'cb6ad4c4-8a17-4245-a644-e4436b1ee204'",
"select":["RoundTripTimeInMs", "AvailableBandwidthInMbps", "SignInDateTime"],
"skip": 0,
"top": 50
}
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/octet-stream
{
"TotalRowCount": 1,
"Schema": [
{
"Column": "RoundTripTimeInMs",
"PropertyType": "Double"
}
{
"Column": "AvailableBandwidthInMbps",
"PropertyType": "Double"
},
{
"Column": "SignInDateTime",
"PropertyType": "DateTime"
}],
"Values": [
["316", "8", "2023-07-03T18:14:34Z"]
]
}