Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph.termStore
Represents a group used in a term store. A group is a logical hierarchy that contains a collection of sets under it.
Inherits from entity.
Methods
| Method | Return type | Description |
|---|---|---|
| Create | microsoft.graph.termStore.group | Create a group in a term store. |
| Get | microsoft.graph.termStore.group | Retrieve the data of a group in a term store. |
| Delete | None | Delete a group in a term store. |
Properties
| Property | Type | Description |
|---|---|---|
| createdDateTime | DateTimeOffset | Date and time of the group creation. Read-only. |
| description | string | Description that gives details on the term usage. |
| displayName | string | Name of the group. |
| id | string | Unique identifier of the group. Read-Only. |
| parentSiteId | string | ID of the parent site of this group. |
| scope | string | Returns the type of the group. Possible values are: global, system, and siteCollection. |
Relationships
| Relationship | Type | Description |
|---|---|---|
| sets | microsoft.graph.termStore.set collection | All sets under the group in a term store. |
JSON representation
The following is a JSON representation of a group resource.
{
"@odata.type": "#microsoft.graph.termStore.group",
"createdDateTime": "string (timestamp)",
"description": "string",
"displayName": "string",
"id": "string",
"parentSiteId" : "string",
"scope" : "microsoft.graph.termStore.groupScope"
}