Namespace: microsoft.graph.windowsUpdates
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.
Enroll updatableAsset resources of the same type in update management by Windows Autopatch.
You can also use the method enrollAssets to enroll assets.
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) |
WindowsUpdates.ReadWrite.All |
Not available. |
Delegated (personal Microsoft account) |
Not supported. |
Not supported. |
Application |
WindowsUpdates.ReadWrite.All |
Not available. |
Important
In delegated scenarios with work or school accounts, the signed-in user must be an owner or member of the group or be assigned a supported Microsoft Entra role or a custom role with a supported role permission. Intune Administrator, or Windows Update Deployment Administrator are the least privileged roles supported for this operation.
HTTP request
POST /admin/windows/updates/updatableAssets/enrollAssetsById
Request body
In the request body, supply JSON representation of the parameters.
The following table shows the parameters that can be used with this action.
Parameter |
Type |
Description |
updateCategory |
microsoft.graph.windowsUpdates.updateCategory |
The category of updates for Windows Autopatch to manage. Supports a subset of the values for updateCategory. Possible values are: driver , feature , quality , unknownFutureValue . |
memberEntityType |
String |
The full type of the updatableAsset resources. Possible values are: #microsoft.graph.windowsUpdates.azureADDevice . |
ids |
String collection |
List of identifiers that correspond to the updatableAsset resources to enroll in update management for the given updateCategory. |
Response
If successful, this action returns a 202 Accepted
response code. It doesn't return anything in the response body.
Examples
Request
POST https://graph.microsoft.com/beta/admin/windows/updates/updatableAssets/enrollAssetsById
Content-Type: application/json
{
"updateCategory": "feature",
"memberEntityType": "#microsoft.graph.windowsUpdates.azureADDevice",
"ids": [
"String",
"String",
"String"
]
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Admin.Windows.Updates.UpdatableAssets.MicrosoftGraphWindowsUpdatesEnrollAssetsById;
using Microsoft.Graph.Beta.Models.WindowsUpdates;
var requestBody = new EnrollAssetsByIdPostRequestBody
{
UpdateCategory = UpdateCategory.Feature,
MemberEntityType = "#microsoft.graph.windowsUpdates.azureADDevice",
Ids = new List<string>
{
"String",
"String",
"String",
},
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
await graphClient.Admin.Windows.Updates.UpdatableAssets.MicrosoftGraphWindowsUpdatesEnrollAssetsById.PostAsync(requestBody);
mgc-beta admin windows updates updatable-assets microsoft-graph-windows-updates-enroll-assets-by-id post --body '{\
"updateCategory": "feature",\
"memberEntityType": "#microsoft.graph.windowsUpdates.azureADDevice",\
"ids": [\
"String",\
"String",\
"String"\
]\
}\
'
// Code snippets are only available for the latest major version. Current major version is $v0.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
graphadmin "github.com/microsoftgraph/msgraph-beta-sdk-go/admin"
graphmodelswindowsupdates "github.com/microsoftgraph/msgraph-beta-sdk-go/models/windowsupdates"
//other-imports
)
requestBody := graphadmin.NewEnrollAssetsByIdPostRequestBody()
updateCategory := graphmodels.FEATURE_UPDATECATEGORY
requestBody.SetUpdateCategory(&updateCategory)
memberEntityType := "#microsoft.graph.windowsUpdates.azureADDevice"
requestBody.SetMemberEntityType(&memberEntityType)
ids := []string {
"String",
"String",
"String",
}
requestBody.SetIds(ids)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
graphClient.Admin().Windows().Updates().UpdatableAssets().MicrosoftGraphWindowsUpdatesEnrollAssetsById().Post(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
com.microsoft.graph.beta.admin.windows.updates.updatableassets.microsoftgraphwindowsupdatesenrollassetsbyid.EnrollAssetsByIdPostRequestBody enrollAssetsByIdPostRequestBody = new com.microsoft.graph.beta.admin.windows.updates.updatableassets.microsoftgraphwindowsupdatesenrollassetsbyid.EnrollAssetsByIdPostRequestBody();
enrollAssetsByIdPostRequestBody.setUpdateCategory(com.microsoft.graph.beta.models.windowsupdates.UpdateCategory.Feature);
enrollAssetsByIdPostRequestBody.setMemberEntityType("#microsoft.graph.windowsUpdates.azureADDevice");
LinkedList<String> ids = new LinkedList<String>();
ids.add("String");
ids.add("String");
ids.add("String");
enrollAssetsByIdPostRequestBody.setIds(ids);
graphClient.admin().windows().updates().updatableAssets().microsoftGraphWindowsUpdatesEnrollAssetsById().post(enrollAssetsByIdPostRequestBody);
const options = {
authProvider,
};
const client = Client.init(options);
const enrollAssetsById = {
updateCategory: 'feature',
memberEntityType: '#microsoft.graph.windowsUpdates.azureADDevice',
ids: [
'String',
'String',
'String'
]
};
await client.api('/admin/windows/updates/updatableAssets/enrollAssetsById')
.version('beta')
.post(enrollAssetsById);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Admin\Windows\Updates\UpdatableAssets\MicrosoftGraphWindowsUpdatesEnrollAssetsById\EnrollAssetsByIdPostRequestBody;
use Microsoft\Graph\Beta\Generated\Models\WindowsUpdates\UpdateCategory;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new EnrollAssetsByIdPostRequestBody();
$requestBody->setUpdateCategory(new UpdateCategory('feature'));
$requestBody->setMemberEntityType('#microsoft.graph.windowsUpdates.azureADDevice');
$requestBody->setIds(['String', 'String', 'String', ]);
$graphServiceClient->admin()->windows()->updates()->updatableAssets()->microsoftGraphWindowsUpdatesEnrollAssetsById()->post($requestBody)->wait();
Import-Module Microsoft.Graph.Beta.WindowsUpdates
$params = @{
updateCategory = "feature"
memberEntityType = "#microsoft.graph.windowsUpdates.azureADDevice"
ids = @(
"String"
"String"
"String"
)
}
Invoke-MgBetaEnrollWindowsUpdatesUpdatableAssetById -BodyParameter $params
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.admin.windows.updates.updatableassets.microsoft_graph_windows_updates_enroll_assets_by_id.enroll_assets_by_id_post_request_body import EnrollAssetsByIdPostRequestBody
from msgraph_beta.generated.models.update_category import UpdateCategory
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = EnrollAssetsByIdPostRequestBody(
update_category = UpdateCategory.Feature,
member_entity_type = "#microsoft.graph.windowsUpdates.azureADDevice",
ids = [
"String",
"String",
"String",
],
)
await graph_client.admin.windows.updates.updatable_assets.microsoft_graph_windows_updates_enroll_assets_by_id.post(request_body)
Response
HTTP/1.1 202 Accepted