Namespace: microsoft.graph.termStore
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.
Create a new term object.
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) |
TermStore.ReadWrite.All |
Not available. |
Delegated (personal Microsoft account) |
Not supported. |
Not supported. |
Application |
Not supported. |
Not supported. |
HTTP request
POST /termStore/sets/{setId}/children
POST /termStore/sets/{setId}/terms/{termId}/children
Request body
In the request body, supply a JSON representation of the term object.
The following table lists the properties that are required when you create the term.
Response
If successful, this method returns a 201 Created
response code and a term object in the response body.
Examples
Request
POST https://graph.microsoft.com/beta/termStore/sets/{setId}/children
Content-Type: application/json
{
"labels": [
{
"languageTag" : "en-US",
"name" : "Car",
"isDefault" : true
}
]
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Models.TermStore;
var requestBody = new Term
{
Labels = new List<LocalizedLabel>
{
new LocalizedLabel
{
LanguageTag = "en-US",
Name = "Car",
IsDefault = true,
},
},
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.TermStore.Sets["{set-id}"].Children.PostAsync(requestBody);
mgc-beta term-store sets children create --set-id {set-id} --body '{\
"labels": [\
{\
"languageTag" : "en-US",\
"name" : "Car",\
"isDefault" : true\
}\
]\
}\
'
// 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"
graphmodelstermstore "github.com/microsoftgraph/msgraph-beta-sdk-go/models/termstore"
//other-imports
)
requestBody := graphmodelstermstore.NewTerm()
localizedLabel := graphmodelstermstore.NewLocalizedLabel()
languageTag := "en-US"
localizedLabel.SetLanguageTag(&languageTag)
name := "Car"
localizedLabel.SetName(&name)
isDefault := true
localizedLabel.SetIsDefault(&isDefault)
labels := []graphmodelstermstore.LocalizedLabelable {
localizedLabel,
}
requestBody.SetLabels(labels)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
children, err := graphClient.TermStore().Sets().BySetId("set-id").Children().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.models.termstore.Term term = new com.microsoft.graph.beta.models.termstore.Term();
LinkedList<com.microsoft.graph.beta.models.termstore.LocalizedLabel> labels = new LinkedList<com.microsoft.graph.beta.models.termstore.LocalizedLabel>();
com.microsoft.graph.beta.models.termstore.LocalizedLabel localizedLabel = new com.microsoft.graph.beta.models.termstore.LocalizedLabel();
localizedLabel.setLanguageTag("en-US");
localizedLabel.setName("Car");
localizedLabel.setIsDefault(true);
labels.add(localizedLabel);
term.setLabels(labels);
com.microsoft.graph.models.termstore.Term result = graphClient.termStore().sets().bySetId("{set-id}").children().post(term);
const options = {
authProvider,
};
const client = Client.init(options);
const term = {
labels: [
{
languageTag: 'en-US',
name: 'Car',
isDefault: true
}
]
};
await client.api('/termStore/sets/{setId}/children')
.version('beta')
.post(term);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Models\TermStore\Term;
use Microsoft\Graph\Beta\Generated\Models\TermStore\LocalizedLabel;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new Term();
$labelsLocalizedLabel1 = new LocalizedLabel();
$labelsLocalizedLabel1->setLanguageTag('en-US');
$labelsLocalizedLabel1->setName('Car');
$labelsLocalizedLabel1->setIsDefault(true);
$labelsArray []= $labelsLocalizedLabel1;
$requestBody->setLabels($labelsArray);
$result = $graphServiceClient->termStore()->sets()->bySetId('set-id')->children()->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.models.term_store.term import Term
from msgraph_beta.generated.models.term_store.localized_label import LocalizedLabel
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = Term(
labels = [
LocalizedLabel(
language_tag = "en-US",
name = "Car",
is_default = True,
),
],
)
result = await graph_client.term_store.sets.by_set_id('set-id').children.post(request_body)
Response
Note: The response object shown here might be shortened for readability.
HTTP/1.1 201 Created
Content-Type: application/json
{
"createdDateTime": "2019-06-21T20:01:37Z",
"id": "8ed8c9ea-7052-4c1d-a4d7-b9c10bffea6f",
"labels" : [
{
"name" : "Car",
"languageTag" : "en-US",
"isDefault" : true
}
],
"lastModifiedDateTime": "2019-06-21T20:01:37Z"
}