Namespace: microsoft.graph.managedTenants
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.
Un-assigns the tenant tag from the specified managed tenants.
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) |
ManagedTenants.ReadWrite.All |
Not available. |
Delegated (personal Microsoft account) |
Not supported. |
Not supported. |
Application |
Not supported. |
Not supported. |
HTTP request
POST /tenantRelationships/managedTenants/tenantTags/{tenantTagId}/unassignTag
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 |
tenantIds |
String collection |
The collection of Microsoft Entra tenant identifiers for managed tenants. |
Response
If successful, this action returns a 200 OK
response code and a tenantTag in the response body.
Examples
Request
POST https://graph.microsoft.com/beta/tenantRelationships/managedTenants/tenantTags/{tenantTagId}/unassignTag
Content-Type: application/json
{
"tenantIds": [
"String"
]
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.TenantRelationships.ManagedTenants.TenantTags.Item.MicrosoftGraphManagedTenantsUnassignTag;
var requestBody = new UnassignTagPostRequestBody
{
TenantIds = new List<string>
{
"String",
},
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.TenantRelationships.ManagedTenants.TenantTags["{tenantTag-id}"].MicrosoftGraphManagedTenantsUnassignTag.PostAsync(requestBody);
// 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"
graphtenantrelationships "github.com/microsoftgraph/msgraph-beta-sdk-go/tenantrelationships"
//other-imports
)
requestBody := graphtenantrelationships.NewUnassignTagPostRequestBody()
tenantIds := []string {
"String",
}
requestBody.SetTenantIds(tenantIds)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
microsoftGraphManagedTenantsUnassignTag, err := graphClient.TenantRelationships().ManagedTenants().TenantTags().ByTenantTagId("tenantTag-id").MicrosoftGraphManagedTenantsUnassignTag().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.tenantrelationships.managedtenants.tenanttags.item.microsoftgraphmanagedtenantsunassigntag.UnassignTagPostRequestBody unassignTagPostRequestBody = new com.microsoft.graph.beta.tenantrelationships.managedtenants.tenanttags.item.microsoftgraphmanagedtenantsunassigntag.UnassignTagPostRequestBody();
LinkedList<String> tenantIds = new LinkedList<String>();
tenantIds.add("String");
unassignTagPostRequestBody.setTenantIds(tenantIds);
var result = graphClient.tenantRelationships().managedTenants().tenantTags().byTenantTagId("{tenantTag-id}").microsoftGraphManagedTenantsUnassignTag().post(unassignTagPostRequestBody);
const options = {
authProvider,
};
const client = Client.init(options);
const tenantTag = {
tenantIds: [
'String'
]
};
await client.api('/tenantRelationships/managedTenants/tenantTags/{tenantTagId}/unassignTag')
.version('beta')
.post(tenantTag);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\TenantRelationships\ManagedTenants\TenantTags\Item\MicrosoftGraphManagedTenantsUnassignTag\UnassignTagPostRequestBody;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new UnassignTagPostRequestBody();
$requestBody->setTenantIds(['String', ]);
$result = $graphServiceClient->tenantRelationships()->managedTenants()->tenantTags()->byTenantTagId('tenantTag-id')->microsoftGraphManagedTenantsUnassignTag()->post($requestBody)->wait();
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.tenantrelationships.managedtenants.tenanttags.item.microsoft_graph_managed_tenants_unassign_tag.unassign_tag_post_request_body import UnassignTagPostRequestBody
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = UnassignTagPostRequestBody(
tenant_ids = [
"String",
],
)
result = await graph_client.tenant_relationships.managed_tenants.tenant_tags.by_tenant_tag_id('tenantTag-id').microsoft_graph_managed_tenants_unassign_tag.post(request_body)
Response
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#tenantTags/$entity",
"id": "2a66c69f-87ec-4fb3-a797-dd500cc3454d",
"displayName": "Support",
"description": "Tenants that has purcahsed support",
"tenants": [],
"isDeleted": null,
"createdDateTime": "2021-06-26T13:51:23.3927236Z",
"createdByUserId": "65ca7649-4ccb-4823-9c39-42bd75191bf8",
"lastActionDateTime": "2021-07-11T19:57:56.4242898Z",
"lastActionByUserId": "50bf7bd8-1b3a-4d1d-94c5-86d27e68857f"
}