cloudPcReports: retrieveBulkActionStatusReport
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 bulk remote action status report, including data such as the bulk action ID, bulk action display name, initiating user's principal name, action type, and action state.
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/retrieveBulkActionStatusReport
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 method.
Parameter | Type | Description |
---|---|---|
filter | String | OData $filter syntax. Supported filters are: and , or , gt ,ge , and eq . |
groupBy | String collection | Specifies how to group the reports. If used, must have the same content as the select parameter. |
orderBy | String collection | Specifies the order by columns name. The default orderBy column is RequestDateTime . |
search | String | Specifies a string to search for. |
select | String collection | OData $select syntax. The selected columns of the reports. |
skip | Int32 | Number of records to skip. |
top | Int32 | The number of top records to return. If not specified, the default limit is 25, with a maximum of 100. |
Response
If successful, this method returns a 200 OK
response code and a stream object in the response body.
Examples
Request
The following example shows a request.
POST https://graph.microsoft.com/beta/deviceManagement/virtualEndpoint/reports/retrieveBulkActionStatusReport
Content-Type: application/octet-stream
{
"filter": "RequestDateTime ge datetime'2024-08-30'",
"select": [
"BulkActionId",
"BulkActionDisplayName",
"Action",
"BulkActionStatus",
"InitiatedByUserPrincipalName",
"RequestDateTime",
"SucceedCount",
"FailedCount",
"InprogressCount",
"TotalCount",
"Completion"
],
"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": "BulkActionId",
"PropertyType": "String"
},
{
"Column": "BulkActionDisplayName",
"PropertyType": "String"
},
{
"Column": "Action",
"PropertyType": "String"
},
{
"Column": "BulkActionStatus",
"PropertyType": "String"
},
{
"Column": "RequestDateTime",
"PropertyType": "DateTime"
},
{
"Column": "SucceedCount",
"PropertyType": "Int64"
},
{
"Column": "FailedCount",
"PropertyType": "Int64"
},
{
"Column": "InprogressCount",
"PropertyType": "Int64"
},
{
"Column": "TotalCount",
"PropertyType": "Int64"
}
],
"Values": [
[
"63792ef5-db62-437f-8d7e-7b3b695abb48",
"BulkRestart on 2024-8-22 17:26:52 GMT+0800 (China Standard Time)",
"Restart",
"",
"2024-08-22T09:26:54",
1,
0,
0,
1
]
]
}