openapi: 3.1.0 info: title: Microsoft Graph Groups description: Needs a description. paths: /connections/{externalConnection-id}/groups: description: >- Provides operations to manage the groups property of the microsoft.graph.externalConnectors.externalConnection entity. get: tags: - connections.externalGroup summary: Microsoft Graph Get groups from connections operationId: connections.ListGroups parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.externalConnectors.externalGroupCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - connections.externalGroup summary: Microsoft Graph Create new navigation property to groups for connections operationId: connections.CreateGroups requestBody: description: New navigation property content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.externalConnectors.externalGroup required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.externalConnectors.externalGroup 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: externalConnection-id in: path description: The unique identifier of externalConnection required: true schema: type: string x-ms-docs-key-type: externalConnection /connections/{externalConnection-id}/groups/{externalGroup-id}: description: >- Provides operations to manage the groups property of the microsoft.graph.externalConnectors.externalConnection entity. get: tags: - connections.externalGroup summary: Microsoft Graph Get groups from connections operationId: connections.GetGroups parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.externalConnectors.externalGroup 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - connections.externalGroup summary: Microsoft Graph Update the navigation property groups in connections operationId: connections.UpdateGroups requestBody: description: New navigation property values content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.externalConnectors.externalGroup required: true responses: 2XX: description: Success content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.externalConnectors.externalGroup 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - connections.externalGroup summary: Microsoft Graph Delete navigation property groups for connections operationId: connections.DeleteGroups parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: externalConnection-id in: path description: The unique identifier of externalConnection required: true schema: type: string x-ms-docs-key-type: externalConnection - name: externalGroup-id in: path description: The unique identifier of externalGroup required: true schema: type: string x-ms-docs-key-type: externalGroup /connections/{externalConnection-id}/groups/{externalGroup-id}/members: description: >- Provides operations to manage the members property of the microsoft.graph.externalConnectors.externalGroup entity. get: tags: - connections.externalGroup summary: Microsoft Graph Get members from connections description: >- A member added to an externalGroup. You can add Microsoft Entra users, Microsoft Entra groups, or an externalGroup as members. operationId: connections.groups.ListMembers parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.externalConnectors.identityCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - connections.externalGroup summary: Microsoft Graph Create new navigation property to members for connections operationId: connections.groups.CreateMembers requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.identity' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.externalConnectors.identity 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: externalConnection-id in: path description: The unique identifier of externalConnection required: true schema: type: string x-ms-docs-key-type: externalConnection - name: externalGroup-id in: path description: The unique identifier of externalGroup required: true schema: type: string x-ms-docs-key-type: externalGroup /connections/{externalConnection-id}/groups/{externalGroup-id}/members/{identity-id}: description: >- Provides operations to manage the members property of the microsoft.graph.externalConnectors.externalGroup entity. get: tags: - connections.externalGroup summary: Microsoft Graph Get members from connections description: >- A member added to an externalGroup. You can add Microsoft Entra users, Microsoft Entra groups, or an externalGroup as members. operationId: connections.groups.GetMembers parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.externalConnectors.identity 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - connections.externalGroup summary: Microsoft Graph Update the navigation property members in connections operationId: connections.groups.UpdateMembers requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.identity' required: true responses: 2XX: description: Success content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.externalConnectors.identity 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - connections.externalGroup summary: Microsoft Graph Delete navigation property members for connections operationId: connections.groups.DeleteMembers parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: externalConnection-id in: path description: The unique identifier of externalConnection required: true schema: type: string x-ms-docs-key-type: externalConnection - name: externalGroup-id in: path description: The unique identifier of externalGroup required: true schema: type: string x-ms-docs-key-type: externalGroup - name: identity-id in: path description: The unique identifier of identity required: true schema: type: string x-ms-docs-key-type: identity /connections/{externalConnection-id}/groups/{externalGroup-id}/members/$count: description: Provides operations to count the resources in the collection. get: tags: - connections.externalGroup summary: Microsoft Graph Get the number of the resource operationId: connections.groups.members.GetCount-d49a parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: externalConnection-id in: path description: The unique identifier of externalConnection required: true schema: type: string x-ms-docs-key-type: externalConnection - name: externalGroup-id in: path description: The unique identifier of externalGroup required: true schema: type: string x-ms-docs-key-type: externalGroup /connections/{externalConnection-id}/groups/$count: description: Provides operations to count the resources in the collection. get: tags: - connections.externalGroup summary: Microsoft Graph Get the number of the resource operationId: connections.groups.GetCount-6035 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: externalConnection-id in: path description: The unique identifier of externalConnection required: true schema: type: string x-ms-docs-key-type: externalConnection /external/connections/{externalConnection-id}/groups: description: >- Provides operations to manage the groups property of the microsoft.graph.externalConnectors.externalConnection entity. get: tags: - external.externalConnection summary: Microsoft Graph Get externalGroup description: Get an externalGroup object. operationId: external.connections.ListGroups parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.externalConnectors.externalGroupCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - external.externalConnection summary: Microsoft Graph Create externalGroup description: Create a new externalGroup object. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/externalconnectors-externalconnection-post-groups?view=graph-rest-1.0 operationId: external.connections.CreateGroups requestBody: description: New navigation property content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.externalConnectors.externalGroup required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.externalConnectors.externalGroup 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: externalConnection-id in: path description: The unique identifier of externalConnection required: true schema: type: string x-ms-docs-key-type: externalConnection /external/connections/{externalConnection-id}/groups/{externalGroup-id}: description: >- Provides operations to manage the groups property of the microsoft.graph.externalConnectors.externalConnection entity. get: tags: - external.externalConnection summary: Microsoft Graph Get externalGroup description: Get an externalGroup object. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/externalconnectors-externalgroup-get?view=graph-rest-1.0 operationId: external.connections.GetGroups parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.externalConnectors.externalGroup 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - external.externalConnection summary: Microsoft Graph Update externalGroup description: Update the properties of an externalGroup object. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/externalconnectors-externalgroup-update?view=graph-rest-1.0 operationId: external.connections.UpdateGroups requestBody: description: New navigation property values content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.externalConnectors.externalGroup required: true responses: 2XX: description: Success content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.externalConnectors.externalGroup 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - external.externalConnection summary: Microsoft Graph Delete externalGroup description: Delete an externalGroup object. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/externalconnectors-externalgroup-delete?view=graph-rest-1.0 operationId: external.connections.DeleteGroups parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: externalConnection-id in: path description: The unique identifier of externalConnection required: true schema: type: string x-ms-docs-key-type: externalConnection - name: externalGroup-id in: path description: The unique identifier of externalGroup required: true schema: type: string x-ms-docs-key-type: externalGroup /external/connections/{externalConnection-id}/groups/{externalGroup-id}/members: description: >- Provides operations to manage the members property of the microsoft.graph.externalConnectors.externalGroup entity. get: tags: - external.externalConnection summary: Microsoft Graph Get members from external description: >- A member added to an externalGroup. You can add Microsoft Entra users, Microsoft Entra groups, or an externalGroup as members. operationId: external.connections.groups.ListMembers parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.externalConnectors.identityCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - external.externalConnection summary: Microsoft Graph Create identity description: Create an identity resource for a new member in an externalGroup. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/externalconnectors-externalgroup-post-members?view=graph-rest-1.0 operationId: external.connections.groups.CreateMembers requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.identity' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.externalConnectors.identity 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: externalConnection-id in: path description: The unique identifier of externalConnection required: true schema: type: string x-ms-docs-key-type: externalConnection - name: externalGroup-id in: path description: The unique identifier of externalGroup required: true schema: type: string x-ms-docs-key-type: externalGroup /external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/{identity-id}: description: >- Provides operations to manage the members property of the microsoft.graph.externalConnectors.externalGroup entity. get: tags: - external.externalConnection summary: Microsoft Graph Get members from external description: >- A member added to an externalGroup. You can add Microsoft Entra users, Microsoft Entra groups, or an externalGroup as members. operationId: external.connections.groups.GetMembers parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.externalConnectors.identity 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - external.externalConnection summary: Microsoft Graph Update the navigation property members in external operationId: external.connections.groups.UpdateMembers requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.identity' required: true responses: 2XX: description: Success content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.externalConnectors.identity 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - external.externalConnection summary: Microsoft Graph Delete identity description: >- Delete an identity resource to remove the corresponding member from an externalGroup. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/externalconnectors-externalgroupmember-delete?view=graph-rest-1.0 operationId: external.connections.groups.DeleteMembers parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: externalConnection-id in: path description: The unique identifier of externalConnection required: true schema: type: string x-ms-docs-key-type: externalConnection - name: externalGroup-id in: path description: The unique identifier of externalGroup required: true schema: type: string x-ms-docs-key-type: externalGroup - name: identity-id in: path description: The unique identifier of identity required: true schema: type: string x-ms-docs-key-type: identity /external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/$count: description: Provides operations to count the resources in the collection. get: tags: - external.externalConnection summary: Microsoft Graph Get the number of the resource operationId: external.connections.groups.members.GetCount-482b parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: externalConnection-id in: path description: The unique identifier of externalConnection required: true schema: type: string x-ms-docs-key-type: externalConnection - name: externalGroup-id in: path description: The unique identifier of externalGroup required: true schema: type: string x-ms-docs-key-type: externalGroup /external/connections/{externalConnection-id}/groups/$count: description: Provides operations to count the resources in the collection. get: tags: - external.externalConnection summary: Microsoft Graph Get the number of the resource operationId: external.connections.groups.GetCount-51f5 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: externalConnection-id in: path description: The unique identifier of externalConnection required: true schema: type: string x-ms-docs-key-type: externalConnection /groups: description: Provides operations to manage the collection of group entities. get: tags: - Groups.group summary: Microsoft Graph List groups description: >- List all the groups available in an organization, excluding dynamic distribution groups. To retrieve dynamic distribution groups, use the Exchange admin center. This operation returns by default only a subset of the properties for each group. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the group and specify the properties in a $select OData query option. The hasMembersWithLicenseErrors and isArchived properties are an exception and are not returned in the $select query. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/group-list?view=graph-rest-1.0 operationId: groups.group.ListGroup parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.groupCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.group summary: Microsoft Graph Create group description: >- Create a new group as specified in the request body. You can create the following types of groups: This operation returns by default only a subset of the properties for each group. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation and specify the properties in a $select OData query option. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-post-groups?view=graph-rest-1.0 operationId: groups.group.CreateGroup requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.group' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation /groups/{group-id}: description: Provides operations to manage the collection of group entities. get: tags: - Groups.group summary: Microsoft Graph Get group description: >- Get the properties and relationships of a group object. This operation returns by default only a subset of all the available properties, as noted in the Properties section. To get properties that aren't_ returned by default, specify them in a $select OData query option. The hasMembersWithLicenseErrors and isArchived properties are an exception and aren't returned in the $select query. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/group-get?view=graph-rest-1.0 operationId: groups.group.GetGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.group summary: Microsoft Graph Upsert group description: "Create a new group object if it doesn't exist, or update the properties of an existing group object.\r\nYou can create or update the following types of group: By default, this operation returns only a subset of the properties for each group. For a list of properties that are returned by default, see the Properties section of the group resource. To get properties that are not returned by default, do a GET operation and specify the properties in a $select OData query option." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-1.0 operationId: groups.group.UpdateGroup requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.group' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.group summary: Microsoft Graph Delete group description: >- Delete a group. When deleted, both Microsoft 365 and security groups are moved to a temporary container and can be restored within 30 days. After that time, they're permanently deleted. This doesn't apply to Distribution groups which are permanently deleted immediately. To learn more, see deletedItems. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/group-delete?view=graph-rest-1.0 operationId: groups.group.DeleteGroup parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/acceptedSenders: description: >- Provides operations to manage the acceptedSenders property of the microsoft.graph.group entity. get: tags: - groups.directoryObject summary: Microsoft Graph List acceptedSenders description: "Users in the accepted senders list can post to conversations of the group (identified in the GET request URL).\r\nMake sure you do not specify the same user or group in the accepted senders and rejected senders lists, otherwise you will get an error." externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-acceptedsenders?view=graph-rest-1.0 operationId: groups.ListAcceptedSenders parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.directoryObjectCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/acceptedSenders/{directoryObject-id}/$ref: description: Provides operations to manage the collection of group entities. delete: tags: - groups.directoryObject summary: Microsoft Graph Remove acceptedSender externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-delete-acceptedsenders?view=graph-rest-1.0 operationId: groups.acceptedSenders.DeleteRefDirectoryObject parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/acceptedSenders/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.acceptedSenders.GetCount-576b parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/acceptedSenders/$ref: description: Provides operations to manage the collection of group entities. get: tags: - groups.directoryObject summary: Microsoft Graph List acceptedSenders description: "Users in the accepted senders list can post to conversations of the group (identified in the GET request URL).\r\nMake sure you do not specify the same user or group in the accepted senders and rejected senders lists, otherwise you will get an error." externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-acceptedsenders?view=graph-rest-1.0 operationId: groups.ListRefAcceptedSenders parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/StringCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - groups.directoryObject summary: Microsoft Graph Create acceptedSender description: >- Specify the user or group in @odata.id in the request body. Users in the accepted senders list can post to conversations of the group. Make sure you don't specify the same user or group in the accepted senders and rejected senders lists, otherwise you'll get an error. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-post-acceptedsenders?view=graph-rest-1.0 operationId: groups.CreateRefAcceptedSenders requestBody: $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.directoryObject summary: Microsoft Graph Remove acceptedSender externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-delete-acceptedsenders?view=graph-rest-1.0 operationId: groups.DeleteRefAcceptedSenders parameters: - name: If-Match in: header description: ETag schema: type: string - name: '@id' in: query description: The delete Uri required: true schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/appRoleAssignments: description: >- Provides operations to manage the appRoleAssignments property of the microsoft.graph.group entity. get: tags: - groups.appRoleAssignment summary: Microsoft Graph List appRoleAssignments granted to a group description: >- Retrieve the list of appRoleAssignment that have been granted to a group. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-approleassignments?view=graph-rest-1.0 operationId: groups.ListAppRoleAssignments parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.appRoleAssignmentCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - groups.appRoleAssignment summary: Microsoft Graph Grant an appRoleAssignment to a group description: >- Use this API to assign an app role to a security group. All direct members of the group will be considered assigned. Security groups with dynamic memberships are supported. To grant an app role assignment to a group, you need three identifiers: Additional licenses might be required to use a group to manage access to applications. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-post-approleassignments?view=graph-rest-1.0 operationId: groups.CreateAppRoleAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.appRoleAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.appRoleAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}: description: >- Provides operations to manage the appRoleAssignments property of the microsoft.graph.group entity. get: tags: - groups.appRoleAssignment summary: Microsoft Graph Get appRoleAssignments from groups description: >- Represents the app roles granted to a group for an application. Supports $expand. operationId: groups.GetAppRoleAssignments parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.appRoleAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.appRoleAssignment summary: Microsoft Graph Update the navigation property appRoleAssignments in groups operationId: groups.UpdateAppRoleAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.appRoleAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.appRoleAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.appRoleAssignment summary: Microsoft Graph Delete appRoleAssignment description: Deletes an appRoleAssignment that a group has been granted. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-delete-approleassignments?view=graph-rest-1.0 operationId: groups.DeleteAppRoleAssignments parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: appRoleAssignment-id in: path description: The unique identifier of appRoleAssignment required: true schema: type: string x-ms-docs-key-type: appRoleAssignment /groups/{group-id}/appRoleAssignments/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.appRoleAssignment summary: Microsoft Graph Get the number of the resource operationId: groups.appRoleAssignments.GetCount-ce16 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/calendar: description: >- Provides operations to manage the calendar property of the microsoft.graph.group entity. get: tags: - Groups.calendar summary: Microsoft Graph Get calendar from groups description: The group's calendar. Read-only. operationId: groups.GetCalendar parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.calendar' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/calendar/calendarPermissions: description: >- Provides operations to manage the calendarPermissions property of the microsoft.graph.calendar entity. get: tags: - Groups.calendar summary: Microsoft Graph Get calendarPermissions from groups description: The permissions of the users with whom the calendar is shared. operationId: groups.calendar.ListCalendarPermissions parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.calendarPermissionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.calendar summary: Microsoft Graph Create new navigation property to calendarPermissions for groups operationId: groups.calendar.CreateCalendarPermissions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.calendarPermission' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.calendarPermission' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}: description: >- Provides operations to manage the calendarPermissions property of the microsoft.graph.calendar entity. get: tags: - Groups.calendar summary: Microsoft Graph Get calendarPermissions from groups description: The permissions of the users with whom the calendar is shared. operationId: groups.calendar.GetCalendarPermissions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.calendarPermission' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.calendar summary: Microsoft Graph Update the navigation property calendarPermissions in groups operationId: groups.calendar.UpdateCalendarPermissions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.calendarPermission' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.calendarPermission' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.calendar summary: Microsoft Graph Delete navigation property calendarPermissions for groups operationId: groups.calendar.DeleteCalendarPermissions parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: calendarPermission-id in: path description: The unique identifier of calendarPermission required: true schema: type: string x-ms-docs-key-type: calendarPermission /groups/{group-id}/calendar/calendarPermissions/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.calendar summary: Microsoft Graph Get the number of the resource operationId: groups.calendar.calendarPermissions.GetCount-b54a parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/calendar/calendarView: description: >- Provides operations to manage the calendarView property of the microsoft.graph.calendar entity. get: tags: - Groups.calendar summary: Microsoft Graph Get calendarView from groups description: The calendar view for the calendar. Navigation property. Read-only. operationId: groups.calendar.ListCalendarView parameters: - name: startDateTime in: query description: >- The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00 required: true schema: type: string - name: endDateTime in: query description: >- The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00 required: true schema: type: string - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.eventCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/calendar/calendarView/delta(): description: Provides operations to call the delta method. get: tags: - Groups.calendar summary: Microsoft Graph Invoke function delta description: >- Get a set of event resources that have been added, deleted, or updated in a calendarView (a range of events defined by start and end dates) of the user's primary calendar. Typically, synchronizing events in a calendarView in a local store entails a round of multiple delta function calls. The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0 operationId: groups.group.calendar.calendarView.delta parameters: - name: startDateTime in: query description: >- The start date and time of the time range in the function, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00 required: true schema: type: string - name: endDateTime in: query description: >- The end date and time of the time range in the function, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00 required: true schema: type: string - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of event type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.event' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/instances/delta() - /groups/{group-id}/calendar/events/delta() - /groups/{group-id}/calendarView/delta() - /groups/{group-id}/events/{event-id}/instances/delta() - /groups/{group-id}/events/delta() - /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta() - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta(token='{token}') - /groups/{group-id}/sites/delta() - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/channels/{channel-id}/messages/delta() - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/primaryChannel/messages/delta() - /groups/delta() - /groups/delta() /groups/{group-id}/calendar/events: description: >- Provides operations to manage the events property of the microsoft.graph.calendar entity. get: tags: - Groups.calendar summary: Microsoft Graph Get events from groups description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendar.ListEvents parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.eventCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.calendar summary: Microsoft Graph Create new navigation property to events for groups operationId: groups.calendar.CreateEvents requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.event' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.event' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/calendar/events/{event-id}: description: >- Provides operations to manage the events property of the microsoft.graph.calendar entity. get: tags: - Groups.calendar summary: Microsoft Graph Get events from groups description: The events in the calendar. Navigation property. Read-only. operationId: groups.calendar.GetEvents parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.event' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.calendar summary: Microsoft Graph Update event description: Update an event object. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-update-event?view=graph-rest-1.0 operationId: groups.calendar.UpdateEvents requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.event' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.event' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.calendar summary: Microsoft Graph Delete navigation property events for groups operationId: groups.calendar.DeleteEvents parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event /groups/{group-id}/calendar/events/{event-id}/attachments: description: >- Provides operations to manage the attachments property of the microsoft.graph.event entity. get: tags: - Groups.calendar summary: Microsoft Graph Get attachments from groups description: >- The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. operationId: groups.calendar.events.ListAttachments parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.attachmentCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.calendar summary: Microsoft Graph Create new navigation property to attachments for groups operationId: groups.calendar.events.CreateAttachments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/events/{event-id}/attachments /groups/{group-id}/calendar/events/{event-id}/attachments/{attachment-id}: description: >- Provides operations to manage the attachments property of the microsoft.graph.event entity. get: tags: - Groups.calendar summary: Microsoft Graph Get attachments from groups description: >- The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. operationId: groups.calendar.events.GetAttachments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.calendar summary: Microsoft Graph Delete navigation property attachments for groups operationId: groups.calendar.events.DeleteAttachments parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event - name: attachment-id in: path description: The unique identifier of attachment required: true schema: type: string x-ms-docs-key-type: attachment x-ms-docs-grouped-path: - /groups/{group-id}/events/{event-id}/attachments/{attachment-id} /groups/{group-id}/calendar/events/{event-id}/attachments/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.calendar summary: Microsoft Graph Get the number of the resource operationId: groups.calendar.events.attachments.GetCount-a03a parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event /groups/{group-id}/calendar/events/{event-id}/attachments/createUploadSession: description: Provides operations to call the createUploadSession method. post: tags: - Groups.calendar summary: Microsoft Graph Invoke action createUploadSession description: >- Create an upload session that allows an app to iteratively upload ranges of a file, so as to attach the file to the specified Outlook item. The item can be a message or event. Use this approach to attach a file if the file size is between 3 MB and 150 MB. To attach a file that's smaller than 3 MB, do a POST operation on the attachments navigation property of the Outlook item; see how to do this for a message or for an event. As part of the response, this action returns an upload URL that you can use in subsequent sequential PUT queries. Request headers for each PUT operation let you specify the exact range of bytes to be uploaded. This allows transfer to be resumed, in case the network connection is dropped during upload. The following are the steps to attach a file to an Outlook item using an upload session: See attach large files to Outlook messages or events for an example. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0 operationId: groups.group.calendar.events.event.attachments.createUploadSession requestBody: description: Action parameters content: application/json: schema: type: object properties: AttachmentItem: $ref: '#/components/schemas/microsoft.graph.attachmentItem' required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.uploadSession' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession - /groups/{group-id}/events/{event-id}/attachments/createUploadSession - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession /groups/{group-id}/calendar/events/{event-id}/calendar: description: >- Provides operations to manage the calendar property of the microsoft.graph.event entity. get: tags: - Groups.calendar summary: Microsoft Graph Get calendar from groups description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.calendar.events.GetCalendar parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.calendar' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/events/{event-id}/calendar /groups/{group-id}/calendar/events/{event-id}/extensions: description: >- Provides operations to manage the extensions property of the microsoft.graph.event entity. get: tags: - Groups.calendar summary: Microsoft Graph Get extensions from groups description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events.ListExtensions parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.extensionCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.calendar summary: Microsoft Graph Create new navigation property to extensions for groups operationId: groups.calendar.events.CreateExtensions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/events/{event-id}/extensions /groups/{group-id}/calendar/events/{event-id}/extensions/{extension-id}: description: >- Provides operations to manage the extensions property of the microsoft.graph.event entity. get: tags: - Groups.calendar summary: Microsoft Graph Get extensions from groups description: The collection of open extensions defined for the event. Nullable. operationId: groups.calendar.events.GetExtensions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.calendar summary: Microsoft Graph Update the navigation property extensions in groups operationId: groups.calendar.events.UpdateExtensions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.calendar summary: Microsoft Graph Delete navigation property extensions for groups operationId: groups.calendar.events.DeleteExtensions parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event - name: extension-id in: path description: The unique identifier of extension required: true schema: type: string x-ms-docs-key-type: extension x-ms-docs-grouped-path: - /groups/{group-id}/events/{event-id}/extensions/{extension-id} /groups/{group-id}/calendar/events/{event-id}/extensions/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.calendar summary: Microsoft Graph Get the number of the resource operationId: groups.calendar.events.extensions.GetCount-d77e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event /groups/{group-id}/calendar/events/{event-id}/instances: description: >- Provides operations to manage the instances property of the microsoft.graph.event entity. get: tags: - Groups.calendar summary: Microsoft Graph Get instances from groups description: >- The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable. operationId: groups.calendar.events.ListInstances parameters: - name: startDateTime in: query description: >- The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00 required: true schema: type: string - name: endDateTime in: query description: >- The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00 required: true schema: type: string - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.eventCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/events/{event-id}/instances /groups/{group-id}/calendar/events/{event-id}/instances/delta(): description: Provides operations to call the delta method. get: tags: - Groups.calendar summary: Microsoft Graph Invoke function delta description: >- Get a set of event resources that have been added, deleted, or updated in a calendarView (a range of events defined by start and end dates) of the user's primary calendar. Typically, synchronizing events in a calendarView in a local store entails a round of multiple delta function calls. The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0 operationId: groups.group.calendar.events.event.instances.delta parameters: - name: startDateTime in: query description: >- The start date and time of the time range in the function, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00 required: true schema: type: string - name: endDateTime in: query description: >- The end date and time of the time range in the function, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00 required: true schema: type: string - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of event type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.event' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/calendar/calendarView/delta() - /groups/{group-id}/calendar/events/delta() - /groups/{group-id}/calendarView/delta() - /groups/{group-id}/events/{event-id}/instances/delta() - /groups/{group-id}/events/delta() - /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta() - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta(token='{token}') - /groups/{group-id}/sites/delta() - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/channels/{channel-id}/messages/delta() - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/primaryChannel/messages/delta() - /groups/delta() - /groups/delta() /groups/{group-id}/calendar/events/{event-id}/accept: description: Provides operations to call the accept method. post: tags: - Groups.calendar summary: Microsoft Graph Invoke action accept description: Accept the specified event in a user calendar. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0 operationId: groups.group.calendar.events.event.accept requestBody: description: Action parameters content: application/json: schema: type: object properties: SendResponse: type: boolean default: false nullable: true Comment: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/events/{event-id}/accept /groups/{group-id}/calendar/events/{event-id}/cancel: description: Provides operations to call the cancel method. post: tags: - Groups.calendar summary: Microsoft Graph Invoke action cancel description: "This action allows the organizer of a meeting to send a cancellation message and cancel the event. The action moves the event to the Deleted Items folder. The organizer can also cancel an occurrence of a recurring meeting \r\nby providing the occurrence event ID. An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\r\nerror message: 'Your request can't be completed. You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\r\nthe organizer send a custom message to the attendees about the cancellation." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0 operationId: groups.group.calendar.events.event.cancel requestBody: description: Action parameters content: application/json: schema: type: object properties: Comment: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/events/{event-id}/cancel /groups/{group-id}/calendar/events/{event-id}/decline: description: Provides operations to call the decline method. post: tags: - Groups.calendar summary: Microsoft Graph Invoke action decline description: >- Decline invitation to the specified event in a user calendar. If the event allows proposals for new times, on declining the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0 operationId: groups.group.calendar.events.event.decline requestBody: description: Action parameters content: application/json: schema: type: object properties: ProposedNewTime: anyOf: - $ref: '#/components/schemas/microsoft.graph.timeSlot' - type: object nullable: true SendResponse: type: boolean default: false nullable: true Comment: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/events/{event-id}/decline /groups/{group-id}/calendar/events/{event-id}/dismissReminder: description: Provides operations to call the dismissReminder method. post: tags: - Groups.calendar summary: Microsoft Graph Invoke action dismissReminder description: >- Dismiss a reminder that has been triggered for an event in a user calendar. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0 operationId: groups.group.calendar.events.event.dismissReminder responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/events/{event-id}/dismissReminder /groups/{group-id}/calendar/events/{event-id}/forward: description: Provides operations to call the forward method. post: tags: - Groups.calendar summary: Microsoft Graph Invoke action forward description: "This action allows the organizer or attendee of a meeting event to forward the\r\nmeeting request to a new recipient. If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\r\nalso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\r\ncopy of the meeting event. This convenience is not available when forwarding from an Outlook.com account." externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0 operationId: groups.group.calendar.events.event.forward requestBody: description: Action parameters content: application/json: schema: type: object properties: ToRecipients: type: array items: $ref: '#/components/schemas/microsoft.graph.recipient' Comment: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/forward - /groups/{group-id}/events/{event-id}/forward - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/forward /groups/{group-id}/calendar/events/{event-id}/permanentDelete: description: Provides operations to call the permanentDelete method. post: tags: - Groups.calendar summary: Microsoft Graph Invoke action permanentDelete operationId: groups.group.calendar.events.event.permanentDelete responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/calendar/permanentDelete - /groups/{group-id}/events/{event-id}/permanentDelete /groups/{group-id}/calendar/events/{event-id}/snoozeReminder: description: Provides operations to call the snoozeReminder method. post: tags: - Groups.calendar summary: Microsoft Graph Invoke action snoozeReminder description: Postpone a reminder for an event in a user calendar until a new time. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0 operationId: groups.group.calendar.events.event.snoozeReminder requestBody: description: Action parameters content: application/json: schema: type: object properties: NewReminderTime: $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/events/{event-id}/snoozeReminder /groups/{group-id}/calendar/events/{event-id}/tentativelyAccept: description: Provides operations to call the tentativelyAccept method. post: tags: - Groups.calendar summary: Microsoft Graph Invoke action tentativelyAccept description: >- Tentatively accept the specified event in a user calendar. If the event allows proposals for new times, on responding tentative to the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0 operationId: groups.group.calendar.events.event.tentativelyAccept requestBody: description: Action parameters content: application/json: schema: type: object properties: ProposedNewTime: anyOf: - $ref: '#/components/schemas/microsoft.graph.timeSlot' - type: object nullable: true SendResponse: type: boolean default: false nullable: true Comment: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/events/{event-id}/tentativelyAccept /groups/{group-id}/calendar/events/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.calendar summary: Microsoft Graph Get the number of the resource operationId: groups.calendar.events.GetCount-b856 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/calendar/events/delta(): description: Provides operations to call the delta method. get: tags: - Groups.calendar summary: Microsoft Graph Invoke function delta description: >- Get a set of event resources that have been added, deleted, or updated in a calendarView (a range of events defined by start and end dates) of the user's primary calendar. Typically, synchronizing events in a calendarView in a local store entails a round of multiple delta function calls. The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0 operationId: groups.group.calendar.events.delta parameters: - name: startDateTime in: query description: >- The start date and time of the time range in the function, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00 required: true schema: type: string - name: endDateTime in: query description: >- The end date and time of the time range in the function, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00 required: true schema: type: string - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of event type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.event' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/calendar/calendarView/delta() - /groups/{group-id}/calendar/events/{event-id}/instances/delta() - /groups/{group-id}/calendarView/delta() - /groups/{group-id}/events/{event-id}/instances/delta() - /groups/{group-id}/events/delta() - /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta() - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta(token='{token}') - /groups/{group-id}/sites/delta() - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/channels/{channel-id}/messages/delta() - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/primaryChannel/messages/delta() - /groups/delta() - /groups/delta() /groups/{group-id}/calendar/allowedCalendarSharingRoles(User='{User}'): description: Provides operations to call the allowedCalendarSharingRoles method. get: tags: - Groups.calendar summary: Microsoft Graph Invoke function allowedCalendarSharingRoles operationId: groups.group.calendar.allowedCalendarSharingRoles parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' responses: 2XX: description: Success content: application/json: schema: type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.calendarRoleType 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: User in: path description: 'Usage: User=''{User}''' required: true schema: type: string /groups/{group-id}/calendar/getSchedule: description: Provides operations to call the getSchedule method. post: tags: - Groups.calendar summary: Microsoft Graph Invoke action getSchedule description: >- Get the free/busy availability information for a collection of users, distributions lists, or resources (rooms or equipment) for a specified time period. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-1.0 operationId: groups.group.calendar.getSchedule requestBody: description: Action parameters content: application/json: schema: type: object properties: Schedules: type: array items: type: string nullable: true EndTime: anyOf: - $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' - type: object nullable: true StartTime: anyOf: - $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' - type: object nullable: true AvailabilityViewInterval: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true required: true responses: 2XX: description: Success content: application/json: schema: type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.scheduleInformation 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/calendar/permanentDelete: description: Provides operations to call the permanentDelete method. post: tags: - Groups.calendar summary: Microsoft Graph Invoke action permanentDelete description: >- Permanently delete a calendar folder and the events that it contains and remove them from the mailbox. For more information about item retention, see Configure deleted item retention and recoverable items quotas. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/calendar-permanentdelete?view=graph-rest-1.0 operationId: groups.group.calendar.permanentDelete responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/permanentDelete - /groups/{group-id}/events/{event-id}/permanentDelete /groups/{group-id}/calendarView: description: >- Provides operations to manage the calendarView property of the microsoft.graph.group entity. get: tags: - Groups.event summary: Microsoft Graph List group calendarView description: "Get the occurrences, exceptions, and single instances of events in a calendar view defined by a time range,\r\nfrom the default calendar of a group." externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-calendarview?view=graph-rest-1.0 operationId: groups.ListCalendarView parameters: - name: startDateTime in: query description: >- The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00 required: true schema: type: string - name: endDateTime in: query description: >- The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00 required: true schema: type: string - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.eventCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/calendarView/delta(): description: Provides operations to call the delta method. get: tags: - Groups.event summary: Microsoft Graph Invoke function delta description: >- Get a set of event resources that have been added, deleted, or updated in a calendarView (a range of events defined by start and end dates) of the user's primary calendar. Typically, synchronizing events in a calendarView in a local store entails a round of multiple delta function calls. The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0 operationId: groups.group.calendarView.delta parameters: - name: startDateTime in: query description: >- The start date and time of the time range in the function, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00 required: true schema: type: string - name: endDateTime in: query description: >- The end date and time of the time range in the function, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00 required: true schema: type: string - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of event type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.event' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/calendar/calendarView/delta() - /groups/{group-id}/calendar/events/{event-id}/instances/delta() - /groups/{group-id}/calendar/events/delta() - /groups/{group-id}/events/{event-id}/instances/delta() - /groups/{group-id}/events/delta() - /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta() - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta(token='{token}') - /groups/{group-id}/sites/delta() - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/channels/{channel-id}/messages/delta() - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/primaryChannel/messages/delta() - /groups/delta() - /groups/delta() /groups/{group-id}/conversations: description: >- Provides operations to manage the conversations property of the microsoft.graph.group entity. get: tags: - Groups.conversation summary: Microsoft Graph List conversations description: Retrieve the list of conversations in this group. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-conversations?view=graph-rest-1.0 operationId: groups.ListConversations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.conversationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.conversation summary: Microsoft Graph Create conversation description: Use reply thread or reply post to further post to that conversation. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-post-conversations?view=graph-rest-1.0 operationId: groups.CreateConversations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/conversations/{conversation-id}: description: >- Provides operations to manage the conversations property of the microsoft.graph.group entity. get: tags: - Groups.conversation summary: Microsoft Graph Get conversation description: Retrieve the properties and relationships of conversation object. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/conversation-get?view=graph-rest-1.0 operationId: groups.GetConversations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.conversation summary: Microsoft Graph Delete conversation description: Delete conversation. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/conversation-delete?view=graph-rest-1.0 operationId: groups.DeleteConversations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation /groups/{group-id}/conversations/{conversation-id}/threads: description: >- Provides operations to manage the threads property of the microsoft.graph.conversation entity. get: tags: - Groups.conversation summary: Microsoft Graph List threads description: >- Get all the threads in a group conversation. Note: You can also get all the threads of a group. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/conversation-list-threads?view=graph-rest-1.0 operationId: groups.conversations.ListThreads parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.conversationThreadCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.conversation summary: Microsoft Graph Create thread description: "Create a new thread in the specified conversation. A thread and post are created as specified. Use reply thread to further post \r\nto that thread. Or, if you get the post ID, you can also reply to that post in that thread. Note: You can also start a new conversation by first creating a thread." externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/conversation-post-threads?view=graph-rest-1.0 operationId: groups.conversations.CreateThreads requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationThread' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationThread' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}: description: >- Provides operations to manage the threads property of the microsoft.graph.conversation entity. get: tags: - Groups.conversation summary: Microsoft Graph Get threads from groups description: >- A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. operationId: groups.conversations.GetThreads parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationThread' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.conversation summary: Microsoft Graph Update the navigation property threads in groups operationId: groups.conversations.UpdateThreads requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationThread' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationThread' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.conversation summary: Microsoft Graph Delete navigation property threads for groups operationId: groups.conversations.DeleteThreads parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/reply: description: Provides operations to call the reply method. post: tags: - Groups.conversation summary: Microsoft Graph Invoke action reply description: >- Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/opentypeextension-post-opentypeextension?view=graph-rest-1.0 operationId: groups.group.conversations.conversation.threads.conversationThread.reply requestBody: description: Action parameters content: application/json: schema: type: object properties: Post: $ref: '#/components/schemas/microsoft.graph.post' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/reply - /groups/{group-id}/threads/{conversationThread-id}/reply - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply - /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/reply /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts: description: >- Provides operations to manage the posts property of the microsoft.graph.conversationThread entity. get: tags: - Groups.conversation summary: Microsoft Graph Get posts from groups operationId: groups.conversations.threads.ListPosts parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.postCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread x-ms-docs-grouped-path: - /groups/{group-id}/threads/{conversationThread-id}/posts /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}: description: >- Provides operations to manage the posts property of the microsoft.graph.conversationThread entity. get: tags: - Groups.conversation summary: Microsoft Graph Get posts from groups operationId: groups.conversations.threads.GetPosts parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.post' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id} /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments: description: >- Provides operations to manage the attachments property of the microsoft.graph.post entity. get: tags: - Groups.conversation summary: Microsoft Graph Get attachments from groups description: Read-only. Nullable. Supports $expand. operationId: groups.conversations.threads.posts.ListAttachments parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.attachmentCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.conversation summary: Microsoft Graph Create new navigation property to attachments for groups operationId: groups.conversations.threads.posts.CreateAttachments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments ? /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id} : description: >- Provides operations to manage the attachments property of the microsoft.graph.post entity. get: tags: - Groups.conversation summary: Microsoft Graph Get attachments from groups description: Read-only. Nullable. Supports $expand. operationId: groups.conversations.threads.posts.GetAttachments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.conversation summary: Microsoft Graph Delete navigation property attachments for groups operationId: groups.conversations.threads.posts.DeleteAttachments parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post - name: attachment-id in: path description: The unique identifier of attachment required: true schema: type: string x-ms-docs-key-type: attachment x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id} - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id} - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id} /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.conversation summary: Microsoft Graph Get the number of the resource operationId: groups.conversations.threads.posts.attachments.GetCount-d70e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post ? /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession : description: Provides operations to call the createUploadSession method. post: tags: - Groups.conversation summary: Microsoft Graph Invoke action createUploadSession description: >- Create an upload session that allows an app to iteratively upload ranges of a file, so as to attach the file to the specified Outlook item. The item can be a message or event. Use this approach to attach a file if the file size is between 3 MB and 150 MB. To attach a file that's smaller than 3 MB, do a POST operation on the attachments navigation property of the Outlook item; see how to do this for a message or for an event. As part of the response, this action returns an upload URL that you can use in subsequent sequential PUT queries. Request headers for each PUT operation let you specify the exact range of bytes to be uploaded. This allows transfer to be resumed, in case the network connection is dropped during upload. The following are the steps to attach a file to an Outlook item using an upload session: See attach large files to Outlook messages or events for an example. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0 operationId: >- groups.group.conversations.conversation.threads.conversationThread.posts.post.attachments.createUploadSession requestBody: description: Action parameters content: application/json: schema: type: object properties: AttachmentItem: $ref: '#/components/schemas/microsoft.graph.attachmentItem' required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.uploadSession' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/calendar/events/{event-id}/attachments/createUploadSession - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession - /groups/{group-id}/events/{event-id}/attachments/createUploadSession - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions: description: >- Provides operations to manage the extensions property of the microsoft.graph.post entity. get: tags: - Groups.conversation summary: Microsoft Graph Get extensions from groups description: >- The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. operationId: groups.conversations.threads.posts.ListExtensions parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.extensionCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.conversation summary: Microsoft Graph Create new navigation property to extensions for groups operationId: groups.conversations.threads.posts.CreateExtensions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions ? /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id} : description: >- Provides operations to manage the extensions property of the microsoft.graph.post entity. get: tags: - Groups.conversation summary: Microsoft Graph Get extensions from groups description: >- The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. operationId: groups.conversations.threads.posts.GetExtensions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.conversation summary: Microsoft Graph Update the navigation property extensions in groups operationId: groups.conversations.threads.posts.UpdateExtensions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.conversation summary: Microsoft Graph Delete navigation property extensions for groups operationId: groups.conversations.threads.posts.DeleteExtensions parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post - name: extension-id in: path description: The unique identifier of extension required: true schema: type: string x-ms-docs-key-type: extension x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id} - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id} - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id} /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.conversation summary: Microsoft Graph Get the number of the resource operationId: groups.conversations.threads.posts.extensions.GetCount-e717 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo: description: >- Provides operations to manage the inReplyTo property of the microsoft.graph.post entity. get: tags: - Groups.conversation summary: Microsoft Graph Get inReplyTo from groups description: Read-only. Supports $expand. operationId: groups.conversations.threads.posts.GetInReplyTo parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.post' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments: description: >- Provides operations to manage the attachments property of the microsoft.graph.post entity. get: tags: - Groups.conversation summary: Microsoft Graph Get attachments from groups description: Read-only. Nullable. Supports $expand. operationId: groups.conversations.threads.posts.inReplyTo.ListAttachments parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.attachmentCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.conversation summary: Microsoft Graph Create new navigation property to attachments for groups operationId: groups.conversations.threads.posts.inReplyTo.CreateAttachments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments ? /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id} : description: >- Provides operations to manage the attachments property of the microsoft.graph.post entity. get: tags: - Groups.conversation summary: Microsoft Graph Get attachments from groups description: Read-only. Nullable. Supports $expand. operationId: groups.conversations.threads.posts.inReplyTo.GetAttachments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.conversation summary: Microsoft Graph Delete navigation property attachments for groups operationId: groups.conversations.threads.posts.inReplyTo.DeleteAttachments parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post - name: attachment-id in: path description: The unique identifier of attachment required: true schema: type: string x-ms-docs-key-type: attachment x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id} - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id} - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id} ? /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.conversation summary: Microsoft Graph Get the number of the resource operationId: groups.conversations.threads.posts.inReplyTo.attachments.GetCount-d80c parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post ? /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession : description: Provides operations to call the createUploadSession method. post: tags: - Groups.conversation summary: Microsoft Graph Invoke action createUploadSession description: >- Create an upload session that allows an app to iteratively upload ranges of a file, so as to attach the file to the specified Outlook item. The item can be a message or event. Use this approach to attach a file if the file size is between 3 MB and 150 MB. To attach a file that's smaller than 3 MB, do a POST operation on the attachments navigation property of the Outlook item; see how to do this for a message or for an event. As part of the response, this action returns an upload URL that you can use in subsequent sequential PUT queries. Request headers for each PUT operation let you specify the exact range of bytes to be uploaded. This allows transfer to be resumed, in case the network connection is dropped during upload. The following are the steps to attach a file to an Outlook item using an upload session: See attach large files to Outlook messages or events for an example. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0 operationId: >- groups.group.conversations.conversation.threads.conversationThread.posts.post.inReplyTo.attachments.createUploadSession requestBody: description: Action parameters content: application/json: schema: type: object properties: AttachmentItem: $ref: '#/components/schemas/microsoft.graph.attachmentItem' required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.uploadSession' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/calendar/events/{event-id}/attachments/createUploadSession - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession - /groups/{group-id}/events/{event-id}/attachments/createUploadSession - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions: description: >- Provides operations to manage the extensions property of the microsoft.graph.post entity. get: tags: - Groups.conversation summary: Microsoft Graph Get extensions from groups description: >- The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. operationId: groups.conversations.threads.posts.inReplyTo.ListExtensions parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.extensionCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.conversation summary: Microsoft Graph Create new navigation property to extensions for groups operationId: groups.conversations.threads.posts.inReplyTo.CreateExtensions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions ? /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id} : description: >- Provides operations to manage the extensions property of the microsoft.graph.post entity. get: tags: - Groups.conversation summary: Microsoft Graph Get extensions from groups description: >- The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. operationId: groups.conversations.threads.posts.inReplyTo.GetExtensions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.conversation summary: Microsoft Graph Update the navigation property extensions in groups operationId: groups.conversations.threads.posts.inReplyTo.UpdateExtensions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.conversation summary: Microsoft Graph Delete navigation property extensions for groups operationId: groups.conversations.threads.posts.inReplyTo.DeleteExtensions parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post - name: extension-id in: path description: The unique identifier of extension required: true schema: type: string x-ms-docs-key-type: extension x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id} - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id} - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id} ? /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.conversation summary: Microsoft Graph Get the number of the resource operationId: groups.conversations.threads.posts.inReplyTo.extensions.GetCount-6de4 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward: description: Provides operations to call the forward method. post: tags: - Groups.conversation summary: Microsoft Graph Invoke action forward description: "Forward a post to a recipient. You can specify both the parent conversation and thread in the request, \r\nor, you can specify just the parent thread without the parent conversation. " externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-1.0 operationId: >- groups.group.conversations.conversation.threads.conversationThread.posts.post.inReplyTo.forward requestBody: description: Action parameters content: application/json: schema: type: object properties: Comment: type: string nullable: true ToRecipients: type: array items: $ref: '#/components/schemas/microsoft.graph.recipient' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/forward - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/forward - /groups/{group-id}/events/{event-id}/forward - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/forward /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply: description: Provides operations to call the reply method. post: tags: - Groups.conversation summary: Microsoft Graph Invoke action reply operationId: >- groups.group.conversations.conversation.threads.conversationThread.posts.post.inReplyTo.reply requestBody: description: Action parameters content: application/json: schema: type: object properties: Post: $ref: '#/components/schemas/microsoft.graph.post' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/reply - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/reply - /groups/{group-id}/threads/{conversationThread-id}/reply - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply - /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/reply /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/forward: description: Provides operations to call the forward method. post: tags: - Groups.conversation summary: Microsoft Graph Invoke action forward description: "Forward a post to a recipient. You can specify both the parent conversation and thread in the request, \r\nor, you can specify just the parent thread without the parent conversation. " externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-1.0 operationId: >- groups.group.conversations.conversation.threads.conversationThread.posts.post.forward requestBody: description: Action parameters content: application/json: schema: type: object properties: Comment: type: string nullable: true ToRecipients: type: array items: $ref: '#/components/schemas/microsoft.graph.recipient' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/forward - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward - /groups/{group-id}/events/{event-id}/forward - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/forward /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/reply: description: Provides operations to call the reply method. post: tags: - Groups.conversation summary: Microsoft Graph Invoke action reply operationId: >- groups.group.conversations.conversation.threads.conversationThread.posts.post.reply requestBody: description: Action parameters content: application/json: schema: type: object properties: Post: $ref: '#/components/schemas/microsoft.graph.post' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/reply - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply - /groups/{group-id}/threads/{conversationThread-id}/reply - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply - /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/reply /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.conversation summary: Microsoft Graph Get the number of the resource operationId: groups.conversations.threads.posts.GetCount-3615 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread /groups/{group-id}/conversations/{conversation-id}/threads/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.conversation summary: Microsoft Graph Get the number of the resource operationId: groups.conversations.threads.GetCount-401a parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversation-id in: path description: The unique identifier of conversation required: true schema: type: string x-ms-docs-key-type: conversation /groups/{group-id}/conversations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.conversation summary: Microsoft Graph Get the number of the resource operationId: groups.conversations.GetCount-c7df parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/createdOnBehalfOf: description: >- Provides operations to manage the createdOnBehalfOf property of the microsoft.graph.group entity. get: tags: - groups.directoryObject summary: Microsoft Graph Get createdOnBehalfOf from groups description: >- The user (or application) that created the group. NOTE: This property isn't set if the user is an administrator. Read-only. operationId: groups.GetCreatedOnBehalfOf parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryObject' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/drive: description: >- Provides operations to manage the drive property of the microsoft.graph.group entity. get: tags: - Groups.drive summary: Microsoft Graph Get drive from groups description: The group's default drive. Read-only. operationId: groups.GetDrive parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.drive' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/drives: description: >- Provides operations to manage the drives property of the microsoft.graph.group entity. get: tags: - Groups.drive summary: Microsoft Graph Get drives from groups description: The group's drives. Read-only. operationId: groups.ListDrives parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.driveCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/drives/{drive-id}: description: >- Provides operations to manage the drives property of the microsoft.graph.group entity. get: tags: - Groups.drive summary: Microsoft Graph Get drives from groups description: The group's drives. Read-only. operationId: groups.GetDrives parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.drive' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: drive-id in: path description: The unique identifier of drive required: true schema: type: string x-ms-docs-key-type: drive /groups/{group-id}/drives/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.drive summary: Microsoft Graph Get the number of the resource operationId: groups.drives.GetCount-9ca4 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/events: description: >- Provides operations to manage the events property of the microsoft.graph.group entity. get: tags: - Groups.event summary: Microsoft Graph List events description: Retrieve a list of event objects. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-events?view=graph-rest-1.0 operationId: groups.ListEvents parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.eventCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.event summary: Microsoft Graph Create event description: Use this API to create a new event. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-post-events?view=graph-rest-1.0 operationId: groups.CreateEvents requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.event' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.event' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/events/{event-id}: description: >- Provides operations to manage the events property of the microsoft.graph.group entity. get: tags: - Groups.event summary: Microsoft Graph Get event description: Get an event object. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-get-event?view=graph-rest-1.0 operationId: groups.GetEvents parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.event' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.event summary: Microsoft Graph Update the navigation property events in groups operationId: groups.UpdateEvents requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.event' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.event' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.event summary: Microsoft Graph Delete event description: Delete an event object. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-delete-event?view=graph-rest-1.0 operationId: groups.DeleteEvents parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event /groups/{group-id}/events/{event-id}/attachments: description: >- Provides operations to manage the attachments property of the microsoft.graph.event entity. get: tags: - Groups.event summary: Microsoft Graph Get attachments from groups description: >- The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. operationId: groups.events.ListAttachments parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.attachmentCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.event summary: Microsoft Graph Create new navigation property to attachments for groups operationId: groups.events.CreateAttachments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/attachments /groups/{group-id}/events/{event-id}/attachments/{attachment-id}: description: >- Provides operations to manage the attachments property of the microsoft.graph.event entity. get: tags: - Groups.event summary: Microsoft Graph Get attachments from groups description: >- The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. operationId: groups.events.GetAttachments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.event summary: Microsoft Graph Delete navigation property attachments for groups operationId: groups.events.DeleteAttachments parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event - name: attachment-id in: path description: The unique identifier of attachment required: true schema: type: string x-ms-docs-key-type: attachment x-ms-docs-grouped-path: - >- /groups/{group-id}/calendar/events/{event-id}/attachments/{attachment-id} /groups/{group-id}/events/{event-id}/attachments/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.event summary: Microsoft Graph Get the number of the resource operationId: groups.events.attachments.GetCount-87ba parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event /groups/{group-id}/events/{event-id}/attachments/createUploadSession: description: Provides operations to call the createUploadSession method. post: tags: - Groups.event summary: Microsoft Graph Invoke action createUploadSession description: >- Create an upload session that allows an app to iteratively upload ranges of a file, so as to attach the file to the specified Outlook item. The item can be a message or event. Use this approach to attach a file if the file size is between 3 MB and 150 MB. To attach a file that's smaller than 3 MB, do a POST operation on the attachments navigation property of the Outlook item; see how to do this for a message or for an event. As part of the response, this action returns an upload URL that you can use in subsequent sequential PUT queries. Request headers for each PUT operation let you specify the exact range of bytes to be uploaded. This allows transfer to be resumed, in case the network connection is dropped during upload. The following are the steps to attach a file to an Outlook item using an upload session: See attach large files to Outlook messages or events for an example. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0 operationId: groups.group.events.event.attachments.createUploadSession requestBody: description: Action parameters content: application/json: schema: type: object properties: AttachmentItem: $ref: '#/components/schemas/microsoft.graph.attachmentItem' required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.uploadSession' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - >- /groups/{group-id}/calendar/events/{event-id}/attachments/createUploadSession - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession /groups/{group-id}/events/{event-id}/calendar: description: >- Provides operations to manage the calendar property of the microsoft.graph.event entity. get: tags: - Groups.event summary: Microsoft Graph Get calendar from groups description: The calendar that contains the event. Navigation property. Read-only. operationId: groups.events.GetCalendar parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.calendar' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/calendar /groups/{group-id}/events/{event-id}/extensions: description: >- Provides operations to manage the extensions property of the microsoft.graph.event entity. get: tags: - Groups.event summary: Microsoft Graph Get open extension description: >- Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. operationId: groups.events.ListExtensions parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.extensionCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.event summary: Microsoft Graph Create open extension description: >- Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/opentypeextension-post-opentypeextension?view=graph-rest-1.0 operationId: groups.events.CreateExtensions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/extensions /groups/{group-id}/events/{event-id}/extensions/{extension-id}: description: >- Provides operations to manage the extensions property of the microsoft.graph.event entity. get: tags: - Groups.event summary: Microsoft Graph Get open extension description: >- Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0 operationId: groups.events.GetExtensions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.event summary: Microsoft Graph Update the navigation property extensions in groups operationId: groups.events.UpdateExtensions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.event summary: Microsoft Graph Delete navigation property extensions for groups operationId: groups.events.DeleteExtensions parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event - name: extension-id in: path description: The unique identifier of extension required: true schema: type: string x-ms-docs-key-type: extension x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/extensions/{extension-id} /groups/{group-id}/events/{event-id}/extensions/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.event summary: Microsoft Graph Get the number of the resource operationId: groups.events.extensions.GetCount-0817 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event /groups/{group-id}/events/{event-id}/instances: description: >- Provides operations to manage the instances property of the microsoft.graph.event entity. get: tags: - Groups.event summary: Microsoft Graph Get instances from groups description: >- The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable. operationId: groups.events.ListInstances parameters: - name: startDateTime in: query description: >- The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00 required: true schema: type: string - name: endDateTime in: query description: >- The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00 required: true schema: type: string - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.eventCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/instances /groups/{group-id}/events/{event-id}/instances/delta(): description: Provides operations to call the delta method. get: tags: - Groups.event summary: Microsoft Graph Invoke function delta description: >- Get a set of event resources that have been added, deleted, or updated in a calendarView (a range of events defined by start and end dates) of the user's primary calendar. Typically, synchronizing events in a calendarView in a local store entails a round of multiple delta function calls. The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0 operationId: groups.group.events.event.instances.delta parameters: - name: startDateTime in: query description: >- The start date and time of the time range in the function, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00 required: true schema: type: string - name: endDateTime in: query description: >- The end date and time of the time range in the function, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00 required: true schema: type: string - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of event type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.event' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/calendar/calendarView/delta() - /groups/{group-id}/calendar/events/{event-id}/instances/delta() - /groups/{group-id}/calendar/events/delta() - /groups/{group-id}/calendarView/delta() - /groups/{group-id}/events/delta() - /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta() - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta(token='{token}') - /groups/{group-id}/sites/delta() - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/channels/{channel-id}/messages/delta() - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/primaryChannel/messages/delta() - /groups/delta() - /groups/delta() /groups/{group-id}/events/{event-id}/accept: description: Provides operations to call the accept method. post: tags: - Groups.event summary: Microsoft Graph Invoke action accept description: Accept the specified event in a user calendar. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0 operationId: groups.group.events.event.accept requestBody: description: Action parameters content: application/json: schema: type: object properties: SendResponse: type: boolean default: false nullable: true Comment: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/accept /groups/{group-id}/events/{event-id}/cancel: description: Provides operations to call the cancel method. post: tags: - Groups.event summary: Microsoft Graph Invoke action cancel description: "This action allows the organizer of a meeting to send a cancellation message and cancel the event. The action moves the event to the Deleted Items folder. The organizer can also cancel an occurrence of a recurring meeting \r\nby providing the occurrence event ID. An attendee calling this action gets an error (HTTP 400 Bad Request), with the following\r\nerror message: 'Your request can't be completed. You need to be an organizer to cancel a meeting.' This action differs from Delete in that Cancel is available to only the organizer, and lets\r\nthe organizer send a custom message to the attendees about the cancellation." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0 operationId: groups.group.events.event.cancel requestBody: description: Action parameters content: application/json: schema: type: object properties: Comment: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/cancel /groups/{group-id}/events/{event-id}/decline: description: Provides operations to call the decline method. post: tags: - Groups.event summary: Microsoft Graph Invoke action decline description: >- Decline invitation to the specified event in a user calendar. If the event allows proposals for new times, on declining the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0 operationId: groups.group.events.event.decline requestBody: description: Action parameters content: application/json: schema: type: object properties: ProposedNewTime: anyOf: - $ref: '#/components/schemas/microsoft.graph.timeSlot' - type: object nullable: true SendResponse: type: boolean default: false nullable: true Comment: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/decline /groups/{group-id}/events/{event-id}/dismissReminder: description: Provides operations to call the dismissReminder method. post: tags: - Groups.event summary: Microsoft Graph Invoke action dismissReminder description: >- Dismiss a reminder that has been triggered for an event in a user calendar. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0 operationId: groups.group.events.event.dismissReminder responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/dismissReminder /groups/{group-id}/events/{event-id}/forward: description: Provides operations to call the forward method. post: tags: - Groups.event summary: Microsoft Graph Invoke action forward description: "This action allows the organizer or attendee of a meeting event to forward the\r\nmeeting request to a new recipient. If the meeting event is forwarded from an attendee's Microsoft 365 mailbox to another recipient, this action\r\nalso sends a message to notify the organizer of the forwarding, and adds the recipient to the organizer's\r\ncopy of the meeting event. This convenience is not available when forwarding from an Outlook.com account." externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0 operationId: groups.group.events.event.forward requestBody: description: Action parameters content: application/json: schema: type: object properties: ToRecipients: type: array items: $ref: '#/components/schemas/microsoft.graph.recipient' Comment: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/forward - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/forward - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/forward /groups/{group-id}/events/{event-id}/permanentDelete: description: Provides operations to call the permanentDelete method. post: tags: - Groups.event summary: Microsoft Graph Invoke action permanentDelete operationId: groups.group.events.event.permanentDelete responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/permanentDelete - /groups/{group-id}/calendar/permanentDelete /groups/{group-id}/events/{event-id}/snoozeReminder: description: Provides operations to call the snoozeReminder method. post: tags: - Groups.event summary: Microsoft Graph Invoke action snoozeReminder description: Postpone a reminder for an event in a user calendar until a new time. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0 operationId: groups.group.events.event.snoozeReminder requestBody: description: Action parameters content: application/json: schema: type: object properties: NewReminderTime: $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/snoozeReminder /groups/{group-id}/events/{event-id}/tentativelyAccept: description: Provides operations to call the tentativelyAccept method. post: tags: - Groups.event summary: Microsoft Graph Invoke action tentativelyAccept description: >- Tentatively accept the specified event in a user calendar. If the event allows proposals for new times, on responding tentative to the event, an invitee can choose to suggest an alternative time by including the proposedNewTime parameter. For more information on how to propose a time, and how to receive and accept a new time proposal, see Propose new meeting times. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0 operationId: groups.group.events.event.tentativelyAccept requestBody: description: Action parameters content: application/json: schema: type: object properties: ProposedNewTime: anyOf: - $ref: '#/components/schemas/microsoft.graph.timeSlot' - type: object nullable: true SendResponse: type: boolean default: false nullable: true Comment: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: event-id in: path description: The unique identifier of event required: true schema: type: string x-ms-docs-key-type: event x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/tentativelyAccept /groups/{group-id}/events/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.event summary: Microsoft Graph Get the number of the resource operationId: groups.events.GetCount-ab92 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/events/delta(): description: Provides operations to call the delta method. get: tags: - Groups.event summary: Microsoft Graph Invoke function delta description: >- Get a set of event resources that have been added, deleted, or updated in a calendarView (a range of events defined by start and end dates) of the user's primary calendar. Typically, synchronizing events in a calendarView in a local store entails a round of multiple delta function calls. The initial call is a full synchronization, and every subsequent delta call in the same round gets the incremental changes (additions, deletions, or updates). This allows you to maintain and synchronize a local store of events in the specified calendarView, without having to fetch all the events of that calendar from the server every time. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0 operationId: groups.group.events.delta parameters: - name: startDateTime in: query description: >- The start date and time of the time range in the function, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00 required: true schema: type: string - name: endDateTime in: query description: >- The end date and time of the time range in the function, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00 required: true schema: type: string - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of event type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.event' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/calendar/calendarView/delta() - /groups/{group-id}/calendar/events/{event-id}/instances/delta() - /groups/{group-id}/calendar/events/delta() - /groups/{group-id}/calendarView/delta() - /groups/{group-id}/events/{event-id}/instances/delta() - /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta() - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta(token='{token}') - /groups/{group-id}/sites/delta() - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/channels/{channel-id}/messages/delta() - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/primaryChannel/messages/delta() - /groups/delta() - /groups/delta() /groups/{group-id}/extensions: description: >- Provides operations to manage the extensions property of the microsoft.graph.group entity. get: tags: - Groups.extension summary: Microsoft Graph Get extensions from groups description: >- The collection of open extensions defined for the group. Read-only. Nullable. operationId: groups.ListExtensions parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.extensionCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.extension summary: Microsoft Graph Create new navigation property to extensions for groups operationId: groups.CreateExtensions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/extensions/{extension-id}: description: >- Provides operations to manage the extensions property of the microsoft.graph.group entity. get: tags: - Groups.extension summary: Microsoft Graph Get extensions from groups description: >- The collection of open extensions defined for the group. Read-only. Nullable. operationId: groups.GetExtensions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.extension summary: Microsoft Graph Update the navigation property extensions in groups operationId: groups.UpdateExtensions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.extension summary: Microsoft Graph Delete navigation property extensions for groups operationId: groups.DeleteExtensions parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: extension-id in: path description: The unique identifier of extension required: true schema: type: string x-ms-docs-key-type: extension /groups/{group-id}/extensions/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.extension summary: Microsoft Graph Get the number of the resource operationId: groups.extensions.GetCount-e2e0 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/groupLifecyclePolicies: description: >- Provides operations to manage the groupLifecyclePolicies property of the microsoft.graph.group entity. get: tags: - groups.groupLifecyclePolicy summary: Microsoft Graph List groupLifecyclePolicies description: >- Retrieves a list of groupLifecyclePolicy objects to which a group belongs. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-grouplifecyclepolicies?view=graph-rest-1.0 operationId: groups.ListGroupLifecyclePolicies parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.groupLifecyclePolicyCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - groups.groupLifecyclePolicy summary: Microsoft Graph Create new navigation property to groupLifecyclePolicies for groups operationId: groups.CreateGroupLifecyclePolicies requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.groupLifecyclePolicy' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.groupLifecyclePolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/groupLifecyclePolicies/{groupLifecyclePolicy-id}: description: >- Provides operations to manage the groupLifecyclePolicies property of the microsoft.graph.group entity. get: tags: - groups.groupLifecyclePolicy summary: Microsoft Graph Get groupLifecyclePolicies from groups description: >- The collection of lifecycle policies for this group. Read-only. Nullable. operationId: groups.GetGroupLifecyclePolicies parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.groupLifecyclePolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.groupLifecyclePolicy summary: Microsoft Graph Update the navigation property groupLifecyclePolicies in groups operationId: groups.UpdateGroupLifecyclePolicies requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.groupLifecyclePolicy' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.groupLifecyclePolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.groupLifecyclePolicy summary: Microsoft Graph Delete navigation property groupLifecyclePolicies for groups operationId: groups.DeleteGroupLifecyclePolicies parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: groupLifecyclePolicy-id in: path description: The unique identifier of groupLifecyclePolicy required: true schema: type: string x-ms-docs-key-type: groupLifecyclePolicy /groups/{group-id}/groupLifecyclePolicies/{groupLifecyclePolicy-id}/addGroup: description: Provides operations to call the addGroup method. post: tags: - groups.groupLifecyclePolicy summary: Microsoft Graph Invoke action addGroup description: >- Add a group to a groupLifecyclePolicy. This action is supported only if the managedGroupTypes property of the policy is set to Selected. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/grouplifecyclepolicy-addgroup?view=graph-rest-1.0 operationId: groups.group.groupLifecyclePolicies.groupLifecyclePolicy.addGroup requestBody: description: Action parameters content: application/json: schema: type: object properties: groupId: type: string required: true responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: boolean default: false 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: groupLifecyclePolicy-id in: path description: The unique identifier of groupLifecyclePolicy required: true schema: type: string x-ms-docs-key-type: groupLifecyclePolicy /groups/{group-id}/groupLifecyclePolicies/{groupLifecyclePolicy-id}/removeGroup: description: Provides operations to call the removeGroup method. post: tags: - groups.groupLifecyclePolicy summary: Microsoft Graph Invoke action removeGroup description: Removes a group from a lifecycle policy. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/grouplifecyclepolicy-removegroup?view=graph-rest-1.0 operationId: groups.group.groupLifecyclePolicies.groupLifecyclePolicy.removeGroup requestBody: description: Action parameters content: application/json: schema: type: object properties: groupId: type: string required: true responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: boolean default: false 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: groupLifecyclePolicy-id in: path description: The unique identifier of groupLifecyclePolicy required: true schema: type: string x-ms-docs-key-type: groupLifecyclePolicy /groups/{group-id}/groupLifecyclePolicies/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.groupLifecyclePolicy summary: Microsoft Graph Get the number of the resource operationId: groups.groupLifecyclePolicies.GetCount-ba70 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/memberOf: description: >- Provides operations to manage the memberOf property of the microsoft.graph.group entity. get: tags: - groups.directoryObject summary: Microsoft Graph List memberOf description: >- Get groups that the group is a direct member of. This operation is not transitive. Unlike getting a user's Microsoft 365 groups, this returns all types of groups, not just Microsoft 365 groups. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-memberof?view=graph-rest-1.0 operationId: groups.ListMemberOf parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.directoryObjectCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/memberOf/{directoryObject-id}: description: >- Provides operations to manage the memberOf property of the microsoft.graph.group entity. get: tags: - groups.directoryObject summary: Microsoft Graph Get memberOf from groups description: >- Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable. Supports $expand. operationId: groups.GetMemberOf parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryObject' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/memberOf/{directoryObject-id}/graph.administrativeUnit: description: Casts the previous resource to administrativeUnit. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit operationId: groups.GetMemberOf.AsAdministrativeUnit parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.administrativeUnit' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/memberOf/{directoryObject-id}/graph.group: description: Casts the previous resource to group. get: tags: - groups.directoryObject summary: Microsoft Graph List memberOf description: >- Get groups that the group is a direct member of. This operation is not transitive. Unlike getting a user's Microsoft 365 groups, this returns all types of groups, not just Microsoft 365 groups. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-memberof?view=graph-rest-1.0 operationId: groups.GetMemberOf.AsGroup parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/memberOf/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.memberOf.GetCount-e9c5 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/memberOf/graph.administrativeUnit: description: Casts the previous resource to administrativeUnit. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.administrativeUnit in the microsoft.graph.directoryObject collection operationId: groups.ListMemberOf.AsAdministrativeUnit parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.administrativeUnitCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/memberOf/graph.administrativeUnit/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.MemberOf.GetCount.AsAdministrativeUnit-4c17 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/memberOf/graph.group: description: Casts the previous resource to group. get: tags: - groups.directoryObject summary: Microsoft Graph List memberOf description: >- Get groups that the group is a direct member of. This operation is not transitive. Unlike getting a user's Microsoft 365 groups, this returns all types of groups, not just Microsoft 365 groups. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-memberof?view=graph-rest-1.0 operationId: groups.ListMemberOf.AsGroup parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.groupCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/memberOf/graph.group/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.MemberOf.GetCount.AsGroup-6572 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/members: description: >- Provides operations to manage the members property of the microsoft.graph.group entity. get: tags: - groups.directoryObject summary: Microsoft Graph List group members description: >- Get a list of the group's direct members. A group can have users, organizational contacts, devices, service principals and other groups as members. This operation is not transitive. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-members?view=graph-rest-1.0 operationId: groups.ListMembers parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.directoryObjectCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/members/{directoryObject-id}/$ref: description: Provides operations to manage the collection of group entities. delete: tags: - groups.directoryObject summary: Microsoft Graph Remove member description: >- Remove a member from a group via the members navigation property. You can't remove a member from groups with dynamic memberships. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-delete-members?view=graph-rest-1.0 operationId: groups.members.DeleteRefDirectoryObject parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/members/{directoryObject-id}/graph.application: description: Casts the previous resource to application. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.application operationId: groups.GetMembers.AsApplication parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.application' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/members/{directoryObject-id}/graph.device: description: Casts the previous resource to device. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.device operationId: groups.GetMembers.AsDevice parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.device' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/members/{directoryObject-id}/graph.group: description: Casts the previous resource to group. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.group operationId: groups.GetMembers.AsGroup parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/members/{directoryObject-id}/graph.orgContact: description: Casts the previous resource to orgContact. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.orgContact operationId: groups.GetMembers.AsOrgContact parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.orgContact' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/members/{directoryObject-id}/graph.servicePrincipal: description: Casts the previous resource to servicePrincipal. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal operationId: groups.GetMembers.AsServicePrincipal parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.servicePrincipal' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/members/{directoryObject-id}/graph.user: description: Casts the previous resource to user. get: tags: - groups.directoryObject summary: Microsoft Graph List group members description: >- Get a list of the group's direct members. A group can have users, organizational contacts, devices, service principals and other groups as members. This operation is not transitive. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-members?view=graph-rest-1.0 operationId: groups.GetMembers.AsUser parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.user' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/members/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.members.GetCount-e1e6 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/members/$ref: description: Provides operations to manage the collection of group entities. get: tags: - groups.directoryObject summary: Microsoft Graph List group members description: >- Get a list of the group's direct members. A group can have users, organizational contacts, devices, service principals and other groups as members. This operation is not transitive. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-members?view=graph-rest-1.0 operationId: groups.ListRefMembers parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/StringCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - groups.directoryObject summary: Microsoft Graph Add members description: >- Add a member to a security or Microsoft 365 group. When using the API to add multiple members in one request, you can add up to only 20 members. The following table shows the types of members that can be added to either security groups or Microsoft 365 groups. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-post-members?view=graph-rest-1.0 operationId: groups.CreateRefMembers requestBody: $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.directoryObject summary: Microsoft Graph Remove member description: >- Remove a member from a group via the members navigation property. You can't remove a member from groups with dynamic memberships. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-delete-members?view=graph-rest-1.0 operationId: groups.DeleteRefMembers parameters: - name: If-Match in: header description: ETag schema: type: string - name: '@id' in: query description: The delete Uri required: true schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/members/graph.application: description: Casts the previous resource to application. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.application in the microsoft.graph.directoryObject collection operationId: groups.ListMembers.AsApplication parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.applicationCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/members/graph.application/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.Members.GetCount.AsApplication-2734 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/members/graph.device: description: Casts the previous resource to device. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.device in the microsoft.graph.directoryObject collection operationId: groups.ListMembers.AsDevice parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.deviceCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/members/graph.device/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.Members.GetCount.AsDevice-e7a3 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/members/graph.group: description: Casts the previous resource to group. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection operationId: groups.ListMembers.AsGroup parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.groupCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/members/graph.group/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.Members.GetCount.AsGroup-86be parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/members/graph.orgContact: description: Casts the previous resource to orgContact. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.orgContact in the microsoft.graph.directoryObject collection operationId: groups.ListMembers.AsOrgContact parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.orgContactCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/members/graph.orgContact/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.Members.GetCount.AsOrgContact-9781 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/members/graph.servicePrincipal: description: Casts the previous resource to servicePrincipal. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection operationId: groups.ListMembers.AsServicePrincipal parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.servicePrincipalCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/members/graph.servicePrincipal/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.Members.GetCount.AsServicePrincipal-c922 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/members/graph.user: description: Casts the previous resource to user. get: tags: - groups.directoryObject summary: Microsoft Graph List group members description: >- Get a list of the group's direct members. A group can have users, organizational contacts, devices, service principals and other groups as members. This operation is not transitive. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-members?view=graph-rest-1.0 operationId: groups.ListMembers.AsUser parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.userCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/members/graph.user/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.Members.GetCount.AsUser-b36e parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/membersWithLicenseErrors: description: >- Provides operations to manage the membersWithLicenseErrors property of the microsoft.graph.group entity. get: tags: - groups.directoryObject summary: Microsoft Graph Get membersWithLicenseErrors from groups description: >- A list of group members with license errors from this group-based license assignment. Read-only. operationId: groups.ListMembersWithLicenseErrors parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.directoryObjectCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}: description: >- Provides operations to manage the membersWithLicenseErrors property of the microsoft.graph.group entity. get: tags: - groups.directoryObject summary: Microsoft Graph Get membersWithLicenseErrors from groups description: >- A list of group members with license errors from this group-based license assignment. Read-only. operationId: groups.GetMembersWithLicenseErrors parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryObject' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/graph.application: description: Casts the previous resource to application. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.application operationId: groups.GetMembersWithLicenseErrors.AsApplication parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.application' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/graph.device: description: Casts the previous resource to device. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.device operationId: groups.GetMembersWithLicenseErrors.AsDevice parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.device' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/graph.group: description: Casts the previous resource to group. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.group operationId: groups.GetMembersWithLicenseErrors.AsGroup parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/graph.orgContact: description: Casts the previous resource to orgContact. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.orgContact operationId: groups.GetMembersWithLicenseErrors.AsOrgContact parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.orgContact' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/graph.servicePrincipal: description: Casts the previous resource to servicePrincipal. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal operationId: groups.GetMembersWithLicenseErrors.AsServicePrincipal parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.servicePrincipal' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/graph.user: description: Casts the previous resource to user. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.user operationId: groups.GetMembersWithLicenseErrors.AsUser parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.user' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/membersWithLicenseErrors/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.membersWithLicenseErrors.GetCount-3ebc parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/membersWithLicenseErrors/graph.application: description: Casts the previous resource to application. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.application in the microsoft.graph.directoryObject collection operationId: groups.ListMembersWithLicenseErrors.AsApplication parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.applicationCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/membersWithLicenseErrors/graph.application/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.MembersWithLicenseErrors.GetCount.AsApplication-85ba parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/membersWithLicenseErrors/graph.device: description: Casts the previous resource to device. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.device in the microsoft.graph.directoryObject collection operationId: groups.ListMembersWithLicenseErrors.AsDevice parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.deviceCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/membersWithLicenseErrors/graph.device/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.MembersWithLicenseErrors.GetCount.AsDevice-5960 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/membersWithLicenseErrors/graph.group: description: Casts the previous resource to group. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection operationId: groups.ListMembersWithLicenseErrors.AsGroup parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.groupCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/membersWithLicenseErrors/graph.group/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.MembersWithLicenseErrors.GetCount.AsGroup-bee4 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/membersWithLicenseErrors/graph.orgContact: description: Casts the previous resource to orgContact. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.orgContact in the microsoft.graph.directoryObject collection operationId: groups.ListMembersWithLicenseErrors.AsOrgContact parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.orgContactCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/membersWithLicenseErrors/graph.orgContact/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.MembersWithLicenseErrors.GetCount.AsOrgContact-7eba parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/membersWithLicenseErrors/graph.servicePrincipal: description: Casts the previous resource to servicePrincipal. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection operationId: groups.ListMembersWithLicenseErrors.AsServicePrincipal parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.servicePrincipalCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/membersWithLicenseErrors/graph.servicePrincipal/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.MembersWithLicenseErrors.GetCount.AsServicePrincipal-0062 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/membersWithLicenseErrors/graph.user: description: Casts the previous resource to user. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.user in the microsoft.graph.directoryObject collection operationId: groups.ListMembersWithLicenseErrors.AsUser parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.userCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/membersWithLicenseErrors/graph.user/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.MembersWithLicenseErrors.GetCount.AsUser-0a9e parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/addFavorite: description: Provides operations to call the addFavorite method. post: tags: - groups.group.Actions summary: Microsoft Graph Invoke action addFavorite description: >- Add the group to the list of the current user's favorite groups. The group shows up in Outlook and Teams favorites. Supported for Microsoft 365 groups only. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-addfavorite?view=graph-rest-1.0 operationId: groups.group.addFavorite responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/assignLicense: description: Provides operations to call the assignLicense method. post: tags: - groups.group.Actions summary: Microsoft Graph Invoke action assignLicense description: >- Add or remove licenses on a group. Licenses assigned to the group will be assigned to all users in the group. Group-based licensing is an alternative to direct user licensing. To learn more about group-based licensing, see What is group-based licensing in Microsoft Entra ID. To get the subscriptions available in the directory, perform a GET subscribedSkus request. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-assignlicense?view=graph-rest-1.0 operationId: groups.group.assignLicense requestBody: description: Action parameters content: application/json: schema: type: object properties: addLicenses: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' removeLicenses: type: array items: pattern: >- ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ type: string format: uuid required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.group' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/checkGrantedPermissionsForApp: description: Provides operations to call the checkGrantedPermissionsForApp method. post: tags: - groups.group.Actions summary: Microsoft Graph Invoke action checkGrantedPermissionsForApp operationId: groups.group.checkGrantedPermissionsForApp responses: 2XX: description: Success content: application/json: schema: title: Collection of resourceSpecificPermissionGrant type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.resourceSpecificPermissionGrant 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/checkMemberGroups: description: Provides operations to call the checkMemberGroups method. post: tags: - groups.group.Actions summary: Microsoft Graph Invoke action checkMemberGroups description: "Check for membership in a specified list of group IDs, and return from that list the IDs of groups where a specified object is a member. The specified object can be of one of the following types:\r\n- user\r\n- group\r\n- service principal\r\n- organizational contact\r\n- device\r\n- directory object This function is transitive. You can check up to a maximum of 20 groups per request. This function supports all groups provisioned in Microsoft Entra ID. Because Microsoft 365 groups cannot contain other groups, membership in a Microsoft 365 group is always direct." externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0 operationId: groups.group.checkMemberGroups requestBody: description: Action parameters content: application/json: schema: type: object properties: groupIds: type: array items: type: string required: true responses: 2XX: description: Success content: application/json: schema: type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: type: string 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/checkMemberObjects: description: Provides operations to call the checkMemberObjects method. post: tags: - groups.group.Actions summary: Microsoft Graph Invoke action checkMemberObjects operationId: groups.group.checkMemberObjects requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string required: true responses: 2XX: description: Success content: application/json: schema: type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: type: string 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/getMemberGroups: description: Provides operations to call the getMemberGroups method. post: tags: - groups.group.Actions summary: Microsoft Graph Invoke action getMemberGroups description: >- Return all the group IDs for the groups that the specified user, group, service principal, organizational contact, device, or directory object is a member of. This function is transitive. This API returns up to 11,000 group IDs. If more than 11,000 results are available, it returns a 400 Bad Request error with the DirectoryResultSizeLimitExceeded error code. If you get the DirectoryResultSizeLimitExceeded error code, use the List group transitive memberOf API instead. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0 operationId: groups.group.getMemberGroups requestBody: description: Action parameters content: application/json: schema: type: object properties: securityEnabledOnly: type: boolean default: false nullable: true required: true responses: 2XX: description: Success content: application/json: schema: type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: type: string 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/getMemberObjects: description: Provides operations to call the getMemberObjects method. post: tags: - groups.group.Actions summary: Microsoft Graph Invoke action getMemberObjects description: "Return all IDs for the groups, administrative units, and directory roles that an object of one of the following types is a member of:\r\n- user\r\n- group\r\n- service principal\r\n- organizational contact\r\n- device\r\n- directory object This function is transitive. Only users and role-enabled groups can be members of directory roles." externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0 operationId: groups.group.getMemberObjects requestBody: description: Action parameters content: application/json: schema: type: object properties: securityEnabledOnly: type: boolean default: false nullable: true required: true responses: 2XX: description: Success content: application/json: schema: type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: type: string 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/removeFavorite: description: Provides operations to call the removeFavorite method. post: tags: - groups.group.Actions summary: Microsoft Graph Invoke action removeFavorite description: >- Remove the group from the list of the current user's favorite groups. Supported for Microsoft 365 groups only. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-removefavorite?view=graph-rest-1.0 operationId: groups.group.removeFavorite responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/renew: description: Provides operations to call the renew method. post: tags: - groups.group.Actions summary: Microsoft Graph Invoke action renew description: >- Renew a group's expiration. When a group is renewed, the group expiration is extended by the number of days defined in the policy. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/group-renew?view=graph-rest-1.0 operationId: groups.group.renew responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/resetUnseenCount: description: Provides operations to call the resetUnseenCount method. post: tags: - groups.group.Actions summary: Microsoft Graph Invoke action resetUnseenCount description: >- Reset the unseenCount of all the posts that the current user hasn't seen since their last visit. Supported for Microsoft 365 groups only. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-resetunseencount?view=graph-rest-1.0 operationId: groups.group.resetUnseenCount responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/restore: description: Provides operations to call the restore method. post: tags: - groups.group.Actions summary: Microsoft Graph Invoke action restore description: "Restore a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. Restore a recently deleted directory object from deleted items. The following types are supported:\r\n- administrativeUnit\r\n- application\r\n- certificateBasedAuthPki\r\n- certificateAuthorityDetail\r\n- group\r\n- servicePrincipal\r\n- user If an item is accidentally deleted, you can fully restore the item. Additionally, restoring an application doesn't automatically restore the associated service principal automatically. You must call this API to explicitly restore the deleted service principal. A recently deleted item remains available for up to 30 days. After 30 days, the item is permanently deleted." externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/directory-deleteditems-restore?view=graph-rest-1.0 operationId: groups.group.restore responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore /groups/{group-id}/retryServiceProvisioning: description: Provides operations to call the retryServiceProvisioning method. post: tags: - groups.group.Actions summary: Microsoft Graph Invoke action retryServiceProvisioning description: Retry the group service provisioning. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-retryserviceprovisioning?view=graph-rest-1.0 operationId: groups.group.retryServiceProvisioning responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/subscribeByMail: description: Provides operations to call the subscribeByMail method. post: tags: - groups.group.Actions summary: Microsoft Graph Invoke action subscribeByMail description: >- Calling this method will enable the current user to receive email notifications for this group, about new posts, events, and files in that group. Supported for Microsoft 365 groups only. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-subscribebymail?view=graph-rest-1.0 operationId: groups.group.subscribeByMail responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/unsubscribeByMail: description: Provides operations to call the unsubscribeByMail method. post: tags: - groups.group.Actions summary: Microsoft Graph Invoke action unsubscribeByMail description: >- Calling this method prevents the current user from receiving email notifications for this group about new posts, events, and files in that group. Supported for Microsoft 365 groups only. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-unsubscribebymail?view=graph-rest-1.0 operationId: groups.group.unsubscribeByMail responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/validateProperties: description: Provides operations to call the validateProperties method. post: tags: - groups.group.Actions summary: Microsoft Graph Invoke action validateProperties description: >- Validate that a Microsoft 365 group's display name or mail nickname complies with naming policies. Clients can use this API to determine whether a display name or mail nickname is valid before trying to update a Microsoft 365 group. To validate the properties before creating a group, use the directoryobject:validateProperties function. The following policy validations are performed for the display name and mail nickname properties: This API only returns the first validation failure that is encountered. If the properties fail multiple validations, only the first validation failure is returned. However, you can validate both the mail nickname and the display name and receive a collection of validation errors if you are only validating the prefix and suffix naming policy. To learn more about configuring naming policies, see Configure naming policy. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-validateproperties?view=graph-rest-1.0 operationId: groups.group.validateProperties requestBody: description: Action parameters content: application/json: schema: type: object properties: displayName: type: string nullable: true mailNickname: type: string nullable: true onBehalfOfUserId: pattern: >- ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ type: string format: uuid nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/validateProperties /groups/{group-id}/onenote: description: >- Provides operations to manage the onenote property of the microsoft.graph.group entity. get: tags: - Groups.onenote summary: Microsoft Graph Get onenote from groups operationId: groups.GetOnenote parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenote' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.onenote summary: Microsoft Graph Update the navigation property onenote in groups operationId: groups.UpdateOnenote requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenote' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenote' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.onenote summary: Microsoft Graph Delete navigation property onenote for groups operationId: groups.DeleteOnenote parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/onenote/notebooks: description: >- Provides operations to manage the notebooks property of the microsoft.graph.onenote entity. get: tags: - Groups.onenote summary: Microsoft Graph Get notebooks from groups description: >- The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote.ListNotebooks parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.notebookCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.onenote summary: Microsoft Graph Create new navigation property to notebooks for groups operationId: groups.onenote.CreateNotebooks requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/onenote/notebooks /groups/{group-id}/onenote/notebooks/{notebook-id}: description: >- Provides operations to manage the notebooks property of the microsoft.graph.onenote entity. get: tags: - Groups.onenote summary: Microsoft Graph Get notebooks from groups description: >- The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote.GetNotebooks parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.onenote summary: Microsoft Graph Update the navigation property notebooks in groups operationId: groups.onenote.UpdateNotebooks requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.onenote summary: Microsoft Graph Delete navigation property notebooks for groups operationId: groups.onenote.DeleteNotebooks parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id} /groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook: description: Provides operations to call the copyNotebook method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action copyNotebook description: >- For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-1.0 operationId: groups.group.onenote.notebooks.notebook.copyNotebook requestBody: description: Action parameters content: application/json: schema: type: object properties: groupId: type: string nullable: true renameAs: type: string nullable: true notebookFolder: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups: description: >- Provides operations to manage the sectionGroups property of the microsoft.graph.notebook entity. get: tags: - Groups.onenote summary: Microsoft Graph Get sectionGroups from groups description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks.ListSectionGroups parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.sectionGroupCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.onenote summary: Microsoft Graph Create new navigation property to sectionGroups for groups operationId: groups.onenote.notebooks.CreateSectionGroups requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}: description: >- Provides operations to manage the sectionGroups property of the microsoft.graph.notebook entity. get: tags: - Groups.onenote summary: Microsoft Graph Get sectionGroups from groups description: The section groups in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks.GetSectionGroups parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.onenote summary: Microsoft Graph Update the navigation property sectionGroups in groups operationId: groups.onenote.notebooks.UpdateSectionGroups requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.onenote summary: Microsoft Graph Delete navigation property sectionGroups for groups operationId: groups.onenote.notebooks.DeleteSectionGroups parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id} /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook: description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the section group. Read-only. operationId: groups.onenote.notebooks.sectionGroups.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup: description: >- Provides operations to manage the parentSectionGroup property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentSectionGroup from groups description: The section group that contains the section group. Read-only. operationId: groups.onenote.notebooks.sectionGroups.GetParentSectionGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups: description: >- Provides operations to manage the sectionGroups property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.onenote summary: Microsoft Graph Get sectionGroups from groups description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups.ListSectionGroups parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.sectionGroupCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}: description: >- Provides operations to manage the sectionGroups property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.onenote summary: Microsoft Graph Get sectionGroups from groups description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups.GetSectionGroups parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: sectionGroup-id1 in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1} - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1} /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.onenote summary: Microsoft Graph Get the number of the resource operationId: groups.onenote.notebooks.sectionGroups.sectionGroups.GetCount-e27e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections: description: >- Provides operations to manage the sections property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.onenote summary: Microsoft Graph Get sections from groups description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups.ListSections parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.onenoteSectionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.onenote summary: Microsoft Graph Create new navigation property to sections for groups operationId: groups.onenote.notebooks.sectionGroups.CreateSections requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}: description: >- Provides operations to manage the sections property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.onenote summary: Microsoft Graph Get sections from groups description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups.GetSections parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.onenote summary: Microsoft Graph Update the navigation property sections in groups operationId: groups.onenote.notebooks.sectionGroups.UpdateSections requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.onenote summary: Microsoft Graph Delete navigation property sections for groups operationId: groups.onenote.notebooks.sectionGroups.DeleteSections parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id} - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id} ? /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook : description: Provides operations to call the copyToNotebook method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action copyToNotebook description: >- For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0 operationId: >- groups.group.onenote.notebooks.notebook.sectionGroups.sectionGroup.sections.onenoteSection.copyToNotebook requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true renameAs: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - /groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook ? /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup : description: Provides operations to call the copyToSectionGroup method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action copyToSectionGroup description: >- For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0 operationId: >- groups.group.onenote.notebooks.notebook.sectionGroups.sectionGroup.sections.onenoteSection.copyToSectionGroup requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true renameAs: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages: description: >- Provides operations to manage the pages property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.onenote summary: Microsoft Graph Get pages from groups description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups.sections.ListPages parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.onenotePageCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.onenote summary: Microsoft Graph Create new navigation property to pages for groups operationId: groups.onenote.notebooks.sectionGroups.sections.CreatePages requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages ? /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} : description: >- Provides operations to manage the pages property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.onenote summary: Microsoft Graph Get pages from groups description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sectionGroups.sections.GetPages parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.onenote summary: Microsoft Graph Update the navigation property pages in groups operationId: groups.onenote.notebooks.sectionGroups.sections.UpdatePages requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.onenote summary: Microsoft Graph Delete navigation property pages for groups operationId: groups.onenote.notebooks.sectionGroups.sections.DeletePages parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id} ? /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content : description: Provides operations to manage the media for the group entity. get: tags: - Groups.onenote summary: Microsoft Graph Get content for the navigation property pages from groups description: The page's HTML content. operationId: groups.onenote.notebooks.sectionGroups.sections.GetPagesContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.onenote summary: Microsoft Graph Update content for the navigation property pages in groups description: The page's HTML content. operationId: groups.onenote.notebooks.sectionGroups.sections.UpdatePagesContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.onenote summary: Microsoft Graph Delete content for the navigation property pages in groups description: The page's HTML content. operationId: groups.onenote.notebooks.sectionGroups.sections.DeletePagesContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage ? /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection : description: Provides operations to call the copyToSection method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action copyToSection description: >- Copy a page to a specific section. For copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0 operationId: >- groups.group.onenote.notebooks.notebook.sectionGroups.sectionGroup.sections.onenoteSection.pages.onenotePage.copyToSection requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - /groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection ? /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent : description: Provides operations to call the onenotePatchContent method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action onenotePatchContent operationId: >- groups.group.onenote.notebooks.notebook.sectionGroups.sectionGroup.sections.onenoteSection.pages.onenotePage.onenotePatchContent requestBody: description: Action parameters content: application/json: schema: type: object properties: commands: type: array items: $ref: >- #/components/schemas/microsoft.graph.onenotePatchContentCommand required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - /groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent ? /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() : description: Provides operations to call the preview method. get: tags: - Groups.onenote summary: Microsoft Graph Invoke function preview operationId: >- groups.group.onenote.notebooks.notebook.sectionGroups.sectionGroup.sections.onenoteSection.pages.onenotePage.preview responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenotePagePreview' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - /groups/{group-id}/onenote/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() ? /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook : description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.onenotePage entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the page. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections.pages.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - /groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook ? /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection : description: >- Provides operations to manage the parentSection property of the microsoft.graph.onenotePage entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentSection from groups description: The section that contains the page. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections.pages.GetParentSection parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - /groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection ? /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.onenote summary: Microsoft Graph Get the number of the resource operationId: groups.onenote.notebooks.sectionGroups.sections.pages.GetCount-6db1 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection ? /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook : description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the section. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - /groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook ? /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup : description: >- Provides operations to manage the parentSectionGroup property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentSectionGroup from groups description: The section group that contains the section. Read-only. operationId: groups.onenote.notebooks.sectionGroups.sections.GetParentSectionGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.onenote summary: Microsoft Graph Get the number of the resource operationId: groups.onenote.notebooks.sectionGroups.sections.GetCount-abc0 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.onenote summary: Microsoft Graph Get the number of the resource operationId: groups.onenote.notebooks.sectionGroups.GetCount-e27e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook /groups/{group-id}/onenote/notebooks/{notebook-id}/sections: description: >- Provides operations to manage the sections property of the microsoft.graph.notebook entity. get: tags: - Groups.onenote summary: Microsoft Graph Get sections from groups description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks.ListSections parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.onenoteSectionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.onenote summary: Microsoft Graph Create new navigation property to sections for groups operationId: groups.onenote.notebooks.CreateSections requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}: description: >- Provides operations to manage the sections property of the microsoft.graph.notebook entity. get: tags: - Groups.onenote summary: Microsoft Graph Get sections from groups description: The sections in the notebook. Read-only. Nullable. operationId: groups.onenote.notebooks.GetSections parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.onenote summary: Microsoft Graph Update the navigation property sections in groups operationId: groups.onenote.notebooks.UpdateSections requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.onenote summary: Microsoft Graph Delete navigation property sections for groups operationId: groups.onenote.notebooks.DeleteSections parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id} /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook: description: Provides operations to call the copyToNotebook method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action copyToNotebook description: >- For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0 operationId: >- groups.group.onenote.notebooks.notebook.sections.onenoteSection.copyToNotebook requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true renameAs: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - /groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup: description: Provides operations to call the copyToSectionGroup method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action copyToSectionGroup description: >- For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0 operationId: >- groups.group.onenote.notebooks.notebook.sections.onenoteSection.copyToSectionGroup requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true renameAs: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages: description: >- Provides operations to manage the pages property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.onenote summary: Microsoft Graph Get pages from groups description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.ListPages parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.onenotePageCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.onenote summary: Microsoft Graph Create new navigation property to pages for groups operationId: groups.onenote.notebooks.sections.CreatePages requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}: description: >- Provides operations to manage the pages property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.onenote summary: Microsoft Graph Get pages from groups description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.notebooks.sections.GetPages parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.onenote summary: Microsoft Graph Update the navigation property pages in groups operationId: groups.onenote.notebooks.sections.UpdatePages requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.onenote summary: Microsoft Graph Delete navigation property pages for groups operationId: groups.onenote.notebooks.sections.DeletePages parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id} /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content: description: Provides operations to manage the media for the group entity. get: tags: - Groups.onenote summary: Microsoft Graph Get content for the navigation property pages from groups description: The page's HTML content. operationId: groups.onenote.notebooks.sections.GetPagesContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.onenote summary: Microsoft Graph Update content for the navigation property pages in groups description: The page's HTML content. operationId: groups.onenote.notebooks.sections.UpdatePagesContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.onenote summary: Microsoft Graph Delete content for the navigation property pages in groups description: The page's HTML content. operationId: groups.onenote.notebooks.sections.DeletePagesContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection: description: Provides operations to call the copyToSection method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action copyToSection description: >- Copy a page to a specific section. For copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0 operationId: >- groups.group.onenote.notebooks.notebook.sections.onenoteSection.pages.onenotePage.copyToSection requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - /groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent: description: Provides operations to call the onenotePatchContent method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action onenotePatchContent operationId: >- groups.group.onenote.notebooks.notebook.sections.onenoteSection.pages.onenotePage.onenotePatchContent requestBody: description: Action parameters content: application/json: schema: type: object properties: commands: type: array items: $ref: >- #/components/schemas/microsoft.graph.onenotePatchContentCommand required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - /groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview(): description: Provides operations to call the preview method. get: tags: - Groups.onenote summary: Microsoft Graph Invoke function preview operationId: >- groups.group.onenote.notebooks.notebook.sections.onenoteSection.pages.onenotePage.preview responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenotePagePreview' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - /groups/{group-id}/onenote/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook: description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.onenotePage entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the page. Read-only. operationId: groups.onenote.notebooks.sections.pages.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - /groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection: description: >- Provides operations to manage the parentSection property of the microsoft.graph.onenotePage entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentSection from groups description: The section that contains the page. Read-only. operationId: groups.onenote.notebooks.sections.pages.GetParentSection parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - /groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.onenote summary: Microsoft Graph Get the number of the resource operationId: groups.onenote.notebooks.sections.pages.GetCount-9305 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook: description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the section. Read-only. operationId: groups.onenote.notebooks.sections.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - /groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup: description: >- Provides operations to manage the parentSectionGroup property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentSectionGroup from groups description: The section group that contains the section. Read-only. operationId: groups.onenote.notebooks.sections.GetParentSectionGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.onenote summary: Microsoft Graph Get the number of the resource operationId: groups.onenote.notebooks.sections.GetCount-8678 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook /groups/{group-id}/onenote/notebooks/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.onenote summary: Microsoft Graph Get the number of the resource operationId: groups.onenote.notebooks.GetCount-4d2a parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/onenote/notebooks/getNotebookFromWebUrl: description: Provides operations to call the getNotebookFromWebUrl method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action getNotebookFromWebUrl description: >- Retrieve the properties and relationships of a notebook object by using its URL path. The location can be user notebooks on Microsoft 365, group notebooks, or SharePoint site-hosted team notebooks on Microsoft 365. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-1.0 operationId: groups.group.onenote.notebooks.getNotebookFromWebUrl requestBody: description: Action parameters content: application/json: schema: type: object properties: webUrl: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.CopyNotebookModel' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/getNotebookFromWebUrl /groups/{group-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks}): description: Provides operations to call the getRecentNotebooks method. get: tags: - Groups.onenote summary: Microsoft Graph Invoke function getRecentNotebooks description: >- Get a list of recentNotebook instances that have been accessed by the signed-in user. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-1.0 operationId: groups.group.onenote.notebooks.getRecentNotebooks parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' responses: 2XX: description: Success content: application/json: schema: type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.recentNotebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: includePersonalNotebooks in: path description: 'Usage: includePersonalNotebooks={includePersonalNotebooks}' required: true schema: type: boolean default: false x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks}) /groups/{group-id}/onenote/operations: description: >- Provides operations to manage the operations property of the microsoft.graph.onenote entity. get: tags: - Groups.onenote summary: Microsoft Graph Get operations from groups description: >- The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. operationId: groups.onenote.ListOperations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.onenoteOperationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.onenote summary: Microsoft Graph Create new navigation property to operations for groups operationId: groups.onenote.CreateOperations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteOperation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/onenote/operations /groups/{group-id}/onenote/operations/{onenoteOperation-id}: description: >- Provides operations to manage the operations property of the microsoft.graph.onenote entity. get: tags: - Groups.onenote summary: Microsoft Graph Get operations from groups description: >- The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. operationId: groups.onenote.GetOperations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.onenote summary: Microsoft Graph Update the navigation property operations in groups operationId: groups.onenote.UpdateOperations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteOperation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.onenote summary: Microsoft Graph Delete navigation property operations for groups operationId: groups.onenote.DeleteOperations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenoteOperation-id in: path description: The unique identifier of onenoteOperation required: true schema: type: string x-ms-docs-key-type: onenoteOperation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/onenote/operations/{onenoteOperation-id} /groups/{group-id}/onenote/operations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.onenote summary: Microsoft Graph Get the number of the resource operationId: groups.onenote.operations.GetCount-b2ab parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/onenote/pages: description: >- Provides operations to manage the pages property of the microsoft.graph.onenote entity. get: tags: - Groups.onenote summary: Microsoft Graph Get pages from groups description: >- The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote.ListPages parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.onenotePageCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.onenote summary: Microsoft Graph Create new navigation property to pages for groups operationId: groups.onenote.CreatePages requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/onenote/pages /groups/{group-id}/onenote/pages/{onenotePage-id}: description: >- Provides operations to manage the pages property of the microsoft.graph.onenote entity. get: tags: - Groups.onenote summary: Microsoft Graph Get pages from groups description: >- The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote.GetPages parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.onenote summary: Microsoft Graph Update the navigation property pages in groups operationId: groups.onenote.UpdatePages requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.onenote summary: Microsoft Graph Delete navigation property pages for groups operationId: groups.onenote.DeletePages parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id} /groups/{group-id}/onenote/pages/{onenotePage-id}/content: description: Provides operations to manage the media for the group entity. get: tags: - Groups.onenote summary: Microsoft Graph Get content for the navigation property pages from groups description: The page's HTML content. operationId: groups.onenote.GetPagesContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.onenote summary: Microsoft Graph Update content for the navigation property pages in groups description: The page's HTML content. operationId: groups.onenote.UpdatePagesContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.onenote summary: Microsoft Graph Delete content for the navigation property pages in groups description: The page's HTML content. operationId: groups.onenote.DeletePagesContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage /groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection: description: Provides operations to call the copyToSection method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action copyToSection description: >- Copy a page to a specific section. For copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0 operationId: groups.group.onenote.pages.onenotePage.copyToSection requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection /groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent: description: Provides operations to call the onenotePatchContent method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action onenotePatchContent operationId: groups.group.onenote.pages.onenotePage.onenotePatchContent requestBody: description: Action parameters content: application/json: schema: type: object properties: commands: type: array items: $ref: >- #/components/schemas/microsoft.graph.onenotePatchContentCommand required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent /groups/{group-id}/onenote/pages/{onenotePage-id}/preview(): description: Provides operations to call the preview method. get: tags: - Groups.onenote summary: Microsoft Graph Invoke function preview operationId: groups.group.onenote.pages.onenotePage.preview responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenotePagePreview' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() /groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook: description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.onenotePage entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the page. Read-only. operationId: groups.onenote.pages.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook /groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection: description: >- Provides operations to manage the parentSection property of the microsoft.graph.onenotePage entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentSection from groups description: The section that contains the page. Read-only. operationId: groups.onenote.pages.GetParentSection parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection /groups/{group-id}/onenote/pages/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.onenote summary: Microsoft Graph Get the number of the resource operationId: groups.onenote.pages.GetCount-8bf6 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/onenote/resources: description: >- Provides operations to manage the resources property of the microsoft.graph.onenote entity. get: tags: - Groups.onenote summary: Microsoft Graph Get resources from groups description: >- The image and other file resources in OneNote pages. Getting a resources collection isn't supported, but you can get the binary content of a specific resource. Read-only. Nullable. operationId: groups.onenote.ListResources parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.onenoteResourceCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.onenote summary: Microsoft Graph Create new navigation property to resources for groups operationId: groups.onenote.CreateResources requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteResource' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteResource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/onenote/resources /groups/{group-id}/onenote/resources/{onenoteResource-id}: description: >- Provides operations to manage the resources property of the microsoft.graph.onenote entity. get: tags: - Groups.onenote summary: Microsoft Graph Get resources from groups description: >- The image and other file resources in OneNote pages. Getting a resources collection isn't supported, but you can get the binary content of a specific resource. Read-only. Nullable. operationId: groups.onenote.GetResources parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteResource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.onenote summary: Microsoft Graph Update the navigation property resources in groups operationId: groups.onenote.UpdateResources requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteResource' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteResource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.onenote summary: Microsoft Graph Delete navigation property resources for groups operationId: groups.onenote.DeleteResources parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenoteResource-id in: path description: The unique identifier of onenoteResource required: true schema: type: string x-ms-docs-key-type: onenoteResource x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id} /groups/{group-id}/onenote/resources/{onenoteResource-id}/content: description: Provides operations to manage the media for the group entity. get: tags: - Groups.onenote summary: Microsoft Graph Get content for the navigation property resources from groups description: The content stream operationId: groups.onenote.GetResourcesContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.onenote summary: Microsoft Graph Update content for the navigation property resources in groups description: The content stream operationId: groups.onenote.UpdateResourcesContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteResource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.onenote summary: Microsoft Graph Delete content for the navigation property resources in groups description: The content stream operationId: groups.onenote.DeleteResourcesContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenoteResource-id in: path description: The unique identifier of onenoteResource required: true schema: type: string x-ms-docs-key-type: onenoteResource /groups/{group-id}/onenote/resources/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.onenote summary: Microsoft Graph Get the number of the resource operationId: groups.onenote.resources.GetCount-b07f parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/onenote/sectionGroups: description: >- Provides operations to manage the sectionGroups property of the microsoft.graph.onenote entity. get: tags: - Groups.onenote summary: Microsoft Graph Get sectionGroups from groups description: >- The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote.ListSectionGroups parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.sectionGroupCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.onenote summary: Microsoft Graph Create new navigation property to sectionGroups for groups operationId: groups.onenote.CreateSectionGroups requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/onenote/sectionGroups /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}: description: >- Provides operations to manage the sectionGroups property of the microsoft.graph.onenote entity. get: tags: - Groups.onenote summary: Microsoft Graph Get sectionGroups from groups description: >- The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote.GetSectionGroups parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.onenote summary: Microsoft Graph Update the navigation property sectionGroups in groups operationId: groups.onenote.UpdateSectionGroups requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.onenote summary: Microsoft Graph Delete navigation property sectionGroups for groups operationId: groups.onenote.DeleteSectionGroups parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id} /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook: description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the section group. Read-only. operationId: groups.onenote.sectionGroups.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup: description: >- Provides operations to manage the parentSectionGroup property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentSectionGroup from groups description: The section group that contains the section group. Read-only. operationId: groups.onenote.sectionGroups.GetParentSectionGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups: description: >- Provides operations to manage the sectionGroups property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.onenote summary: Microsoft Graph Get sectionGroups from groups description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.ListSectionGroups parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.sectionGroupCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}: description: >- Provides operations to manage the sectionGroups property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.onenote summary: Microsoft Graph Get sectionGroups from groups description: The section groups in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.GetSectionGroups parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: sectionGroup-id1 in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1} - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1} /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.onenote summary: Microsoft Graph Get the number of the resource operationId: groups.onenote.sectionGroups.sectionGroups.GetCount-17b9 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections: description: >- Provides operations to manage the sections property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.onenote summary: Microsoft Graph Get sections from groups description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sectionGroups.ListSections parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.onenoteSectionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.onenote summary: Microsoft Graph Create new navigation property to sections for groups operationId: groups.onenote.sectionGroups.CreateSections requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}: description: >- Provides operations to manage the sections property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.onenote summary: Microsoft Graph Get sections from groups description: The sections in the section group. Read-only. Nullable. operationId: groups.onenote.sectionGroups.GetSections parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.onenote summary: Microsoft Graph Update the navigation property sections in groups operationId: groups.onenote.sectionGroups.UpdateSections requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.onenote summary: Microsoft Graph Delete navigation property sections for groups operationId: groups.onenote.sectionGroups.DeleteSections parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id} - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id} /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook: description: Provides operations to call the copyToNotebook method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action copyToNotebook description: >- For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0 operationId: >- groups.group.onenote.sectionGroups.sectionGroup.sections.onenoteSection.copyToNotebook requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true renameAs: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook - /groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup: description: Provides operations to call the copyToSectionGroup method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action copyToSectionGroup description: >- For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0 operationId: >- groups.group.onenote.sectionGroups.sectionGroup.sections.onenoteSection.copyToSectionGroup requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true renameAs: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages: description: >- Provides operations to manage the pages property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.onenote summary: Microsoft Graph Get pages from groups description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.ListPages parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.onenotePageCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.onenote summary: Microsoft Graph Create new navigation property to pages for groups operationId: groups.onenote.sectionGroups.sections.CreatePages requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages - /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}: description: >- Provides operations to manage the pages property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.onenote summary: Microsoft Graph Get pages from groups description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sectionGroups.sections.GetPages parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.onenote summary: Microsoft Graph Update the navigation property pages in groups operationId: groups.onenote.sectionGroups.sections.UpdatePages requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.onenote summary: Microsoft Graph Delete navigation property pages for groups operationId: groups.onenote.sectionGroups.sections.DeletePages parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id} /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content: description: Provides operations to manage the media for the group entity. get: tags: - Groups.onenote summary: Microsoft Graph Get content for the navigation property pages from groups description: The page's HTML content. operationId: groups.onenote.sectionGroups.sections.GetPagesContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.onenote summary: Microsoft Graph Update content for the navigation property pages in groups description: The page's HTML content. operationId: groups.onenote.sectionGroups.sections.UpdatePagesContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.onenote summary: Microsoft Graph Delete content for the navigation property pages in groups description: The page's HTML content. operationId: groups.onenote.sectionGroups.sections.DeletePagesContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage ? /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection : description: Provides operations to call the copyToSection method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action copyToSection description: >- Copy a page to a specific section. For copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0 operationId: >- groups.group.onenote.sectionGroups.sectionGroup.sections.onenoteSection.pages.onenotePage.copyToSection requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - /groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection ? /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent : description: Provides operations to call the onenotePatchContent method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action onenotePatchContent operationId: >- groups.group.onenote.sectionGroups.sectionGroup.sections.onenoteSection.pages.onenotePage.onenotePatchContent requestBody: description: Action parameters content: application/json: schema: type: object properties: commands: type: array items: $ref: >- #/components/schemas/microsoft.graph.onenotePatchContentCommand required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - /groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview(): description: Provides operations to call the preview method. get: tags: - Groups.onenote summary: Microsoft Graph Invoke function preview operationId: >- groups.group.onenote.sectionGroups.sectionGroup.sections.onenoteSection.pages.onenotePage.preview responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenotePagePreview' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - /groups/{group-id}/onenote/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() ? /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook : description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.onenotePage entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the page. Read-only. operationId: groups.onenote.sectionGroups.sections.pages.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - /groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook ? /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection : description: >- Provides operations to manage the parentSection property of the microsoft.graph.onenotePage entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentSection from groups description: The section that contains the page. Read-only. operationId: groups.onenote.sectionGroups.sections.pages.GetParentSection parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - /groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.onenote summary: Microsoft Graph Get the number of the resource operationId: groups.onenote.sectionGroups.sections.pages.GetCount-110b parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook: description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the section. Read-only. operationId: groups.onenote.sectionGroups.sections.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook - /groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup: description: >- Provides operations to manage the parentSectionGroup property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentSectionGroup from groups description: The section group that contains the section. Read-only. operationId: groups.onenote.sectionGroups.sections.GetParentSectionGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.onenote summary: Microsoft Graph Get the number of the resource operationId: groups.onenote.sectionGroups.sections.GetCount-4d99 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup /groups/{group-id}/onenote/sectionGroups/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.onenote summary: Microsoft Graph Get the number of the resource operationId: groups.onenote.sectionGroups.GetCount-17b9 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/onenote/sections: description: >- Provides operations to manage the sections property of the microsoft.graph.onenote entity. get: tags: - Groups.onenote summary: Microsoft Graph Get sections from groups description: >- The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote.ListSections parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.onenoteSectionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.onenote summary: Microsoft Graph Create new navigation property to sections for groups operationId: groups.onenote.CreateSections requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/onenote/sections /groups/{group-id}/onenote/sections/{onenoteSection-id}: description: >- Provides operations to manage the sections property of the microsoft.graph.onenote entity. get: tags: - Groups.onenote summary: Microsoft Graph Get sections from groups description: >- The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.onenote.GetSections parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.onenote summary: Microsoft Graph Update the navigation property sections in groups operationId: groups.onenote.UpdateSections requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.onenote summary: Microsoft Graph Delete navigation property sections for groups operationId: groups.onenote.DeleteSections parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id} /groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook: description: Provides operations to call the copyToNotebook method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action copyToNotebook description: >- For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0 operationId: groups.group.onenote.sections.onenoteSection.copyToNotebook requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true renameAs: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook /groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup: description: Provides operations to call the copyToSectionGroup method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action copyToSectionGroup description: >- For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0 operationId: groups.group.onenote.sections.onenoteSection.copyToSectionGroup requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true renameAs: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages: description: >- Provides operations to manage the pages property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.onenote summary: Microsoft Graph Get pages from groups description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sections.ListPages parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.onenotePageCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.onenote summary: Microsoft Graph Create new navigation property to pages for groups operationId: groups.onenote.sections.CreatePages requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}: description: >- Provides operations to manage the pages property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.onenote summary: Microsoft Graph Get pages from groups description: The collection of pages in the section. Read-only. Nullable. operationId: groups.onenote.sections.GetPages parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.onenote summary: Microsoft Graph Update the navigation property pages in groups operationId: groups.onenote.sections.UpdatePages requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.onenote summary: Microsoft Graph Delete navigation property pages for groups operationId: groups.onenote.sections.DeletePages parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id} /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content: description: Provides operations to manage the media for the group entity. get: tags: - Groups.onenote summary: Microsoft Graph Get content for the navigation property pages from groups description: The page's HTML content. operationId: groups.onenote.sections.GetPagesContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.onenote summary: Microsoft Graph Update content for the navigation property pages in groups description: The page's HTML content. operationId: groups.onenote.sections.UpdatePagesContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.onenote summary: Microsoft Graph Delete content for the navigation property pages in groups description: The page's HTML content. operationId: groups.onenote.sections.DeletePagesContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection: description: Provides operations to call the copyToSection method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action copyToSection description: >- Copy a page to a specific section. For copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0 operationId: >- groups.group.onenote.sections.onenoteSection.pages.onenotePage.copyToSection requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - /groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent: description: Provides operations to call the onenotePatchContent method. post: tags: - Groups.onenote summary: Microsoft Graph Invoke action onenotePatchContent operationId: >- groups.group.onenote.sections.onenoteSection.pages.onenotePage.onenotePatchContent requestBody: description: Action parameters content: application/json: schema: type: object properties: commands: type: array items: $ref: >- #/components/schemas/microsoft.graph.onenotePatchContentCommand required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - /groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview(): description: Provides operations to call the preview method. get: tags: - Groups.onenote summary: Microsoft Graph Invoke function preview operationId: groups.group.onenote.sections.onenoteSection.pages.onenotePage.preview responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenotePagePreview' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - /groups/{group-id}/onenote/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook: description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.onenotePage entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the page. Read-only. operationId: groups.onenote.sections.pages.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - /groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection: description: >- Provides operations to manage the parentSection property of the microsoft.graph.onenotePage entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentSection from groups description: The section that contains the page. Read-only. operationId: groups.onenote.sections.pages.GetParentSection parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - /groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.onenote summary: Microsoft Graph Get the number of the resource operationId: groups.onenote.sections.pages.GetCount-375d parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection /groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook: description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the section. Read-only. operationId: groups.onenote.sections.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook /groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup: description: >- Provides operations to manage the parentSectionGroup property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.onenote summary: Microsoft Graph Get parentSectionGroup from groups description: The section group that contains the section. Read-only. operationId: groups.onenote.sections.GetParentSectionGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup /groups/{group-id}/onenote/sections/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.onenote summary: Microsoft Graph Get the number of the resource operationId: groups.onenote.sections.GetCount-0122 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/onPremisesSyncBehavior: description: >- Provides operations to manage the onPremisesSyncBehavior property of the microsoft.graph.group entity. get: tags: - groups.onPremisesSyncBehavior summary: Microsoft Graph Get onPremisesSyncBehavior from groups operationId: groups.GetOnPremisesSyncBehavior parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onPremisesSyncBehavior' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.onPremisesSyncBehavior summary: Microsoft Graph Update the navigation property onPremisesSyncBehavior in groups operationId: groups.UpdateOnPremisesSyncBehavior requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onPremisesSyncBehavior' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onPremisesSyncBehavior' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.onPremisesSyncBehavior summary: Microsoft Graph Delete navigation property onPremisesSyncBehavior for groups operationId: groups.DeleteOnPremisesSyncBehavior parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/owners: description: >- Provides operations to manage the owners property of the microsoft.graph.group entity. get: tags: - groups.directoryObject summary: Microsoft Graph List group owners description: >- Retrieve a list of the group's owners. The owners are a set of users or service principals who are allowed to modify the group object. Owners are currently not available in Microsoft Graph for groups that were created in Exchange, distribution groups, or groups that are synchronized from an on-premises environment. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-owners?view=graph-rest-1.0 operationId: groups.ListOwners parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.directoryObjectCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/owners/{directoryObject-id}/$ref: description: Provides operations to manage the collection of group entities. delete: tags: - groups.directoryObject summary: Microsoft Graph Remove group owner description: >- Remove an owner from a Microsoft 365 group or a security group through the owners navigation property. Once owners are assigned to a group, the last owner (a user object) of the group cannot be removed. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-delete-owners?view=graph-rest-1.0 operationId: groups.owners.DeleteRefDirectoryObject parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/owners/{directoryObject-id}/graph.application: description: Casts the previous resource to application. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.application operationId: groups.GetOwners.AsApplication parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.application' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/owners/{directoryObject-id}/graph.device: description: Casts the previous resource to device. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.device operationId: groups.GetOwners.AsDevice parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.device' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/owners/{directoryObject-id}/graph.group: description: Casts the previous resource to group. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.group operationId: groups.GetOwners.AsGroup parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/owners/{directoryObject-id}/graph.orgContact: description: Casts the previous resource to orgContact. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.orgContact operationId: groups.GetOwners.AsOrgContact parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.orgContact' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/owners/{directoryObject-id}/graph.servicePrincipal: description: Casts the previous resource to servicePrincipal. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal operationId: groups.GetOwners.AsServicePrincipal parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.servicePrincipal' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/owners/{directoryObject-id}/graph.user: description: Casts the previous resource to user. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.user operationId: groups.GetOwners.AsUser parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.user' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/owners/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.owners.GetCount-9fe3 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/owners/$ref: description: Provides operations to manage the collection of group entities. get: tags: - groups.directoryObject summary: Microsoft Graph List group owners description: >- Retrieve a list of the group's owners. The owners are a set of users or service principals who are allowed to modify the group object. Owners are currently not available in Microsoft Graph for groups that were created in Exchange, distribution groups, or groups that are synchronized from an on-premises environment. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-owners?view=graph-rest-1.0 operationId: groups.ListRefOwners parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/StringCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - groups.directoryObject summary: Microsoft Graph Add owners description: >- Add a user or service principal to a Microsoft 365 or security group's owners. The owners are a set of users or service principals who are allowed to modify the group object. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-post-owners?view=graph-rest-1.0 operationId: groups.CreateRefOwners requestBody: $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.directoryObject summary: Microsoft Graph Remove group owner description: >- Remove an owner from a Microsoft 365 group or a security group through the owners navigation property. Once owners are assigned to a group, the last owner (a user object) of the group cannot be removed. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-delete-owners?view=graph-rest-1.0 operationId: groups.DeleteRefOwners parameters: - name: If-Match in: header description: ETag schema: type: string - name: '@id' in: query description: The delete Uri required: true schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/owners/graph.application: description: Casts the previous resource to application. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.application in the microsoft.graph.directoryObject collection operationId: groups.ListOwners.AsApplication parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.applicationCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/owners/graph.application/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.Owners.GetCount.AsApplication-bd83 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/owners/graph.device: description: Casts the previous resource to device. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.device in the microsoft.graph.directoryObject collection operationId: groups.ListOwners.AsDevice parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.deviceCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/owners/graph.device/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.Owners.GetCount.AsDevice-2b5b parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/owners/graph.group: description: Casts the previous resource to group. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection operationId: groups.ListOwners.AsGroup parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.groupCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/owners/graph.group/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.Owners.GetCount.AsGroup-a694 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/owners/graph.orgContact: description: Casts the previous resource to orgContact. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.orgContact in the microsoft.graph.directoryObject collection operationId: groups.ListOwners.AsOrgContact parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.orgContactCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/owners/graph.orgContact/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.Owners.GetCount.AsOrgContact-b70b parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/owners/graph.servicePrincipal: description: Casts the previous resource to servicePrincipal. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection operationId: groups.ListOwners.AsServicePrincipal parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.servicePrincipalCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/owners/graph.servicePrincipal/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.Owners.GetCount.AsServicePrincipal-8498 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/owners/graph.user: description: Casts the previous resource to user. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.user in the microsoft.graph.directoryObject collection operationId: groups.ListOwners.AsUser parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.userCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/owners/graph.user/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.Owners.GetCount.AsUser-1c87 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/permissionGrants: description: >- Provides operations to manage the permissionGrants property of the microsoft.graph.group entity. get: tags: - groups.resourceSpecificPermissionGrant summary: Microsoft Graph List permissionGrants of a group description: >- List all resource-specific permission grants on the group. This list specifies the Microsoft Entra apps that have access to the group, along with the corresponding resource-specific access that each app has. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-permissiongrants?view=graph-rest-1.0 operationId: groups.ListPermissionGrants parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.resourceSpecificPermissionGrantCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - groups.resourceSpecificPermissionGrant summary: Microsoft Graph Create new navigation property to permissionGrants for groups operationId: groups.CreatePermissionGrants requestBody: description: New navigation property content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.resourceSpecificPermissionGrant required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.resourceSpecificPermissionGrant 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}: description: >- Provides operations to manage the permissionGrants property of the microsoft.graph.group entity. get: tags: - groups.resourceSpecificPermissionGrant summary: Microsoft Graph Get permissionGrants from groups operationId: groups.GetPermissionGrants parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.resourceSpecificPermissionGrant 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.resourceSpecificPermissionGrant summary: Microsoft Graph Update the navigation property permissionGrants in groups operationId: groups.UpdatePermissionGrants requestBody: description: New navigation property values content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.resourceSpecificPermissionGrant required: true responses: 2XX: description: Success content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.resourceSpecificPermissionGrant 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.resourceSpecificPermissionGrant summary: Microsoft Graph Delete navigation property permissionGrants for groups operationId: groups.DeletePermissionGrants parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: resourceSpecificPermissionGrant-id in: path description: The unique identifier of resourceSpecificPermissionGrant required: true schema: type: string x-ms-docs-key-type: resourceSpecificPermissionGrant /groups/{group-id}/permissionGrants/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.resourceSpecificPermissionGrant summary: Microsoft Graph Get the number of the resource operationId: groups.permissionGrants.GetCount-76af parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/photo: description: >- Provides operations to manage the photo property of the microsoft.graph.group entity. get: tags: - groups.profilePhoto summary: Microsoft Graph Get photo from groups description: The group's profile photo operationId: groups.GetPhoto parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profilePhoto' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.profilePhoto summary: Microsoft Graph Update the navigation property photo in groups operationId: groups.UpdatePhoto requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profilePhoto' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profilePhoto' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.profilePhoto summary: Microsoft Graph Delete navigation property photo for groups operationId: groups.DeletePhoto parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/photo/$value: description: Provides operations to manage the media for the group entity. get: tags: - groups.profilePhoto summary: Microsoft Graph Get media content for the navigation property photo from groups description: The group's profile photo operationId: groups.GetPhotoContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - groups.profilePhoto summary: Microsoft Graph Update media content for the navigation property photo in groups description: The group's profile photo operationId: groups.UpdatePhotoContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - groups.profilePhoto summary: Microsoft Graph Delete media content for the navigation property photo in groups description: The group's profile photo operationId: groups.DeletePhotoContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/photos: description: >- Provides operations to manage the photos property of the microsoft.graph.group entity. get: tags: - groups.profilePhoto summary: Microsoft Graph List photos description: Retrieve a list of profilePhoto objects. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-photos?view=graph-rest-1.0 operationId: groups.ListPhotos parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.profilePhotoCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/photos/{profilePhoto-id}: description: >- Provides operations to manage the photos property of the microsoft.graph.group entity. get: tags: - groups.profilePhoto summary: Microsoft Graph Get photos from groups description: The profile photos owned by the group. Read-only. Nullable. operationId: groups.GetPhotos parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profilePhoto' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: profilePhoto-id in: path description: The unique identifier of profilePhoto required: true schema: type: string x-ms-docs-key-type: profilePhoto /groups/{group-id}/photos/{profilePhoto-id}/$value: description: Provides operations to manage the media for the group entity. get: tags: - groups.profilePhoto summary: Microsoft Graph List photos description: Retrieve a list of profilePhoto objects. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-photos?view=graph-rest-1.0 operationId: groups.GetPhotosContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - groups.profilePhoto summary: Microsoft Graph Update media content for the navigation property photos in groups description: The unique identifier for an entity. Read-only. operationId: groups.UpdatePhotosContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - groups.profilePhoto summary: Microsoft Graph Delete media content for the navigation property photos in groups description: The unique identifier for an entity. Read-only. operationId: groups.DeletePhotosContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: profilePhoto-id in: path description: The unique identifier of profilePhoto required: true schema: type: string x-ms-docs-key-type: profilePhoto /groups/{group-id}/planner: description: >- Provides operations to manage the planner property of the microsoft.graph.group entity. get: tags: - groups.plannerGroup summary: Microsoft Graph Get planner from groups description: Entry-point to Planner resource that might exist for a Unified Group. operationId: groups.GetPlanner parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.plannerGroup summary: Microsoft Graph Update the navigation property planner in groups operationId: groups.UpdatePlanner parameters: - name: If-Match in: header description: ETag value. required: true schema: type: string requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerGroup' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.plannerGroup summary: Microsoft Graph Delete navigation property planner for groups operationId: groups.DeletePlanner parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/planner/plans: description: >- Provides operations to manage the plans property of the microsoft.graph.plannerGroup entity. get: tags: - groups.plannerGroup summary: Microsoft Graph List plans description: Retrieve a list of plannerPlan objects owned by a group object. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/plannergroup-list-plans?view=graph-rest-1.0 operationId: groups.planner.ListPlans parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.plannerPlanCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - groups.plannerGroup summary: Microsoft Graph Create new navigation property to plans for groups operationId: groups.planner.CreatePlans requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerPlan' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerPlan' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/planner/plans/{plannerPlan-id}: description: >- Provides operations to manage the plans property of the microsoft.graph.plannerGroup entity. get: tags: - groups.plannerGroup summary: Microsoft Graph Get plans from groups description: Read-only. Nullable. Returns the plannerPlans owned by the group. operationId: groups.planner.GetPlans parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerPlan' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.plannerGroup summary: Microsoft Graph Update the navigation property plans in groups operationId: groups.planner.UpdatePlans requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerPlan' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerPlan' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.plannerGroup summary: Microsoft Graph Delete navigation property plans for groups operationId: groups.planner.DeletePlans parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan /groups/{group-id}/planner/plans/{plannerPlan-id}/buckets: description: >- Provides operations to manage the buckets property of the microsoft.graph.plannerPlan entity. get: tags: - groups.plannerGroup summary: Microsoft Graph Get buckets from groups description: Read-only. Nullable. Collection of buckets in the plan. operationId: groups.planner.plans.ListBuckets parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.plannerBucketCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - groups.plannerGroup summary: Microsoft Graph Create new navigation property to buckets for groups operationId: groups.planner.plans.CreateBuckets requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerBucket' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerBucket' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan /groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}: description: >- Provides operations to manage the buckets property of the microsoft.graph.plannerPlan entity. get: tags: - groups.plannerGroup summary: Microsoft Graph Get buckets from groups description: Read-only. Nullable. Collection of buckets in the plan. operationId: groups.planner.plans.GetBuckets parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerBucket' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.plannerGroup summary: Microsoft Graph Update the navigation property buckets in groups operationId: groups.planner.plans.UpdateBuckets requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerBucket' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerBucket' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.plannerGroup summary: Microsoft Graph Delete navigation property buckets for groups operationId: groups.planner.plans.DeleteBuckets parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan - name: plannerBucket-id in: path description: The unique identifier of plannerBucket required: true schema: type: string x-ms-docs-key-type: plannerBucket /groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks: description: >- Provides operations to manage the tasks property of the microsoft.graph.plannerBucket entity. get: tags: - groups.plannerGroup summary: Microsoft Graph Get tasks from groups description: Read-only. Nullable. The collection of tasks in the bucket. operationId: groups.planner.plans.buckets.ListTasks parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.plannerTaskCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - groups.plannerGroup summary: Microsoft Graph Create new navigation property to tasks for groups operationId: groups.planner.plans.buckets.CreateTasks requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerTask' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerTask' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan - name: plannerBucket-id in: path description: The unique identifier of plannerBucket required: true schema: type: string x-ms-docs-key-type: plannerBucket /groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}: description: >- Provides operations to manage the tasks property of the microsoft.graph.plannerBucket entity. get: tags: - groups.plannerGroup summary: Microsoft Graph Get tasks from groups description: Read-only. Nullable. The collection of tasks in the bucket. operationId: groups.planner.plans.buckets.GetTasks parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerTask' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.plannerGroup summary: Microsoft Graph Update the navigation property tasks in groups operationId: groups.planner.plans.buckets.UpdateTasks requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerTask' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerTask' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.plannerGroup summary: Microsoft Graph Delete navigation property tasks for groups operationId: groups.planner.plans.buckets.DeleteTasks parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan - name: plannerBucket-id in: path description: The unique identifier of plannerBucket required: true schema: type: string x-ms-docs-key-type: plannerBucket - name: plannerTask-id in: path description: The unique identifier of plannerTask required: true schema: type: string x-ms-docs-key-type: plannerTask ? /groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/assignedToTaskBoardFormat : description: >- Provides operations to manage the assignedToTaskBoardFormat property of the microsoft.graph.plannerTask entity. get: tags: - groups.plannerGroup summary: Microsoft Graph Get assignedToTaskBoardFormat from groups description: >- Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: groups.planner.plans.buckets.tasks.GetAssignedToTaskBoardFormat parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.plannerAssignedToTaskBoardTaskFormat 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.plannerGroup summary: Microsoft Graph Update the navigation property assignedToTaskBoardFormat in groups operationId: groups.planner.plans.buckets.tasks.UpdateAssignedToTaskBoardFormat parameters: - name: If-Match in: header description: ETag value. required: true schema: type: string requestBody: description: New navigation property values content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.plannerAssignedToTaskBoardTaskFormat required: true responses: 2XX: description: Success content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.plannerAssignedToTaskBoardTaskFormat 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.plannerGroup summary: Microsoft Graph Delete navigation property assignedToTaskBoardFormat for groups operationId: groups.planner.plans.buckets.tasks.DeleteAssignedToTaskBoardFormat parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan - name: plannerBucket-id in: path description: The unique identifier of plannerBucket required: true schema: type: string x-ms-docs-key-type: plannerBucket - name: plannerTask-id in: path description: The unique identifier of plannerTask required: true schema: type: string x-ms-docs-key-type: plannerTask x-ms-docs-grouped-path: - >- /groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/assignedToTaskBoardFormat /groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/bucketTaskBoardFormat: description: >- Provides operations to manage the bucketTaskBoardFormat property of the microsoft.graph.plannerTask entity. get: tags: - groups.plannerGroup summary: Microsoft Graph Get bucketTaskBoardFormat from groups description: >- Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: groups.planner.plans.buckets.tasks.GetBucketTaskBoardFormat parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.plannerBucketTaskBoardTaskFormat 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.plannerGroup summary: Microsoft Graph Update the navigation property bucketTaskBoardFormat in groups operationId: groups.planner.plans.buckets.tasks.UpdateBucketTaskBoardFormat parameters: - name: If-Match in: header description: ETag value. required: true schema: type: string requestBody: description: New navigation property values content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.plannerBucketTaskBoardTaskFormat required: true responses: 2XX: description: Success content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.plannerBucketTaskBoardTaskFormat 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.plannerGroup summary: Microsoft Graph Delete navigation property bucketTaskBoardFormat for groups operationId: groups.planner.plans.buckets.tasks.DeleteBucketTaskBoardFormat parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan - name: plannerBucket-id in: path description: The unique identifier of plannerBucket required: true schema: type: string x-ms-docs-key-type: plannerBucket - name: plannerTask-id in: path description: The unique identifier of plannerTask required: true schema: type: string x-ms-docs-key-type: plannerTask x-ms-docs-grouped-path: - >- /groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/bucketTaskBoardFormat /groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/details: description: >- Provides operations to manage the details property of the microsoft.graph.plannerTask entity. get: tags: - groups.plannerGroup summary: Microsoft Graph Get details from groups description: Read-only. Nullable. More details about the task. operationId: groups.planner.plans.buckets.tasks.GetDetails parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerTaskDetails' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.plannerGroup summary: Microsoft Graph Update the navigation property details in groups operationId: groups.planner.plans.buckets.tasks.UpdateDetails parameters: - name: If-Match in: header description: ETag value. required: true schema: type: string requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerTaskDetails' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerTaskDetails' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.plannerGroup summary: Microsoft Graph Delete navigation property details for groups operationId: groups.planner.plans.buckets.tasks.DeleteDetails parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan - name: plannerBucket-id in: path description: The unique identifier of plannerBucket required: true schema: type: string x-ms-docs-key-type: plannerBucket - name: plannerTask-id in: path description: The unique identifier of plannerTask required: true schema: type: string x-ms-docs-key-type: plannerTask x-ms-docs-grouped-path: - >- /groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/details ? /groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/progressTaskBoardFormat : description: >- Provides operations to manage the progressTaskBoardFormat property of the microsoft.graph.plannerTask entity. get: tags: - groups.plannerGroup summary: Microsoft Graph Get progressTaskBoardFormat from groups description: >- Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: groups.planner.plans.buckets.tasks.GetProgressTaskBoardFormat parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.plannerProgressTaskBoardTaskFormat 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.plannerGroup summary: Microsoft Graph Update the navigation property progressTaskBoardFormat in groups operationId: groups.planner.plans.buckets.tasks.UpdateProgressTaskBoardFormat parameters: - name: If-Match in: header description: ETag value. required: true schema: type: string requestBody: description: New navigation property values content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.plannerProgressTaskBoardTaskFormat required: true responses: 2XX: description: Success content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.plannerProgressTaskBoardTaskFormat 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.plannerGroup summary: Microsoft Graph Delete navigation property progressTaskBoardFormat for groups operationId: groups.planner.plans.buckets.tasks.DeleteProgressTaskBoardFormat parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan - name: plannerBucket-id in: path description: The unique identifier of plannerBucket required: true schema: type: string x-ms-docs-key-type: plannerBucket - name: plannerTask-id in: path description: The unique identifier of plannerTask required: true schema: type: string x-ms-docs-key-type: plannerTask x-ms-docs-grouped-path: - >- /groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/progressTaskBoardFormat /groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.plannerGroup summary: Microsoft Graph Get the number of the resource operationId: groups.planner.plans.buckets.tasks.GetCount-384e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan - name: plannerBucket-id in: path description: The unique identifier of plannerBucket required: true schema: type: string x-ms-docs-key-type: plannerBucket /groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.plannerGroup summary: Microsoft Graph Get the number of the resource operationId: groups.planner.plans.buckets.GetCount-66eb parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan /groups/{group-id}/planner/plans/{plannerPlan-id}/details: description: >- Provides operations to manage the details property of the microsoft.graph.plannerPlan entity. get: tags: - groups.plannerGroup summary: Microsoft Graph Get details from groups description: Read-only. Nullable. Extra details about the plan. operationId: groups.planner.plans.GetDetails parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerPlanDetails' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.plannerGroup summary: Microsoft Graph Update the navigation property details in groups operationId: groups.planner.plans.UpdateDetails parameters: - name: If-Match in: header description: ETag value. required: true schema: type: string requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerPlanDetails' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerPlanDetails' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.plannerGroup summary: Microsoft Graph Delete navigation property details for groups operationId: groups.planner.plans.DeleteDetails parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan /groups/{group-id}/planner/plans/{plannerPlan-id}/tasks: description: >- Provides operations to manage the tasks property of the microsoft.graph.plannerPlan entity. get: tags: - groups.plannerGroup summary: Microsoft Graph Get tasks from groups description: Read-only. Nullable. Collection of tasks in the plan. operationId: groups.planner.plans.ListTasks parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.plannerTaskCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - groups.plannerGroup summary: Microsoft Graph Create new navigation property to tasks for groups operationId: groups.planner.plans.CreateTasks requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerTask' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerTask' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan /groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}: description: >- Provides operations to manage the tasks property of the microsoft.graph.plannerPlan entity. get: tags: - groups.plannerGroup summary: Microsoft Graph Get tasks from groups description: Read-only. Nullable. Collection of tasks in the plan. operationId: groups.planner.plans.GetTasks parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerTask' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.plannerGroup summary: Microsoft Graph Update the navigation property tasks in groups operationId: groups.planner.plans.UpdateTasks requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerTask' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerTask' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.plannerGroup summary: Microsoft Graph Delete navigation property tasks for groups operationId: groups.planner.plans.DeleteTasks parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan - name: plannerTask-id in: path description: The unique identifier of plannerTask required: true schema: type: string x-ms-docs-key-type: plannerTask /groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/assignedToTaskBoardFormat: description: >- Provides operations to manage the assignedToTaskBoardFormat property of the microsoft.graph.plannerTask entity. get: tags: - groups.plannerGroup summary: Microsoft Graph Get assignedToTaskBoardFormat from groups description: >- Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. operationId: groups.planner.plans.tasks.GetAssignedToTaskBoardFormat parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.plannerAssignedToTaskBoardTaskFormat 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.plannerGroup summary: Microsoft Graph Update the navigation property assignedToTaskBoardFormat in groups operationId: groups.planner.plans.tasks.UpdateAssignedToTaskBoardFormat parameters: - name: If-Match in: header description: ETag value. required: true schema: type: string requestBody: description: New navigation property values content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.plannerAssignedToTaskBoardTaskFormat required: true responses: 2XX: description: Success content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.plannerAssignedToTaskBoardTaskFormat 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.plannerGroup summary: Microsoft Graph Delete navigation property assignedToTaskBoardFormat for groups operationId: groups.planner.plans.tasks.DeleteAssignedToTaskBoardFormat parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan - name: plannerTask-id in: path description: The unique identifier of plannerTask required: true schema: type: string x-ms-docs-key-type: plannerTask x-ms-docs-grouped-path: - >- /groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/assignedToTaskBoardFormat /groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/bucketTaskBoardFormat: description: >- Provides operations to manage the bucketTaskBoardFormat property of the microsoft.graph.plannerTask entity. get: tags: - groups.plannerGroup summary: Microsoft Graph Get bucketTaskBoardFormat from groups description: >- Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. operationId: groups.planner.plans.tasks.GetBucketTaskBoardFormat parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.plannerBucketTaskBoardTaskFormat 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.plannerGroup summary: Microsoft Graph Update the navigation property bucketTaskBoardFormat in groups operationId: groups.planner.plans.tasks.UpdateBucketTaskBoardFormat parameters: - name: If-Match in: header description: ETag value. required: true schema: type: string requestBody: description: New navigation property values content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.plannerBucketTaskBoardTaskFormat required: true responses: 2XX: description: Success content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.plannerBucketTaskBoardTaskFormat 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.plannerGroup summary: Microsoft Graph Delete navigation property bucketTaskBoardFormat for groups operationId: groups.planner.plans.tasks.DeleteBucketTaskBoardFormat parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan - name: plannerTask-id in: path description: The unique identifier of plannerTask required: true schema: type: string x-ms-docs-key-type: plannerTask x-ms-docs-grouped-path: - >- /groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/bucketTaskBoardFormat /groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/details: description: >- Provides operations to manage the details property of the microsoft.graph.plannerTask entity. get: tags: - groups.plannerGroup summary: Microsoft Graph Get details from groups description: Read-only. Nullable. More details about the task. operationId: groups.planner.plans.tasks.GetDetails parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerTaskDetails' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.plannerGroup summary: Microsoft Graph Update the navigation property details in groups operationId: groups.planner.plans.tasks.UpdateDetails parameters: - name: If-Match in: header description: ETag value. required: true schema: type: string requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerTaskDetails' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerTaskDetails' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.plannerGroup summary: Microsoft Graph Delete navigation property details for groups operationId: groups.planner.plans.tasks.DeleteDetails parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan - name: plannerTask-id in: path description: The unique identifier of plannerTask required: true schema: type: string x-ms-docs-key-type: plannerTask x-ms-docs-grouped-path: - >- /groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/details /groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/{plannerTask-id}/progressTaskBoardFormat: description: >- Provides operations to manage the progressTaskBoardFormat property of the microsoft.graph.plannerTask entity. get: tags: - groups.plannerGroup summary: Microsoft Graph Get progressTaskBoardFormat from groups description: >- Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. operationId: groups.planner.plans.tasks.GetProgressTaskBoardFormat parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.plannerProgressTaskBoardTaskFormat 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.plannerGroup summary: Microsoft Graph Update the navigation property progressTaskBoardFormat in groups operationId: groups.planner.plans.tasks.UpdateProgressTaskBoardFormat parameters: - name: If-Match in: header description: ETag value. required: true schema: type: string requestBody: description: New navigation property values content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.plannerProgressTaskBoardTaskFormat required: true responses: 2XX: description: Success content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.plannerProgressTaskBoardTaskFormat 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.plannerGroup summary: Microsoft Graph Delete navigation property progressTaskBoardFormat for groups operationId: groups.planner.plans.tasks.DeleteProgressTaskBoardFormat parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan - name: plannerTask-id in: path description: The unique identifier of plannerTask required: true schema: type: string x-ms-docs-key-type: plannerTask x-ms-docs-grouped-path: - >- /groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/{plannerTask-id}/progressTaskBoardFormat /groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.plannerGroup summary: Microsoft Graph Get the number of the resource operationId: groups.planner.plans.tasks.GetCount-d84b parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: plannerPlan-id in: path description: The unique identifier of plannerPlan required: true schema: type: string x-ms-docs-key-type: plannerPlan /groups/{group-id}/planner/plans/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.plannerGroup summary: Microsoft Graph Get the number of the resource operationId: groups.planner.plans.GetCount-dff1 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/rejectedSenders: description: >- Provides operations to manage the rejectedSenders property of the microsoft.graph.group entity. get: tags: - groups.directoryObject summary: Microsoft Graph List rejectedSenders description: >- Users in the rejected senders list can't post to conversations of the group (identified in the GET request URL). Make sure you don't specify the same user or group in the rejected senders and accepted senders lists, otherwise you get an error. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-rejectedsenders?view=graph-rest-1.0 operationId: groups.ListRejectedSenders parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.directoryObjectCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/rejectedSenders/{directoryObject-id}/$ref: description: Provides operations to manage the collection of group entities. delete: tags: - groups.directoryObject summary: Microsoft Graph Remove rejectedSender externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-delete-rejectedsenders?view=graph-rest-1.0 operationId: groups.rejectedSenders.DeleteRefDirectoryObject parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/rejectedSenders/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.rejectedSenders.GetCount-b188 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/rejectedSenders/$ref: description: Provides operations to manage the collection of group entities. get: tags: - groups.directoryObject summary: Microsoft Graph List rejectedSenders description: >- Users in the rejected senders list can't post to conversations of the group (identified in the GET request URL). Make sure you don't specify the same user or group in the rejected senders and accepted senders lists, otherwise you get an error. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-rejectedsenders?view=graph-rest-1.0 operationId: groups.ListRefRejectedSenders parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/StringCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - groups.directoryObject summary: Microsoft Graph Create rejectedSender description: >- Specify the user or group in @odata.id in the request body. Users in the rejected senders list can't post to conversations of the group (identified in the POST request URL). Make sure you don't specify the same user or group in the rejected senders and accepted senders lists, otherwise you'll get an error. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-post-rejectedsenders?view=graph-rest-1.0 operationId: groups.CreateRefRejectedSenders requestBody: $ref: '#/components/requestBodies/refPostBody' responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.directoryObject summary: Microsoft Graph Remove rejectedSender externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-delete-rejectedsenders?view=graph-rest-1.0 operationId: groups.DeleteRefRejectedSenders parameters: - name: If-Match in: header description: ETag schema: type: string - name: '@id' in: query description: The delete Uri required: true schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/serviceProvisioningErrors: get: tags: - groups.serviceProvisioningError summary: Microsoft Graph Get serviceProvisioningErrors property value description: >- Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a group object. Supports $filter (eq, not, for isResolved and serviceInstance). operationId: groups.ListServiceProvisioningErrors parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.serviceProvisioningErrorCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/serviceProvisioningErrors/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.serviceProvisioningError summary: Microsoft Graph Get the number of the resource operationId: groups.ServiceProvisioningErrors.GetCount-e58f parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/settings: description: >- Provides operations to manage the settings property of the microsoft.graph.group entity. get: tags: - groups.groupSetting summary: Microsoft Graph List settings description: >- Retrieve a list of tenant-level or group-specific group settings objects. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-settings?view=graph-rest-1.0 operationId: groups.ListSettings parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.groupSettingCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - groups.groupSetting summary: Microsoft Graph Create settings description: >- Create a new group setting based on the templates available in groupSettingTemplates. These settings can be at the tenant-level or at the group level. Group settings apply to only Microsoft 365 groups. The template named Group.Unified can be used to configure tenant-wide Microsoft 365 group settings, while the template named Group.Unified.Guest can be used to configure group-specific settings. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-post-settings?view=graph-rest-1.0 operationId: groups.CreateSettings requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.groupSetting' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.groupSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/settings/{groupSetting-id}: description: >- Provides operations to manage the settings property of the microsoft.graph.group entity. get: tags: - groups.groupSetting summary: Microsoft Graph Get groupSetting description: >- Retrieve the properties of a specific group setting object. The setting can be a tenant-level or group-specific setting. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/groupsetting-get?view=graph-rest-1.0 operationId: groups.GetSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.groupSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.groupSetting summary: Microsoft Graph Update groupSetting description: >- Update the properties of a groupSetting object for tenant-wide group settings or a specific group setting. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/groupsetting-update?view=graph-rest-1.0 operationId: groups.UpdateSettings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.groupSetting' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.groupSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.groupSetting summary: Microsoft Graph Delete navigation property settings for groups operationId: groups.DeleteSettings parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: groupSetting-id in: path description: The unique identifier of groupSetting required: true schema: type: string x-ms-docs-key-type: groupSetting /groups/{group-id}/settings/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.groupSetting summary: Microsoft Graph Get the number of the resource operationId: groups.settings.GetCount-7641 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/sites: description: >- Provides operations to manage the sites property of the microsoft.graph.group entity. get: tags: - Groups.site summary: Microsoft Graph Get sites from groups description: >- The list of SharePoint sites in this group. Access the default site with /sites/root. operationId: groups.ListSites parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.siteCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/sites/{site-id}: description: >- Provides operations to manage the sites property of the microsoft.graph.group entity. get: tags: - Groups.site summary: Microsoft Graph Get sites from groups description: >- The list of SharePoint sites in this group. Access the default site with /sites/root. operationId: groups.GetSites parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.site' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property sites in groups operationId: groups.UpdateSites requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.site' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.site' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/analytics: description: >- Provides operations to manage the analytics property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get analytics from groups description: Analytics about the view activities that took place on this site. operationId: groups.sites.GetAnalytics parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemAnalytics' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property analytics in groups operationId: groups.sites.UpdateAnalytics requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemAnalytics' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemAnalytics' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property analytics for groups operationId: groups.sites.DeleteAnalytics parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/analytics /groups/{group-id}/sites/{site-id}/analytics/allTime: description: >- Provides operations to manage the allTime property of the microsoft.graph.itemAnalytics entity. get: tags: - Groups.site summary: Microsoft Graph Get allTime from groups operationId: groups.sites.analytics.GetAllTime parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemActivityStat' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/analytics/itemActivityStats: description: >- Provides operations to manage the itemActivityStats property of the microsoft.graph.itemAnalytics entity. get: tags: - Groups.site summary: Microsoft Graph Get itemActivityStats from groups operationId: groups.sites.analytics.ListItemActivityStats parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.itemActivityStatCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to itemActivityStats for groups operationId: groups.sites.analytics.CreateItemActivityStats requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemActivityStat' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemActivityStat' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}: description: >- Provides operations to manage the itemActivityStats property of the microsoft.graph.itemAnalytics entity. get: tags: - Groups.site summary: Microsoft Graph Get itemActivityStats from groups operationId: groups.sites.analytics.GetItemActivityStats parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemActivityStat' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property itemActivityStats in groups operationId: groups.sites.analytics.UpdateItemActivityStats requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemActivityStat' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemActivityStat' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property itemActivityStats for groups operationId: groups.sites.analytics.DeleteItemActivityStats parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: itemActivityStat-id in: path description: The unique identifier of itemActivityStat required: true schema: type: string x-ms-docs-key-type: itemActivityStat /groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities: description: >- Provides operations to manage the activities property of the microsoft.graph.itemActivityStat entity. get: tags: - Groups.site summary: Microsoft Graph Get activities from groups description: >- Exposes the itemActivities represented in this itemActivityStat resource. operationId: groups.sites.analytics.itemActivityStats.ListActivities parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.itemActivityCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to activities for groups operationId: groups.sites.analytics.itemActivityStats.CreateActivities requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemActivity' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemActivity' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: itemActivityStat-id in: path description: The unique identifier of itemActivityStat required: true schema: type: string x-ms-docs-key-type: itemActivityStat /groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}: description: >- Provides operations to manage the activities property of the microsoft.graph.itemActivityStat entity. get: tags: - Groups.site summary: Microsoft Graph Get activities from groups description: >- Exposes the itemActivities represented in this itemActivityStat resource. operationId: groups.sites.analytics.itemActivityStats.GetActivities parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemActivity' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property activities in groups operationId: groups.sites.analytics.itemActivityStats.UpdateActivities requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemActivity' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemActivity' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property activities for groups operationId: groups.sites.analytics.itemActivityStats.DeleteActivities parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: itemActivityStat-id in: path description: The unique identifier of itemActivityStat required: true schema: type: string x-ms-docs-key-type: itemActivityStat - name: itemActivity-id in: path description: The unique identifier of itemActivity required: true schema: type: string x-ms-docs-key-type: itemActivity ? /groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem : description: >- Provides operations to manage the driveItem property of the microsoft.graph.itemActivity entity. get: tags: - Groups.site summary: Microsoft Graph Get driveItem from groups description: Exposes the driveItem that was the target of this activity. operationId: groups.sites.analytics.itemActivityStats.activities.GetDriveItem parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.driveItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: itemActivityStat-id in: path description: The unique identifier of itemActivityStat required: true schema: type: string x-ms-docs-key-type: itemActivityStat - name: itemActivity-id in: path description: The unique identifier of itemActivity required: true schema: type: string x-ms-docs-key-type: itemActivity ? /groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content : description: Provides operations to manage the media for the group entity. get: tags: - Groups.site summary: Microsoft Graph Get content for the navigation property driveItem from groups description: The content stream, if the item represents a file. operationId: groups.sites.analytics.itemActivityStats.activities.GetDriveItemContent parameters: - name: $format in: query description: Format of the content schema: type: string responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.site summary: Microsoft Graph Update content for the navigation property driveItem in groups description: The content stream, if the item represents a file. operationId: >- groups.sites.analytics.itemActivityStats.activities.UpdateDriveItemContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.driveItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.site summary: Microsoft Graph Delete content for the navigation property driveItem in groups description: The content stream, if the item represents a file. operationId: >- groups.sites.analytics.itemActivityStats.activities.DeleteDriveItemContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: itemActivityStat-id in: path description: The unique identifier of itemActivityStat required: true schema: type: string x-ms-docs-key-type: itemActivityStat - name: itemActivity-id in: path description: The unique identifier of itemActivity required: true schema: type: string x-ms-docs-key-type: itemActivity /groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.analytics.itemActivityStats.activities.GetCount-adef parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: itemActivityStat-id in: path description: The unique identifier of itemActivityStat required: true schema: type: string x-ms-docs-key-type: itemActivityStat /groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.analytics.itemActivityStats.GetCount-81ab parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/analytics/lastSevenDays: description: >- Provides operations to manage the lastSevenDays property of the microsoft.graph.itemAnalytics entity. get: tags: - Groups.site summary: Microsoft Graph Get lastSevenDays from groups operationId: groups.sites.analytics.GetLastSevenDays parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemActivityStat' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/columns: description: >- Provides operations to manage the columns property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get columns from groups description: >- The collection of column definitions reusable across lists under this site. operationId: groups.sites.ListColumns parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.columnDefinitionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to columns for groups operationId: groups.sites.CreateColumns requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/columns /groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}: description: >- Provides operations to manage the columns property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get columns from groups description: >- The collection of column definitions reusable across lists under this site. operationId: groups.sites.GetColumns parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property columns in groups operationId: groups.sites.UpdateColumns requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property columns for groups operationId: groups.sites.DeleteColumns parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: columnDefinition-id in: path description: The unique identifier of columnDefinition required: true schema: type: string x-ms-docs-key-type: columnDefinition /groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn: description: >- Provides operations to manage the sourceColumn property of the microsoft.graph.columnDefinition entity. get: tags: - Groups.site summary: Microsoft Graph Get sourceColumn from groups description: The source column for the content type column. operationId: groups.sites.columns.GetSourceColumn parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: columnDefinition-id in: path description: The unique identifier of columnDefinition required: true schema: type: string x-ms-docs-key-type: columnDefinition x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn /groups/{group-id}/sites/{site-id}/columns/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.columns.GetCount-c1d5 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/contentTypes: description: >- Provides operations to manage the contentTypes property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get contentTypes from groups description: The collection of content types defined for this site. operationId: groups.sites.ListContentTypes parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.contentTypeCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to contentTypes for groups operationId: groups.sites.CreateContentTypes requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentType' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentType' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/contentTypes /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}: description: >- Provides operations to manage the contentTypes property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get contentTypes from groups description: The collection of content types defined for this site. operationId: groups.sites.GetContentTypes parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentType' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property contentTypes in groups operationId: groups.sites.UpdateContentTypes requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentType' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentType' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property contentTypes for groups operationId: groups.sites.DeleteContentTypes parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/base: description: >- Provides operations to manage the base property of the microsoft.graph.contentType entity. get: tags: - Groups.site summary: Microsoft Graph Get base from groups description: Parent contentType from which this content type is derived. operationId: groups.sites.contentTypes.GetBase parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentType' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes: description: >- Provides operations to manage the baseTypes property of the microsoft.graph.contentType entity. get: tags: - Groups.site summary: Microsoft Graph Get baseTypes from groups description: The collection of content types that are ancestors of this content type. operationId: groups.sites.contentTypes.ListBaseTypes parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.contentTypeCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/{contentType-id1}: description: >- Provides operations to manage the baseTypes property of the microsoft.graph.contentType entity. get: tags: - Groups.site summary: Microsoft Graph Get baseTypes from groups description: The collection of content types that are ancestors of this content type. operationId: groups.sites.contentTypes.GetBaseTypes parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentType' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType - name: contentType-id1 in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/{contentType-id1} /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.contentTypes.baseTypes.GetCount-968b parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks: description: >- Provides operations to manage the columnLinks property of the microsoft.graph.contentType entity. get: tags: - Groups.site summary: Microsoft Graph Get columnLinks from groups description: The collection of columns that are required by this content type. operationId: groups.sites.contentTypes.ListColumnLinks parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.columnLinkCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to columnLinks for groups operationId: groups.sites.contentTypes.CreateColumnLinks requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnLink' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnLink' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}: description: >- Provides operations to manage the columnLinks property of the microsoft.graph.contentType entity. get: tags: - Groups.site summary: Microsoft Graph Get columnLinks from groups description: The collection of columns that are required by this content type. operationId: groups.sites.contentTypes.GetColumnLinks parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnLink' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property columnLinks in groups operationId: groups.sites.contentTypes.UpdateColumnLinks requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnLink' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnLink' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property columnLinks for groups operationId: groups.sites.contentTypes.DeleteColumnLinks parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType - name: columnLink-id in: path description: The unique identifier of columnLink required: true schema: type: string x-ms-docs-key-type: columnLink x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id} /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.contentTypes.columnLinks.GetCount-6e1c parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions: description: >- Provides operations to manage the columnPositions property of the microsoft.graph.contentType entity. get: tags: - Groups.site summary: Microsoft Graph Get columnPositions from groups description: Column order information in a content type. operationId: groups.sites.contentTypes.ListColumnPositions parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.columnDefinitionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}: description: >- Provides operations to manage the columnPositions property of the microsoft.graph.contentType entity. get: tags: - Groups.site summary: Microsoft Graph Get columnPositions from groups description: Column order information in a content type. operationId: groups.sites.contentTypes.GetColumnPositions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType - name: columnDefinition-id in: path description: The unique identifier of columnDefinition required: true schema: type: string x-ms-docs-key-type: columnDefinition x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id} /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.contentTypes.columnPositions.GetCount-1e7b parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns: description: >- Provides operations to manage the columns property of the microsoft.graph.contentType entity. get: tags: - Groups.site summary: Microsoft Graph Get columns from groups description: The collection of column definitions for this content type. operationId: groups.sites.contentTypes.ListColumns parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.columnDefinitionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to columns for groups operationId: groups.sites.contentTypes.CreateColumns requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}: description: >- Provides operations to manage the columns property of the microsoft.graph.contentType entity. get: tags: - Groups.site summary: Microsoft Graph Get columns from groups description: The collection of column definitions for this content type. operationId: groups.sites.contentTypes.GetColumns parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property columns in groups operationId: groups.sites.contentTypes.UpdateColumns requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property columns for groups operationId: groups.sites.contentTypes.DeleteColumns parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType - name: columnDefinition-id in: path description: The unique identifier of columnDefinition required: true schema: type: string x-ms-docs-key-type: columnDefinition x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id} /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn: description: >- Provides operations to manage the sourceColumn property of the microsoft.graph.columnDefinition entity. get: tags: - Groups.site summary: Microsoft Graph Get sourceColumn from groups description: The source column for the content type column. operationId: groups.sites.contentTypes.columns.GetSourceColumn parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType - name: columnDefinition-id in: path description: The unique identifier of columnDefinition required: true schema: type: string x-ms-docs-key-type: columnDefinition x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.contentTypes.columns.GetCount-7525 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/associateWithHubSites: description: Provides operations to call the associateWithHubSites method. post: tags: - Groups.site summary: Microsoft Graph Invoke action associateWithHubSites description: >- Associate a published content type present in a content type hub with a list of hub sites. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0 operationId: groups.group.sites.site.contentTypes.contentType.associateWithHubSites requestBody: description: Action parameters content: application/json: schema: type: object properties: hubSiteUrls: type: array items: type: string propagateToExistingLists: type: boolean default: false nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/associateWithHubSites /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation: description: Provides operations to call the copyToDefaultContentLocation method. post: tags: - Groups.site summary: Microsoft Graph Invoke action copyToDefaultContentLocation description: >- Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0 operationId: >- groups.group.sites.site.contentTypes.contentType.copyToDefaultContentLocation requestBody: description: Action parameters content: application/json: schema: type: object properties: sourceFile: $ref: '#/components/schemas/microsoft.graph.itemReference' destinationFileName: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/isPublished(): description: Provides operations to call the isPublished method. get: tags: - Groups.site summary: Microsoft Graph Invoke function isPublished description: Check the publishing status of a contentType in a content type hub site. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0 operationId: groups.group.sites.site.contentTypes.contentType.isPublished responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: boolean default: false 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/isPublished() /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/publish: description: Provides operations to call the publish method. post: tags: - Groups.site summary: Microsoft Graph Invoke action publish description: Publishes a contentType present in the content type hub site. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0 operationId: groups.group.sites.site.contentTypes.contentType.publish responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/publish /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/unpublish: description: Provides operations to call the unpublish method. post: tags: - Groups.site summary: Microsoft Graph Invoke action unpublish description: Unpublish a contentType from a content type hub site. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0 operationId: groups.group.sites.site.contentTypes.contentType.unpublish responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/unpublish /groups/{group-id}/sites/{site-id}/contentTypes/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.contentTypes.GetCount-4805 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/contentTypes/addCopy: description: Provides operations to call the addCopy method. post: tags: - Groups.site summary: Microsoft Graph Invoke action addCopy description: Add a copy of a content type from a site to a list. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0 operationId: groups.group.sites.site.contentTypes.addCopy requestBody: description: Action parameters content: application/json: schema: type: object properties: contentType: type: string required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.contentType' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopy /groups/{group-id}/sites/{site-id}/contentTypes/addCopyFromContentTypeHub: description: Provides operations to call the addCopyFromContentTypeHub method. post: tags: - Groups.site summary: Microsoft Graph Invoke action addCopyFromContentTypeHub description: >- Add or sync a copy of a published content type from the content type hub to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: getCompatibleHubContentTypes and the blog post Syntex Product Updates – August 2021. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0 operationId: groups.group.sites.site.contentTypes.addCopyFromContentTypeHub requestBody: description: Action parameters content: application/json: schema: type: object properties: contentTypeId: type: string required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.contentType' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub /groups/{group-id}/sites/{site-id}/contentTypes/getCompatibleHubContentTypes(): description: Provides operations to call the getCompatibleHubContentTypes method. get: tags: - Groups.site summary: Microsoft Graph Invoke function getCompatibleHubContentTypes description: >- Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates – August 2021. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0 operationId: groups.group.sites.site.contentTypes.getCompatibleHubContentTypes parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of contentType type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.contentType' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/getCompatibleHubContentTypes() /groups/{group-id}/sites/{site-id}/createdByUser: description: >- Provides operations to manage the createdByUser property of the microsoft.graph.baseItem entity. get: tags: - Groups.site summary: Microsoft Graph Get createdByUser from groups description: Identity of the user who created the item. Read-only. operationId: groups.sites.GetCreatedByUser parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.user' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/createdByUser - /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/createdByUser /groups/{group-id}/sites/{site-id}/createdByUser/mailboxSettings: get: tags: - Groups.site summary: Microsoft Graph Get mailboxSettings property value description: >- Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. operationId: groups.sites.createdByUser.GetMailboxSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' patch: tags: - Groups.site summary: Microsoft Graph Update property mailboxSettings value. operationId: groups.sites.createdByUser.UpdateMailboxSettings requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/createdByUser/serviceProvisioningErrors: get: tags: - Groups.site summary: Microsoft Graph Get serviceProvisioningErrors property value description: >- Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). operationId: groups.sites.createdByUser.ListServiceProvisioningErrors parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.serviceProvisioningErrorCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/createdByUser/serviceProvisioningErrors/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.createdByUser.ServiceProvisioningErrors.GetCount-d41e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/drive: description: >- Provides operations to manage the drive property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get drive from groups description: The default drive (document library) for this site. operationId: groups.sites.GetDrive parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.drive' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/drive /groups/{group-id}/sites/{site-id}/drives: description: >- Provides operations to manage the drives property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get drives from groups description: The collection of drives (document libraries) under this site. operationId: groups.sites.ListDrives parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.driveCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/drives /groups/{group-id}/sites/{site-id}/drives/{drive-id}: description: >- Provides operations to manage the drives property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get drives from groups description: The collection of drives (document libraries) under this site. operationId: groups.sites.GetDrives parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.drive' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: drive-id in: path description: The unique identifier of drive required: true schema: type: string x-ms-docs-key-type: drive /groups/{group-id}/sites/{site-id}/drives/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.drives.GetCount-ba0d parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/externalColumns: description: >- Provides operations to manage the externalColumns property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get externalColumns from groups operationId: groups.sites.ListExternalColumns parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.columnDefinitionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/externalColumns /groups/{group-id}/sites/{site-id}/externalColumns/{columnDefinition-id}: description: >- Provides operations to manage the externalColumns property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get externalColumns from groups operationId: groups.sites.GetExternalColumns parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: columnDefinition-id in: path description: The unique identifier of columnDefinition required: true schema: type: string x-ms-docs-key-type: columnDefinition /groups/{group-id}/sites/{site-id}/externalColumns/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.externalColumns.GetCount-e0e3 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/items: description: >- Provides operations to manage the items property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get items from groups description: >- Used to address any item contained in this site. This collection can't be enumerated. operationId: groups.sites.ListItems parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.baseItemCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/items /groups/{group-id}/sites/{site-id}/items/{baseItem-id}: description: >- Provides operations to manage the items property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get items from groups description: >- Used to address any item contained in this site. This collection can't be enumerated. operationId: groups.sites.GetItems parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.baseItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseItem-id in: path description: The unique identifier of baseItem required: true schema: type: string x-ms-docs-key-type: baseItem /groups/{group-id}/sites/{site-id}/items/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.items.GetCount-57bf parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/lastModifiedByUser: description: >- Provides operations to manage the lastModifiedByUser property of the microsoft.graph.baseItem entity. get: tags: - Groups.site summary: Microsoft Graph Get lastModifiedByUser from groups description: Identity of the user who last modified the item. Read-only. operationId: groups.sites.GetLastModifiedByUser parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.user' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser - /groups/{group-id}/sites/{site-id}/lists/{list-id}/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/lastModifiedByUser /groups/{group-id}/sites/{site-id}/lastModifiedByUser/mailboxSettings: get: tags: - Groups.site summary: Microsoft Graph Get mailboxSettings property value description: >- Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. operationId: groups.sites.lastModifiedByUser.GetMailboxSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' patch: tags: - Groups.site summary: Microsoft Graph Update property mailboxSettings value. operationId: groups.sites.lastModifiedByUser.UpdateMailboxSettings requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/lastModifiedByUser/serviceProvisioningErrors: get: tags: - Groups.site summary: Microsoft Graph Get serviceProvisioningErrors property value description: >- Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). operationId: groups.sites.lastModifiedByUser.ListServiceProvisioningErrors parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.serviceProvisioningErrorCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/lastModifiedByUser/serviceProvisioningErrors/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.lastModifiedByUser.ServiceProvisioningErrors.GetCount-e132 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/lists: description: >- Provides operations to manage the lists property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get lists from groups description: The collection of lists under this site. operationId: groups.sites.ListLists parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.listCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to lists for groups operationId: groups.sites.CreateLists requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.list' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.list' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lists /groups/{group-id}/sites/{site-id}/lists/{list-id}: description: >- Provides operations to manage the lists property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get lists from groups description: The collection of lists under this site. operationId: groups.sites.GetLists parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.list' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property lists in groups operationId: groups.sites.UpdateLists requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.list' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.list' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property lists for groups operationId: groups.sites.DeleteLists parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list /groups/{group-id}/sites/{site-id}/lists/{list-id}/columns: description: >- Provides operations to manage the columns property of the microsoft.graph.list entity. get: tags: - Groups.site summary: Microsoft Graph Get columns from groups description: The collection of field definitions for this list. operationId: groups.sites.lists.ListColumns parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.columnDefinitionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to columns for groups operationId: groups.sites.lists.CreateColumns requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list /groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}: description: >- Provides operations to manage the columns property of the microsoft.graph.list entity. get: tags: - Groups.site summary: Microsoft Graph Get columns from groups description: The collection of field definitions for this list. operationId: groups.sites.lists.GetColumns parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property columns in groups operationId: groups.sites.lists.UpdateColumns requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property columns for groups operationId: groups.sites.lists.DeleteColumns parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: columnDefinition-id in: path description: The unique identifier of columnDefinition required: true schema: type: string x-ms-docs-key-type: columnDefinition /groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn: description: >- Provides operations to manage the sourceColumn property of the microsoft.graph.columnDefinition entity. get: tags: - Groups.site summary: Microsoft Graph Get sourceColumn from groups description: The source column for the content type column. operationId: groups.sites.lists.columns.GetSourceColumn parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: columnDefinition-id in: path description: The unique identifier of columnDefinition required: true schema: type: string x-ms-docs-key-type: columnDefinition x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn - >- /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn /groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.lists.columns.GetCount-aebb parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes: description: >- Provides operations to manage the contentTypes property of the microsoft.graph.list entity. get: tags: - Groups.site summary: Microsoft Graph Get contentTypes from groups description: The collection of content types present in this list. operationId: groups.sites.lists.ListContentTypes parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.contentTypeCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to contentTypes for groups operationId: groups.sites.lists.CreateContentTypes requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentType' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentType' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}: description: >- Provides operations to manage the contentTypes property of the microsoft.graph.list entity. get: tags: - Groups.site summary: Microsoft Graph Get contentTypes from groups description: The collection of content types present in this list. operationId: groups.sites.lists.GetContentTypes parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentType' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property contentTypes in groups operationId: groups.sites.lists.UpdateContentTypes requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentType' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentType' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property contentTypes for groups operationId: groups.sites.lists.DeleteContentTypes parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/base: description: >- Provides operations to manage the base property of the microsoft.graph.contentType entity. get: tags: - Groups.site summary: Microsoft Graph Get base from groups description: Parent contentType from which this content type is derived. operationId: groups.sites.lists.contentTypes.GetBase parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentType' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/base /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes: description: >- Provides operations to manage the baseTypes property of the microsoft.graph.contentType entity. get: tags: - Groups.site summary: Microsoft Graph Get baseTypes from groups description: The collection of content types that are ancestors of this content type. operationId: groups.sites.lists.contentTypes.ListBaseTypes parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.contentTypeCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/{contentType-id1}: description: >- Provides operations to manage the baseTypes property of the microsoft.graph.contentType entity. get: tags: - Groups.site summary: Microsoft Graph Get baseTypes from groups description: The collection of content types that are ancestors of this content type. operationId: groups.sites.lists.contentTypes.GetBaseTypes parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentType' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType - name: contentType-id1 in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/{contentType-id1} /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/baseTypes/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.lists.contentTypes.baseTypes.GetCount-bc27 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks: description: >- Provides operations to manage the columnLinks property of the microsoft.graph.contentType entity. get: tags: - Groups.site summary: Microsoft Graph Get columnLinks from groups description: The collection of columns that are required by this content type. operationId: groups.sites.lists.contentTypes.ListColumnLinks parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.columnLinkCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to columnLinks for groups operationId: groups.sites.lists.contentTypes.CreateColumnLinks requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnLink' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnLink' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}: description: >- Provides operations to manage the columnLinks property of the microsoft.graph.contentType entity. get: tags: - Groups.site summary: Microsoft Graph Get columnLinks from groups description: The collection of columns that are required by this content type. operationId: groups.sites.lists.contentTypes.GetColumnLinks parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnLink' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property columnLinks in groups operationId: groups.sites.lists.contentTypes.UpdateColumnLinks requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnLink' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnLink' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property columnLinks for groups operationId: groups.sites.lists.contentTypes.DeleteColumnLinks parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType - name: columnLink-id in: path description: The unique identifier of columnLink required: true schema: type: string x-ms-docs-key-type: columnLink x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id} /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.lists.contentTypes.columnLinks.GetCount-7d75 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions: description: >- Provides operations to manage the columnPositions property of the microsoft.graph.contentType entity. get: tags: - Groups.site summary: Microsoft Graph Get columnPositions from groups description: Column order information in a content type. operationId: groups.sites.lists.contentTypes.ListColumnPositions parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.columnDefinitionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}: description: >- Provides operations to manage the columnPositions property of the microsoft.graph.contentType entity. get: tags: - Groups.site summary: Microsoft Graph Get columnPositions from groups description: Column order information in a content type. operationId: groups.sites.lists.contentTypes.GetColumnPositions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType - name: columnDefinition-id in: path description: The unique identifier of columnDefinition required: true schema: type: string x-ms-docs-key-type: columnDefinition x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id} /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.lists.contentTypes.columnPositions.GetCount-c8a7 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns: description: >- Provides operations to manage the columns property of the microsoft.graph.contentType entity. get: tags: - Groups.site summary: Microsoft Graph Get columns from groups description: The collection of column definitions for this content type. operationId: groups.sites.lists.contentTypes.ListColumns parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.columnDefinitionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to columns for groups operationId: groups.sites.lists.contentTypes.CreateColumns requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}: description: >- Provides operations to manage the columns property of the microsoft.graph.contentType entity. get: tags: - Groups.site summary: Microsoft Graph Get columns from groups description: The collection of column definitions for this content type. operationId: groups.sites.lists.contentTypes.GetColumns parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property columns in groups operationId: groups.sites.lists.contentTypes.UpdateColumns requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property columns for groups operationId: groups.sites.lists.contentTypes.DeleteColumns parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType - name: columnDefinition-id in: path description: The unique identifier of columnDefinition required: true schema: type: string x-ms-docs-key-type: columnDefinition x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id} ? /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn : description: >- Provides operations to manage the sourceColumn property of the microsoft.graph.columnDefinition entity. get: tags: - Groups.site summary: Microsoft Graph Get sourceColumn from groups description: The source column for the content type column. operationId: groups.sites.lists.contentTypes.columns.GetSourceColumn parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType - name: columnDefinition-id in: path description: The unique identifier of columnDefinition required: true schema: type: string x-ms-docs-key-type: columnDefinition x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn - >- /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.lists.contentTypes.columns.GetCount-1d9f parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/associateWithHubSites: description: Provides operations to call the associateWithHubSites method. post: tags: - Groups.site summary: Microsoft Graph Invoke action associateWithHubSites description: >- Associate a published content type present in a content type hub with a list of hub sites. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0 operationId: >- groups.group.sites.site.lists.list.contentTypes.contentType.associateWithHubSites requestBody: description: Action parameters content: application/json: schema: type: object properties: hubSiteUrls: type: array items: type: string propagateToExistingLists: type: boolean default: false nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/associateWithHubSites /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation: description: Provides operations to call the copyToDefaultContentLocation method. post: tags: - Groups.site summary: Microsoft Graph Invoke action copyToDefaultContentLocation description: >- Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0 operationId: >- groups.group.sites.site.lists.list.contentTypes.contentType.copyToDefaultContentLocation requestBody: description: Action parameters content: application/json: schema: type: object properties: sourceFile: $ref: '#/components/schemas/microsoft.graph.itemReference' destinationFileName: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/isPublished(): description: Provides operations to call the isPublished method. get: tags: - Groups.site summary: Microsoft Graph Invoke function isPublished description: Check the publishing status of a contentType in a content type hub site. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0 operationId: groups.group.sites.site.lists.list.contentTypes.contentType.isPublished responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: boolean default: false 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/isPublished() /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/publish: description: Provides operations to call the publish method. post: tags: - Groups.site summary: Microsoft Graph Invoke action publish description: Publishes a contentType present in the content type hub site. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0 operationId: groups.group.sites.site.lists.list.contentTypes.contentType.publish responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/publish /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/unpublish: description: Provides operations to call the unpublish method. post: tags: - Groups.site summary: Microsoft Graph Invoke action unpublish description: Unpublish a contentType from a content type hub site. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0 operationId: groups.group.sites.site.lists.list.contentTypes.contentType.unpublish responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: contentType-id in: path description: The unique identifier of contentType required: true schema: type: string x-ms-docs-key-type: contentType x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/unpublish /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.lists.contentTypes.GetCount-e9e2 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopy: description: Provides operations to call the addCopy method. post: tags: - Groups.site summary: Microsoft Graph Invoke action addCopy description: Add a copy of a content type from a site to a list. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0 operationId: groups.group.sites.site.lists.list.contentTypes.addCopy requestBody: description: Action parameters content: application/json: schema: type: object properties: contentType: type: string required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.contentType' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/contentTypes/addCopy /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub: description: Provides operations to call the addCopyFromContentTypeHub method. post: tags: - Groups.site summary: Microsoft Graph Invoke action addCopyFromContentTypeHub description: >- Add or sync a copy of a published content type from the content type hub to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: getCompatibleHubContentTypes and the blog post Syntex Product Updates – August 2021. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0 operationId: >- groups.group.sites.site.lists.list.contentTypes.addCopyFromContentTypeHub requestBody: description: Action parameters content: application/json: schema: type: object properties: contentTypeId: type: string required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.contentType' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/contentTypes/addCopyFromContentTypeHub /groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/getCompatibleHubContentTypes(): description: Provides operations to call the getCompatibleHubContentTypes method. get: tags: - Groups.site summary: Microsoft Graph Invoke function getCompatibleHubContentTypes description: >- Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates – August 2021. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0 operationId: >- groups.group.sites.site.lists.list.contentTypes.getCompatibleHubContentTypes parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of contentType type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.contentType' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/contentTypes/getCompatibleHubContentTypes() /groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser: description: >- Provides operations to manage the createdByUser property of the microsoft.graph.baseItem entity. get: tags: - Groups.site summary: Microsoft Graph Get createdByUser from groups description: Identity of the user who created the item. Read-only. operationId: groups.sites.lists.GetCreatedByUser parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.user' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/createdByUser - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/createdByUser - /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/createdByUser /groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings: get: tags: - Groups.site summary: Microsoft Graph Get mailboxSettings property value description: >- Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. operationId: groups.sites.lists.createdByUser.GetMailboxSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' patch: tags: - Groups.site summary: Microsoft Graph Update property mailboxSettings value. operationId: groups.sites.lists.createdByUser.UpdateMailboxSettings requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list /groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors: get: tags: - Groups.site summary: Microsoft Graph Get serviceProvisioningErrors property value description: >- Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). operationId: groups.sites.lists.createdByUser.ListServiceProvisioningErrors parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.serviceProvisioningErrorCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list /groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.lists.createdByUser.ServiceProvisioningErrors.GetCount-c250 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list /groups/{group-id}/sites/{site-id}/lists/{list-id}/drive: description: >- Provides operations to manage the drive property of the microsoft.graph.list entity. get: tags: - Groups.site summary: Microsoft Graph Get drive from groups description: >- Allows access to the list as a drive resource with driveItems. Only present on document libraries. operationId: groups.sites.lists.GetDrive parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.drive' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list /groups/{group-id}/sites/{site-id}/lists/{list-id}/items: description: >- Provides operations to manage the items property of the microsoft.graph.list entity. get: tags: - Groups.site summary: Microsoft Graph Get items from groups description: All items contained in the list. operationId: groups.sites.lists.ListItems parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.listItemCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to items for groups operationId: groups.sites.lists.CreateItems requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.listItem' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.listItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}: description: >- Provides operations to manage the items property of the microsoft.graph.list entity. get: tags: - Groups.site summary: Microsoft Graph Get items from groups description: All items contained in the list. operationId: groups.sites.lists.GetItems parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.listItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property items in groups operationId: groups.sites.lists.UpdateItems requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.listItem' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.listItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property items for groups operationId: groups.sites.lists.DeleteItems parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics: description: >- Provides operations to manage the analytics property of the microsoft.graph.listItem entity. get: tags: - Groups.site summary: Microsoft Graph Get analytics from groups description: Analytics about the view activities that took place on this item. operationId: groups.sites.lists.items.GetAnalytics parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemAnalytics' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser: description: >- Provides operations to manage the createdByUser property of the microsoft.graph.baseItem entity. get: tags: - Groups.site summary: Microsoft Graph Get createdByUser from groups description: Identity of the user who created the item. Read-only. operationId: groups.sites.lists.items.GetCreatedByUser parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.user' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/createdByUser - /groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/createdByUser - /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/createdByUser /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings: get: tags: - Groups.site summary: Microsoft Graph Get mailboxSettings property value description: >- Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. operationId: groups.sites.lists.items.createdByUser.GetMailboxSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' patch: tags: - Groups.site summary: Microsoft Graph Update property mailboxSettings value. operationId: groups.sites.lists.items.createdByUser.UpdateMailboxSettings requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors: get: tags: - Groups.site summary: Microsoft Graph Get serviceProvisioningErrors property value description: >- Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). operationId: groups.sites.lists.items.createdByUser.ListServiceProvisioningErrors parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.serviceProvisioningErrorCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.lists.items.createdByUser.ServiceProvisioningErrors.GetCount-bb02 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions: description: >- Provides operations to manage the documentSetVersions property of the microsoft.graph.listItem entity. get: tags: - Groups.site summary: Microsoft Graph Get documentSetVersions from groups description: Version information for a document set version created by a user. operationId: groups.sites.lists.items.ListDocumentSetVersions parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.documentSetVersionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to documentSetVersions for groups operationId: groups.sites.lists.items.CreateDocumentSetVersions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.documentSetVersion' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.documentSetVersion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}: description: >- Provides operations to manage the documentSetVersions property of the microsoft.graph.listItem entity. get: tags: - Groups.site summary: Microsoft Graph Get documentSetVersions from groups description: Version information for a document set version created by a user. operationId: groups.sites.lists.items.GetDocumentSetVersions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.documentSetVersion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property documentSetVersions in groups operationId: groups.sites.lists.items.UpdateDocumentSetVersions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.documentSetVersion' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.documentSetVersion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property documentSetVersions for groups operationId: groups.sites.lists.items.DeleteDocumentSetVersions parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem - name: documentSetVersion-id in: path description: The unique identifier of documentSetVersion required: true schema: type: string x-ms-docs-key-type: documentSetVersion /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields: description: >- Provides operations to manage the fields property of the microsoft.graph.listItemVersion entity. get: tags: - Groups.site summary: Microsoft Graph Get fields from groups description: A collection of the fields and values for this version of the list item. operationId: groups.sites.lists.items.documentSetVersions.GetFields parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.fieldValueSet' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property fields in groups operationId: groups.sites.lists.items.documentSetVersions.UpdateFields requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.fieldValueSet' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.fieldValueSet' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property fields for groups operationId: groups.sites.lists.items.documentSetVersions.DeleteFields parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem - name: documentSetVersion-id in: path description: The unique identifier of documentSetVersion required: true schema: type: string x-ms-docs-key-type: documentSetVersion x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore: description: Provides operations to call the restore method. post: tags: - Groups.site summary: Microsoft Graph Invoke action restore description: Restore a document set version. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0 operationId: >- groups.group.sites.site.lists.list.items.listItem.documentSetVersions.documentSetVersion.restore responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem - name: documentSetVersion-id in: path description: The unique identifier of documentSetVersion required: true schema: type: string x-ms-docs-key-type: documentSetVersion x-ms-docs-grouped-path: - /groups/{group-id}/restore /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.lists.items.documentSetVersions.GetCount-dcaf parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem: description: >- Provides operations to manage the driveItem property of the microsoft.graph.listItem entity. get: tags: - Groups.site summary: Microsoft Graph Get driveItem from groups description: >- For document libraries, the driveItem relationship exposes the listItem as a driveItem operationId: groups.sites.lists.items.GetDriveItem parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.driveItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content: description: Provides operations to manage the media for the group entity. get: tags: - Groups.site summary: Microsoft Graph Get content for the navigation property driveItem from groups description: The content stream, if the item represents a file. operationId: groups.sites.lists.items.GetDriveItemContent parameters: - name: $format in: query description: Format of the content schema: type: string responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.site summary: Microsoft Graph Update content for the navigation property driveItem in groups description: The content stream, if the item represents a file. operationId: groups.sites.lists.items.UpdateDriveItemContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.driveItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.site summary: Microsoft Graph Delete content for the navigation property driveItem in groups description: The content stream, if the item represents a file. operationId: groups.sites.lists.items.DeleteDriveItemContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields: description: >- Provides operations to manage the fields property of the microsoft.graph.listItem entity. get: tags: - Groups.site summary: Microsoft Graph Get fields from groups description: The values of the columns set on this list item. operationId: groups.sites.lists.items.GetFields parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.fieldValueSet' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property fields in groups operationId: groups.sites.lists.items.UpdateFields requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.fieldValueSet' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.fieldValueSet' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property fields for groups operationId: groups.sites.lists.items.DeleteFields parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser: description: >- Provides operations to manage the lastModifiedByUser property of the microsoft.graph.baseItem entity. get: tags: - Groups.site summary: Microsoft Graph Get lastModifiedByUser from groups description: Identity of the user who last modified the item. Read-only. operationId: groups.sites.lists.items.GetLastModifiedByUser parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.user' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/lastModifiedByUser - /groups/{group-id}/sites/{site-id}/lists/{list-id}/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/lastModifiedByUser /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings: get: tags: - Groups.site summary: Microsoft Graph Get mailboxSettings property value description: >- Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. operationId: groups.sites.lists.items.lastModifiedByUser.GetMailboxSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' patch: tags: - Groups.site summary: Microsoft Graph Update property mailboxSettings value. operationId: groups.sites.lists.items.lastModifiedByUser.UpdateMailboxSettings requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors: get: tags: - Groups.site summary: Microsoft Graph Get serviceProvisioningErrors property value description: >- Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). operationId: >- groups.sites.lists.items.lastModifiedByUser.ListServiceProvisioningErrors parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.serviceProvisioningErrorCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.lists.items.lastModifiedByUser.ServiceProvisioningErrors.GetCount-3e90 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createLink: description: Provides operations to call the createLink method. post: tags: - Groups.site summary: Microsoft Graph Invoke action createLink operationId: groups.group.sites.site.lists.list.items.listItem.createLink requestBody: description: Action parameters content: application/json: schema: type: object properties: type: type: string nullable: true scope: type: string nullable: true expirationDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string format: date-time nullable: true password: type: string nullable: true message: type: string nullable: true recipients: type: array items: $ref: '#/components/schemas/microsoft.graph.driveRecipient' retainInheritedPermissions: type: boolean default: false nullable: true sendNotification: type: boolean default: false nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.permission' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval(): description: Provides operations to call the getActivitiesByInterval method. get: tags: - Groups.site summary: Microsoft Graph Invoke function getActivitiesByInterval operationId: >- groups.group.sites.site.lists.list.items.listItem.getActivitiesByInterval-4c35 parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of itemActivityStat type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.itemActivityStat 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') - /groups/{group-id}/sites/{site-id}/getActivitiesByInterval() - >- /groups/{group-id}/sites/{site-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval() - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') ? /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') : description: Provides operations to call the getActivitiesByInterval method. get: tags: - Groups.site summary: Microsoft Graph Invoke function getActivitiesByInterval operationId: >- groups.group.sites.site.lists.list.items.listItem.getActivitiesByInterval-ad27 parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of itemActivityStat type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.itemActivityStat 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem - name: startDateTime in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true schema: type: string nullable: true - name: endDateTime in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true schema: type: string nullable: true - name: interval in: path description: 'Usage: interval=''{interval}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval() - /groups/{group-id}/sites/{site-id}/getActivitiesByInterval() - >- /groups/{group-id}/sites/{site-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval() - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions: description: >- Provides operations to manage the versions property of the microsoft.graph.listItem entity. get: tags: - Groups.site summary: Microsoft Graph Get versions from groups description: The list of previous versions of the list item. operationId: groups.sites.lists.items.ListVersions parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.listItemVersionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to versions for groups operationId: groups.sites.lists.items.CreateVersions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.listItemVersion' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.listItemVersion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}: description: >- Provides operations to manage the versions property of the microsoft.graph.listItem entity. get: tags: - Groups.site summary: Microsoft Graph Get versions from groups description: The list of previous versions of the list item. operationId: groups.sites.lists.items.GetVersions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.listItemVersion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property versions in groups operationId: groups.sites.lists.items.UpdateVersions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.listItemVersion' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.listItemVersion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property versions for groups operationId: groups.sites.lists.items.DeleteVersions parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem - name: listItemVersion-id in: path description: The unique identifier of listItemVersion required: true schema: type: string x-ms-docs-key-type: listItemVersion /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields: description: >- Provides operations to manage the fields property of the microsoft.graph.listItemVersion entity. get: tags: - Groups.site summary: Microsoft Graph Get fields from groups description: A collection of the fields and values for this version of the list item. operationId: groups.sites.lists.items.versions.GetFields parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.fieldValueSet' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property fields in groups operationId: groups.sites.lists.items.versions.UpdateFields requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.fieldValueSet' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.fieldValueSet' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property fields for groups operationId: groups.sites.lists.items.versions.DeleteFields parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem - name: listItemVersion-id in: path description: The unique identifier of listItemVersion required: true schema: type: string x-ms-docs-key-type: listItemVersion x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion: description: Provides operations to call the restoreVersion method. post: tags: - Groups.site summary: Microsoft Graph Invoke action restoreVersion description: >- Restore a previous version of a ListItem to be the current version. This will create a new version with the contents of the previous version, but preserves all existing versions of the item. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0 operationId: >- groups.group.sites.site.lists.list.items.listItem.versions.listItemVersion.restoreVersion responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem - name: listItemVersion-id in: path description: The unique identifier of listItemVersion required: true schema: type: string x-ms-docs-key-type: listItemVersion /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.lists.items.versions.GetCount-1c13 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: listItem-id in: path description: The unique identifier of listItem required: true schema: type: string x-ms-docs-key-type: listItem /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta(): description: Provides operations to call the delta method. get: tags: - Groups.site summary: Microsoft Graph Invoke function delta description: "Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.\r\nThe service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.\r\nYour app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all the changes, you can apply them to your local state.\r\nTo check for changes in the future, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.\r\nThe same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state." externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0 operationId: groups.group.sites.site.lists.list.items.delta-fa14 parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of listItem type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.listItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list x-ms-docs-grouped-path: - /groups/{group-id}/calendar/calendarView/delta() - /groups/{group-id}/calendar/events/{event-id}/instances/delta() - /groups/{group-id}/calendar/events/delta() - /groups/{group-id}/calendarView/delta() - /groups/{group-id}/events/{event-id}/instances/delta() - /groups/{group-id}/events/delta() - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta(token='{token}') - /groups/{group-id}/sites/delta() - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/channels/{channel-id}/messages/delta() - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/primaryChannel/messages/delta() - /groups/delta() - /groups/delta() /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta(token='{token}'): description: Provides operations to call the delta method. get: tags: - Groups.site summary: Microsoft Graph Invoke function delta operationId: groups.group.sites.site.lists.list.items.delta-9846 parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of listItem type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.listItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: token in: path description: 'Usage: token=''{token}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /groups/{group-id}/calendar/calendarView/delta() - /groups/{group-id}/calendar/events/{event-id}/instances/delta() - /groups/{group-id}/calendar/events/delta() - /groups/{group-id}/calendarView/delta() - /groups/{group-id}/events/{event-id}/instances/delta() - /groups/{group-id}/events/delta() - /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta() - /groups/{group-id}/sites/delta() - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/channels/{channel-id}/messages/delta() - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/primaryChannel/messages/delta() - /groups/delta() - /groups/delta() /groups/{group-id}/sites/{site-id}/lists/{list-id}/lastModifiedByUser: description: >- Provides operations to manage the lastModifiedByUser property of the microsoft.graph.baseItem entity. get: tags: - Groups.site summary: Microsoft Graph Get lastModifiedByUser from groups description: Identity of the user who last modified the item. Read-only. operationId: groups.sites.lists.GetLastModifiedByUser parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.user' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/lastModifiedByUser /groups/{group-id}/sites/{site-id}/lists/{list-id}/lastModifiedByUser/mailboxSettings: get: tags: - Groups.site summary: Microsoft Graph Get mailboxSettings property value description: >- Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. operationId: groups.sites.lists.lastModifiedByUser.GetMailboxSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' patch: tags: - Groups.site summary: Microsoft Graph Update property mailboxSettings value. operationId: groups.sites.lists.lastModifiedByUser.UpdateMailboxSettings requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list /groups/{group-id}/sites/{site-id}/lists/{list-id}/lastModifiedByUser/serviceProvisioningErrors: get: tags: - Groups.site summary: Microsoft Graph Get serviceProvisioningErrors property value description: >- Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). operationId: groups.sites.lists.lastModifiedByUser.ListServiceProvisioningErrors parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.serviceProvisioningErrorCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list /groups/{group-id}/sites/{site-id}/lists/{list-id}/lastModifiedByUser/serviceProvisioningErrors/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.lists.lastModifiedByUser.ServiceProvisioningErrors.GetCount-f14e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list /groups/{group-id}/sites/{site-id}/lists/{list-id}/operations: description: >- Provides operations to manage the operations property of the microsoft.graph.list entity. get: tags: - Groups.site summary: Microsoft Graph Get operations from groups description: The collection of long-running operations on the list. operationId: groups.sites.lists.ListOperations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.richLongRunningOperationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to operations for groups operationId: groups.sites.lists.CreateOperations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list /groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}: description: >- Provides operations to manage the operations property of the microsoft.graph.list entity. get: tags: - Groups.site summary: Microsoft Graph Get operations from groups description: The collection of long-running operations on the list. operationId: groups.sites.lists.GetOperations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property operations in groups operationId: groups.sites.lists.UpdateOperations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property operations for groups operationId: groups.sites.lists.DeleteOperations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: richLongRunningOperation-id in: path description: The unique identifier of richLongRunningOperation required: true schema: type: string x-ms-docs-key-type: richLongRunningOperation /groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.lists.operations.GetCount-3c85 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list /groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions: description: >- Provides operations to manage the subscriptions property of the microsoft.graph.list entity. get: tags: - Groups.site summary: Microsoft Graph Get subscriptions from groups description: The set of subscriptions on the list. operationId: groups.sites.lists.ListSubscriptions parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.subscriptionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to subscriptions for groups operationId: groups.sites.lists.CreateSubscriptions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.subscription' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.subscription' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list /groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}: description: >- Provides operations to manage the subscriptions property of the microsoft.graph.list entity. get: tags: - Groups.site summary: Microsoft Graph Get subscriptions from groups description: The set of subscriptions on the list. operationId: groups.sites.lists.GetSubscriptions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.subscription' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property subscriptions in groups operationId: groups.sites.lists.UpdateSubscriptions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.subscription' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.subscription' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property subscriptions for groups operationId: groups.sites.lists.DeleteSubscriptions parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: subscription-id in: path description: The unique identifier of subscription required: true schema: type: string x-ms-docs-key-type: subscription /groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}/reauthorize: description: Provides operations to call the reauthorize method. post: tags: - Groups.site summary: Microsoft Graph Invoke action reauthorize description: >- Reauthorize a subscription when you receive a reauthorizationRequired challenge. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0 operationId: >- groups.group.sites.site.lists.list.subscriptions.subscription.reauthorize responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list - name: subscription-id in: path description: The unique identifier of subscription required: true schema: type: string x-ms-docs-key-type: subscription /groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.lists.subscriptions.GetCount-5f55 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: list-id in: path description: The unique identifier of list required: true schema: type: string x-ms-docs-key-type: list /groups/{group-id}/sites/{site-id}/lists/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.lists.GetCount-338f parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/getActivitiesByInterval(): description: Provides operations to call the getActivitiesByInterval method. get: tags: - Groups.site summary: Microsoft Graph Invoke function getActivitiesByInterval operationId: groups.group.sites.site.getActivitiesByInterval-4c35 parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of itemActivityStat type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.itemActivityStat 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval() - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') - >- /groups/{group-id}/sites/{site-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval() - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') ? /groups/{group-id}/sites/{site-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') : description: Provides operations to call the getActivitiesByInterval method. get: tags: - Groups.site summary: Microsoft Graph Invoke function getActivitiesByInterval operationId: groups.group.sites.site.getActivitiesByInterval-ad27 parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of itemActivityStat type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.itemActivityStat 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: startDateTime in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true schema: type: string nullable: true - name: endDateTime in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true schema: type: string nullable: true - name: interval in: path description: 'Usage: interval=''{interval}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval() - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') - /groups/{group-id}/sites/{site-id}/getActivitiesByInterval() - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval() - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') /groups/{group-id}/sites/{site-id}/getApplicableContentTypesForList(listId='{listId}'): description: Provides operations to call the getApplicableContentTypesForList method. get: tags: - Groups.site summary: Microsoft Graph Invoke function getApplicableContentTypesForList description: Get site contentTypes that can be added to a list. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-1.0 operationId: groups.group.sites.site.getApplicableContentTypesForList parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of contentType type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.contentType' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: listId in: path description: 'Usage: listId=''{listId}''' required: true schema: type: string x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getApplicableContentTypesForList(listId='{listId}') /groups/{group-id}/sites/{site-id}/getByPath(path='{path}'): description: Provides operations to call the getByPath method. get: tags: - Groups.site summary: Microsoft Graph Invoke function getByPath operationId: groups.group.sites.site.getByPath responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.site' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/analytics: description: >- Provides operations to manage the analytics property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get analytics from groups description: Analytics about the view activities that took place on this site. operationId: groups.sites.getByPath.GetAnalytics parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemAnalytics' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property analytics in groups operationId: groups.sites.getByPath.UpdateAnalytics requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemAnalytics' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.itemAnalytics' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property analytics for groups operationId: groups.sites.getByPath.DeleteAnalytics parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/analytics /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/columns: description: >- Provides operations to manage the columns property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get columns from groups description: >- The collection of column definitions reusable across lists under this site. operationId: groups.sites.getByPath.ListColumns parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.columnDefinitionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to columns for groups operationId: groups.sites.getByPath.CreateColumns requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/columns /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/contentTypes: description: >- Provides operations to manage the contentTypes property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get contentTypes from groups description: The collection of content types defined for this site. operationId: groups.sites.getByPath.ListContentTypes parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.contentTypeCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to contentTypes for groups operationId: groups.sites.getByPath.CreateContentTypes requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentType' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentType' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/contentTypes /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/createdByUser: description: >- Provides operations to manage the createdByUser property of the microsoft.graph.baseItem entity. get: tags: - Groups.site summary: Microsoft Graph Get createdByUser from groups description: Identity of the user who created the item. Read-only. operationId: groups.sites.getByPath.GetCreatedByUser parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.user' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/createdByUser - /groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser - /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/createdByUser /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/drive: description: >- Provides operations to manage the drive property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get drive from groups description: The default drive (document library) for this site. operationId: groups.sites.getByPath.GetDrive parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.drive' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/drive /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/drives: description: >- Provides operations to manage the drives property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get drives from groups description: The collection of drives (document libraries) under this site. operationId: groups.sites.getByPath.ListDrives parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.driveCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/drives /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/externalColumns: description: >- Provides operations to manage the externalColumns property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get externalColumns from groups operationId: groups.sites.getByPath.ListExternalColumns parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.columnDefinitionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/externalColumns /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/items: description: >- Provides operations to manage the items property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get items from groups description: >- Used to address any item contained in this site. This collection can't be enumerated. operationId: groups.sites.getByPath.ListItems parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.baseItemCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/items /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lastModifiedByUser: description: >- Provides operations to manage the lastModifiedByUser property of the microsoft.graph.baseItem entity. get: tags: - Groups.site summary: Microsoft Graph Get lastModifiedByUser from groups description: Identity of the user who last modified the item. Read-only. operationId: groups.sites.getByPath.GetLastModifiedByUser parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.user' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser - /groups/{group-id}/sites/{site-id}/lists/{list-id}/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/lastModifiedByUser /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lists: description: >- Provides operations to manage the lists property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get lists from groups description: The collection of lists under this site. operationId: groups.sites.getByPath.ListLists parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.listCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to lists for groups operationId: groups.sites.getByPath.CreateLists requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.list' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.list' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/lists /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval(): description: Provides operations to call the getActivitiesByInterval method. get: tags: - groups.group.Functions summary: Microsoft Graph Invoke function getActivitiesByInterval operationId: groups.group.sites.site.getByPath.getActivitiesByInterval-4c35 parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of itemActivityStat type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.itemActivityStat 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval() - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') - /groups/{group-id}/sites/{site-id}/getActivitiesByInterval() - >- /groups/{group-id}/sites/{site-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') ? /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') : description: Provides operations to call the getActivitiesByInterval method. get: tags: - groups.group.Functions summary: Microsoft Graph Invoke function getActivitiesByInterval operationId: groups.group.sites.site.getByPath.getActivitiesByInterval-ad27 parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of itemActivityStat type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.itemActivityStat 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true - name: startDateTime in: path description: 'Usage: startDateTime=''{startDateTime}''' required: true schema: type: string nullable: true - name: endDateTime in: path description: 'Usage: endDateTime=''{endDateTime}''' required: true schema: type: string nullable: true - name: interval in: path description: 'Usage: interval=''{interval}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval() - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') - /groups/{group-id}/sites/{site-id}/getActivitiesByInterval() - >- /groups/{group-id}/sites/{site-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}') - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval() /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getApplicableContentTypesForList(listId='{listId}'): description: Provides operations to call the getApplicableContentTypesForList method. get: tags: - groups.group.Functions summary: Microsoft Graph Invoke function getApplicableContentTypesForList description: Get site contentTypes that can be added to a list. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-1.0 operationId: groups.group.sites.site.getByPath.getApplicableContentTypesForList parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of contentType type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.contentType' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true - name: listId in: path description: 'Usage: listId=''{listId}''' required: true schema: type: string x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/getApplicableContentTypesForList(listId='{listId}') /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/onenote: description: >- Provides operations to manage the onenote property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get onenote from groups description: Calls the OneNote service for notebook related operations. operationId: groups.sites.getByPath.GetOnenote parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenote' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property onenote in groups operationId: groups.sites.getByPath.UpdateOnenote requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenote' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenote' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property onenote for groups operationId: groups.sites.getByPath.DeleteOnenote parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/onenote /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/operations: description: >- Provides operations to manage the operations property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get operations from groups description: The collection of long-running operations on the site. operationId: groups.sites.getByPath.ListOperations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.richLongRunningOperationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to operations for groups operationId: groups.sites.getByPath.CreateOperations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/operations /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/pages: description: >- Provides operations to manage the pages property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get pages from groups description: The collection of pages in the baseSitePages list in this site. operationId: groups.sites.getByPath.ListPages parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.baseSitePageCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to pages for groups operationId: groups.sites.getByPath.CreatePages requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.baseSitePage' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.baseSitePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/pages /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/permissions: description: >- Provides operations to manage the permissions property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get permissions from groups description: The permissions associated with the site. Nullable. operationId: groups.sites.getByPath.ListPermissions parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.permissionCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to permissions for groups operationId: groups.sites.getByPath.CreatePermissions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.permission' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.permission' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/permissions /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/sites: description: >- Provides operations to manage the sites property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get sites from groups description: The collection of the sub-sites under this site. operationId: groups.sites.getByPath.ListSites parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.siteCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/sites /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/termStore: description: >- Provides operations to manage the termStore property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get termStore from groups description: The default termStore under this site. operationId: groups.sites.getByPath.GetTermStore parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.store' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property termStore in groups operationId: groups.sites.getByPath.UpdateTermStore requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.store' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.store' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property termStore for groups operationId: groups.sites.getByPath.DeleteTermStore parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/termStore /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/termStores: description: >- Provides operations to manage the termStores property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get termStores from groups description: The collection of termStores under this site. operationId: groups.sites.getByPath.ListTermStores parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.storeCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to termStores for groups operationId: groups.sites.getByPath.CreateTermStores requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.store' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.store' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: path in: path description: 'Usage: path=''{path}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/termStores /groups/{group-id}/sites/{site-id}/onenote: description: >- Provides operations to manage the onenote property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get onenote from groups description: Calls the OneNote service for notebook related operations. operationId: groups.sites.GetOnenote parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenote' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property onenote in groups operationId: groups.sites.UpdateOnenote requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenote' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenote' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property onenote for groups operationId: groups.sites.DeleteOnenote parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/onenote /groups/{group-id}/sites/{site-id}/onenote/notebooks: description: >- Provides operations to manage the notebooks property of the microsoft.graph.onenote entity. get: tags: - Groups.site summary: Microsoft Graph Get notebooks from groups description: >- The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.sites.onenote.ListNotebooks parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.notebookCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to notebooks for groups operationId: groups.sites.onenote.CreateNotebooks requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/onenote/notebooks /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}: description: >- Provides operations to manage the notebooks property of the microsoft.graph.onenote entity. get: tags: - Groups.site summary: Microsoft Graph Get notebooks from groups description: >- The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.sites.onenote.GetNotebooks parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property notebooks in groups operationId: groups.sites.onenote.UpdateNotebooks requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property notebooks for groups operationId: groups.sites.onenote.DeleteNotebooks parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook x-ms-docs-grouped-path: - /groups/{group-id}/onenote/notebooks/{notebook-id} /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook: description: Provides operations to call the copyNotebook method. post: tags: - Groups.site summary: Microsoft Graph Invoke action copyNotebook description: >- For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-1.0 operationId: groups.group.sites.site.onenote.notebooks.notebook.copyNotebook requestBody: description: Action parameters content: application/json: schema: type: object properties: groupId: type: string nullable: true renameAs: type: string nullable: true notebookFolder: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook x-ms-docs-grouped-path: - /groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups: description: >- Provides operations to manage the sectionGroups property of the microsoft.graph.notebook entity. get: tags: - Groups.site summary: Microsoft Graph Get sectionGroups from groups description: The section groups in the notebook. Read-only. Nullable. operationId: groups.sites.onenote.notebooks.ListSectionGroups parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.sectionGroupCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to sectionGroups for groups operationId: groups.sites.onenote.notebooks.CreateSectionGroups requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook x-ms-docs-grouped-path: - /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}: description: >- Provides operations to manage the sectionGroups property of the microsoft.graph.notebook entity. get: tags: - Groups.site summary: Microsoft Graph Get sectionGroups from groups description: The section groups in the notebook. Read-only. Nullable. operationId: groups.sites.onenote.notebooks.GetSectionGroups parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property sectionGroups in groups operationId: groups.sites.onenote.notebooks.UpdateSectionGroups requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property sectionGroups for groups operationId: groups.sites.onenote.notebooks.DeleteSectionGroups parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id} /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook: description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.site summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the section group. Read-only. operationId: groups.sites.onenote.notebooks.sectionGroups.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup: description: >- Provides operations to manage the parentSectionGroup property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.site summary: Microsoft Graph Get parentSectionGroup from groups description: The section group that contains the section group. Read-only. operationId: groups.sites.onenote.notebooks.sectionGroups.GetParentSectionGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups: description: >- Provides operations to manage the sectionGroups property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.site summary: Microsoft Graph Get sectionGroups from groups description: The section groups in the section. Read-only. Nullable. operationId: groups.sites.onenote.notebooks.sectionGroups.ListSectionGroups parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.sectionGroupCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups - /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1} : description: >- Provides operations to manage the sectionGroups property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.site summary: Microsoft Graph Get sectionGroups from groups description: The section groups in the section. Read-only. Nullable. operationId: groups.sites.onenote.notebooks.sectionGroups.GetSectionGroups parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: sectionGroup-id1 in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1} - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1} - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1} /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.onenote.notebooks.sectionGroups.sectionGroups.GetCount-b8c2 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections: description: >- Provides operations to manage the sections property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.site summary: Microsoft Graph Get sections from groups description: The sections in the section group. Read-only. Nullable. operationId: groups.sites.onenote.notebooks.sectionGroups.ListSections parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.onenoteSectionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to sections for groups operationId: groups.sites.onenote.notebooks.sectionGroups.CreateSections requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections - /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id} : description: >- Provides operations to manage the sections property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.site summary: Microsoft Graph Get sections from groups description: The sections in the section group. Read-only. Nullable. operationId: groups.sites.onenote.notebooks.sectionGroups.GetSections parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property sections in groups operationId: groups.sites.onenote.notebooks.sectionGroups.UpdateSections requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property sections for groups operationId: groups.sites.onenote.notebooks.sectionGroups.DeleteSections parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id} - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id} - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id} ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook : description: Provides operations to call the copyToNotebook method. post: tags: - Groups.site summary: Microsoft Graph Invoke action copyToNotebook description: >- For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0 operationId: >- groups.group.sites.site.onenote.notebooks.notebook.sectionGroups.sectionGroup.sections.onenoteSection.copyToNotebook requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true renameAs: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - /groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup : description: Provides operations to call the copyToSectionGroup method. post: tags: - Groups.site summary: Microsoft Graph Invoke action copyToSectionGroup description: >- For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0 operationId: >- groups.group.sites.site.onenote.notebooks.notebook.sectionGroups.sectionGroup.sections.onenoteSection.copyToSectionGroup requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true renameAs: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages : description: >- Provides operations to manage the pages property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.site summary: Microsoft Graph Get pages from groups description: The collection of pages in the section. Read-only. Nullable. operationId: groups.sites.onenote.notebooks.sectionGroups.sections.ListPages parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.onenotePageCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to pages for groups operationId: groups.sites.onenote.notebooks.sectionGroups.sections.CreatePages requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} : description: >- Provides operations to manage the pages property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.site summary: Microsoft Graph Get pages from groups description: The collection of pages in the section. Read-only. Nullable. operationId: groups.sites.onenote.notebooks.sectionGroups.sections.GetPages parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property pages in groups operationId: groups.sites.onenote.notebooks.sectionGroups.sections.UpdatePages requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property pages for groups operationId: groups.sites.onenote.notebooks.sectionGroups.sections.DeletePages parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id} ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content : description: Provides operations to manage the media for the group entity. get: tags: - Groups.site summary: Microsoft Graph Get content for the navigation property pages from groups description: The page's HTML content. operationId: groups.sites.onenote.notebooks.sectionGroups.sections.GetPagesContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.site summary: Microsoft Graph Update content for the navigation property pages in groups description: The page's HTML content. operationId: groups.sites.onenote.notebooks.sectionGroups.sections.UpdatePagesContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.site summary: Microsoft Graph Delete content for the navigation property pages in groups description: The page's HTML content. operationId: groups.sites.onenote.notebooks.sectionGroups.sections.DeletePagesContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection : description: Provides operations to call the copyToSection method. post: tags: - Groups.site summary: Microsoft Graph Invoke action copyToSection description: >- Copy a page to a specific section. For copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0 operationId: >- groups.group.sites.site.onenote.notebooks.notebook.sectionGroups.sectionGroup.sections.onenoteSection.pages.onenotePage.copyToSection requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - /groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent : description: Provides operations to call the onenotePatchContent method. post: tags: - Groups.site summary: Microsoft Graph Invoke action onenotePatchContent operationId: >- groups.group.sites.site.onenote.notebooks.notebook.sectionGroups.sectionGroup.sections.onenoteSection.pages.onenotePage.onenotePatchContent requestBody: description: Action parameters content: application/json: schema: type: object properties: commands: type: array items: $ref: >- #/components/schemas/microsoft.graph.onenotePatchContentCommand required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - /groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() : description: Provides operations to call the preview method. get: tags: - Groups.site summary: Microsoft Graph Invoke function preview operationId: >- groups.group.sites.site.onenote.notebooks.notebook.sectionGroups.sectionGroup.sections.onenoteSection.pages.onenotePage.preview responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenotePagePreview' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - /groups/{group-id}/onenote/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook : description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.onenotePage entity. get: tags: - Groups.site summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the page. Read-only. operationId: >- groups.sites.onenote.notebooks.sectionGroups.sections.pages.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - /groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection : description: >- Provides operations to manage the parentSection property of the microsoft.graph.onenotePage entity. get: tags: - Groups.site summary: Microsoft Graph Get parentSection from groups description: The section that contains the page. Read-only. operationId: >- groups.sites.onenote.notebooks.sectionGroups.sections.pages.GetParentSection parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - /groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.onenote.notebooks.sectionGroups.sections.pages.GetCount-e302 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook : description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.site summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the section. Read-only. operationId: groups.sites.onenote.notebooks.sectionGroups.sections.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - /groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup : description: >- Provides operations to manage the parentSectionGroup property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.site summary: Microsoft Graph Get parentSectionGroup from groups description: The section group that contains the section. Read-only. operationId: >- groups.sites.onenote.notebooks.sectionGroups.sections.GetParentSectionGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.onenote.notebooks.sectionGroups.sections.GetCount-17fa parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.onenote.notebooks.sectionGroups.GetCount-b8c2 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections: description: >- Provides operations to manage the sections property of the microsoft.graph.notebook entity. get: tags: - Groups.site summary: Microsoft Graph Get sections from groups description: The sections in the notebook. Read-only. Nullable. operationId: groups.sites.onenote.notebooks.ListSections parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.onenoteSectionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to sections for groups operationId: groups.sites.onenote.notebooks.CreateSections requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook x-ms-docs-grouped-path: - /groups/{group-id}/onenote/notebooks/{notebook-id}/sections /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}: description: >- Provides operations to manage the sections property of the microsoft.graph.notebook entity. get: tags: - Groups.site summary: Microsoft Graph Get sections from groups description: The sections in the notebook. Read-only. Nullable. operationId: groups.sites.onenote.notebooks.GetSections parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property sections in groups operationId: groups.sites.onenote.notebooks.UpdateSections requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property sections for groups operationId: groups.sites.onenote.notebooks.DeleteSections parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id} /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook: description: Provides operations to call the copyToNotebook method. post: tags: - Groups.site summary: Microsoft Graph Invoke action copyToNotebook description: >- For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0 operationId: >- groups.group.sites.site.onenote.notebooks.notebook.sections.onenoteSection.copyToNotebook requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true renameAs: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - /groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup: description: Provides operations to call the copyToSectionGroup method. post: tags: - Groups.site summary: Microsoft Graph Invoke action copyToSectionGroup description: >- For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0 operationId: >- groups.group.sites.site.onenote.notebooks.notebook.sections.onenoteSection.copyToSectionGroup requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true renameAs: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages: description: >- Provides operations to manage the pages property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.site summary: Microsoft Graph Get pages from groups description: The collection of pages in the section. Read-only. Nullable. operationId: groups.sites.onenote.notebooks.sections.ListPages parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.onenotePageCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to pages for groups operationId: groups.sites.onenote.notebooks.sections.CreatePages requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}: description: >- Provides operations to manage the pages property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.site summary: Microsoft Graph Get pages from groups description: The collection of pages in the section. Read-only. Nullable. operationId: groups.sites.onenote.notebooks.sections.GetPages parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property pages in groups operationId: groups.sites.onenote.notebooks.sections.UpdatePages requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property pages for groups operationId: groups.sites.onenote.notebooks.sections.DeletePages parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id} ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content : description: Provides operations to manage the media for the group entity. get: tags: - Groups.site summary: Microsoft Graph Get content for the navigation property pages from groups description: The page's HTML content. operationId: groups.sites.onenote.notebooks.sections.GetPagesContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.site summary: Microsoft Graph Update content for the navigation property pages in groups description: The page's HTML content. operationId: groups.sites.onenote.notebooks.sections.UpdatePagesContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.site summary: Microsoft Graph Delete content for the navigation property pages in groups description: The page's HTML content. operationId: groups.sites.onenote.notebooks.sections.DeletePagesContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection : description: Provides operations to call the copyToSection method. post: tags: - Groups.site summary: Microsoft Graph Invoke action copyToSection description: >- Copy a page to a specific section. For copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0 operationId: >- groups.group.sites.site.onenote.notebooks.notebook.sections.onenoteSection.pages.onenotePage.copyToSection requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - /groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent : description: Provides operations to call the onenotePatchContent method. post: tags: - Groups.site summary: Microsoft Graph Invoke action onenotePatchContent operationId: >- groups.group.sites.site.onenote.notebooks.notebook.sections.onenoteSection.pages.onenotePage.onenotePatchContent requestBody: description: Action parameters content: application/json: schema: type: object properties: commands: type: array items: $ref: >- #/components/schemas/microsoft.graph.onenotePatchContentCommand required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - /groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() : description: Provides operations to call the preview method. get: tags: - Groups.site summary: Microsoft Graph Invoke function preview operationId: >- groups.group.sites.site.onenote.notebooks.notebook.sections.onenoteSection.pages.onenotePage.preview responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenotePagePreview' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - /groups/{group-id}/onenote/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook : description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.onenotePage entity. get: tags: - Groups.site summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the page. Read-only. operationId: groups.sites.onenote.notebooks.sections.pages.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - /groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection : description: >- Provides operations to manage the parentSection property of the microsoft.graph.onenotePage entity. get: tags: - Groups.site summary: Microsoft Graph Get parentSection from groups description: The section that contains the page. Read-only. operationId: groups.sites.onenote.notebooks.sections.pages.GetParentSection parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - /groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.onenote.notebooks.sections.pages.GetCount-8ff7 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook: description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.site summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the section. Read-only. operationId: groups.sites.onenote.notebooks.sections.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - /groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup: description: >- Provides operations to manage the parentSectionGroup property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.site summary: Microsoft Graph Get parentSectionGroup from groups description: The section group that contains the section. Read-only. operationId: groups.sites.onenote.notebooks.sections.GetParentSectionGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.onenote.notebooks.sections.GetCount-3eb3 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: notebook-id in: path description: The unique identifier of notebook required: true schema: type: string x-ms-docs-key-type: notebook /groups/{group-id}/sites/{site-id}/onenote/notebooks/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.onenote.notebooks.GetCount-4d42 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/onenote/notebooks/getNotebookFromWebUrl: description: Provides operations to call the getNotebookFromWebUrl method. post: tags: - Groups.site summary: Microsoft Graph Invoke action getNotebookFromWebUrl description: >- Retrieve the properties and relationships of a notebook object by using its URL path. The location can be user notebooks on Microsoft 365, group notebooks, or SharePoint site-hosted team notebooks on Microsoft 365. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-1.0 operationId: groups.group.sites.site.onenote.notebooks.getNotebookFromWebUrl requestBody: description: Action parameters content: application/json: schema: type: object properties: webUrl: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.CopyNotebookModel' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/onenote/notebooks/getNotebookFromWebUrl ? /groups/{group-id}/sites/{site-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks}) : description: Provides operations to call the getRecentNotebooks method. get: tags: - Groups.site summary: Microsoft Graph Invoke function getRecentNotebooks description: >- Get a list of recentNotebook instances that have been accessed by the signed-in user. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-1.0 operationId: groups.group.sites.site.onenote.notebooks.getRecentNotebooks parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' responses: 2XX: description: Success content: application/json: schema: type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.recentNotebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: includePersonalNotebooks in: path description: 'Usage: includePersonalNotebooks={includePersonalNotebooks}' required: true schema: type: boolean default: false x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks}) /groups/{group-id}/sites/{site-id}/onenote/operations: description: >- Provides operations to manage the operations property of the microsoft.graph.onenote entity. get: tags: - Groups.site summary: Microsoft Graph Get operations from groups description: >- The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. operationId: groups.sites.onenote.ListOperations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.onenoteOperationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to operations for groups operationId: groups.sites.onenote.CreateOperations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteOperation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/onenote/operations /groups/{group-id}/sites/{site-id}/onenote/operations/{onenoteOperation-id}: description: >- Provides operations to manage the operations property of the microsoft.graph.onenote entity. get: tags: - Groups.site summary: Microsoft Graph Get operations from groups description: >- The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. operationId: groups.sites.onenote.GetOperations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property operations in groups operationId: groups.sites.onenote.UpdateOperations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteOperation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property operations for groups operationId: groups.sites.onenote.DeleteOperations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenoteOperation-id in: path description: The unique identifier of onenoteOperation required: true schema: type: string x-ms-docs-key-type: onenoteOperation x-ms-docs-grouped-path: - /groups/{group-id}/onenote/operations/{onenoteOperation-id} /groups/{group-id}/sites/{site-id}/onenote/operations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.onenote.operations.GetCount-c658 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/onenote/pages: description: >- Provides operations to manage the pages property of the microsoft.graph.onenote entity. get: tags: - Groups.site summary: Microsoft Graph Get pages from groups description: >- The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.sites.onenote.ListPages parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.onenotePageCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to pages for groups operationId: groups.sites.onenote.CreatePages requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/onenote/pages /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}: description: >- Provides operations to manage the pages property of the microsoft.graph.onenote entity. get: tags: - Groups.site summary: Microsoft Graph Get pages from groups description: >- The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.sites.onenote.GetPages parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property pages in groups operationId: groups.sites.onenote.UpdatePages requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property pages for groups operationId: groups.sites.onenote.DeletePages parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - /groups/{group-id}/onenote/pages/{onenotePage-id} /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/content: description: Provides operations to manage the media for the group entity. get: tags: - Groups.site summary: Microsoft Graph Get content for the navigation property pages from groups description: The page's HTML content. operationId: groups.sites.onenote.GetPagesContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.site summary: Microsoft Graph Update content for the navigation property pages in groups description: The page's HTML content. operationId: groups.sites.onenote.UpdatePagesContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.site summary: Microsoft Graph Delete content for the navigation property pages in groups description: The page's HTML content. operationId: groups.sites.onenote.DeletePagesContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection: description: Provides operations to call the copyToSection method. post: tags: - Groups.site summary: Microsoft Graph Invoke action copyToSection description: >- Copy a page to a specific section. For copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0 operationId: groups.group.sites.site.onenote.pages.onenotePage.copyToSection requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - /groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent: description: Provides operations to call the onenotePatchContent method. post: tags: - Groups.site summary: Microsoft Graph Invoke action onenotePatchContent operationId: groups.group.sites.site.onenote.pages.onenotePage.onenotePatchContent requestBody: description: Action parameters content: application/json: schema: type: object properties: commands: type: array items: $ref: >- #/components/schemas/microsoft.graph.onenotePatchContentCommand required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - /groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/preview(): description: Provides operations to call the preview method. get: tags: - Groups.site summary: Microsoft Graph Invoke function preview operationId: groups.group.sites.site.onenote.pages.onenotePage.preview responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenotePagePreview' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - /groups/{group-id}/onenote/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook: description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.onenotePage entity. get: tags: - Groups.site summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the page. Read-only. operationId: groups.sites.onenote.pages.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - /groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection: description: >- Provides operations to manage the parentSection property of the microsoft.graph.onenotePage entity. get: tags: - Groups.site summary: Microsoft Graph Get parentSection from groups description: The section that contains the page. Read-only. operationId: groups.sites.onenote.pages.GetParentSection parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - /groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection /groups/{group-id}/sites/{site-id}/onenote/pages/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.onenote.pages.GetCount-5751 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/onenote/resources: description: >- Provides operations to manage the resources property of the microsoft.graph.onenote entity. get: tags: - Groups.site summary: Microsoft Graph Get resources from groups description: >- The image and other file resources in OneNote pages. Getting a resources collection isn't supported, but you can get the binary content of a specific resource. Read-only. Nullable. operationId: groups.sites.onenote.ListResources parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.onenoteResourceCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to resources for groups operationId: groups.sites.onenote.CreateResources requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteResource' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteResource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/onenote/resources /groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}: description: >- Provides operations to manage the resources property of the microsoft.graph.onenote entity. get: tags: - Groups.site summary: Microsoft Graph Get resources from groups description: >- The image and other file resources in OneNote pages. Getting a resources collection isn't supported, but you can get the binary content of a specific resource. Read-only. Nullable. operationId: groups.sites.onenote.GetResources parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteResource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property resources in groups operationId: groups.sites.onenote.UpdateResources requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteResource' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteResource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property resources for groups operationId: groups.sites.onenote.DeleteResources parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenoteResource-id in: path description: The unique identifier of onenoteResource required: true schema: type: string x-ms-docs-key-type: onenoteResource x-ms-docs-grouped-path: - /groups/{group-id}/onenote/resources/{onenoteResource-id} /groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}/content: description: Provides operations to manage the media for the group entity. get: tags: - Groups.site summary: Microsoft Graph Get content for the navigation property resources from groups description: The content stream operationId: groups.sites.onenote.GetResourcesContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.site summary: Microsoft Graph Update content for the navigation property resources in groups description: The content stream operationId: groups.sites.onenote.UpdateResourcesContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteResource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.site summary: Microsoft Graph Delete content for the navigation property resources in groups description: The content stream operationId: groups.sites.onenote.DeleteResourcesContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenoteResource-id in: path description: The unique identifier of onenoteResource required: true schema: type: string x-ms-docs-key-type: onenoteResource /groups/{group-id}/sites/{site-id}/onenote/resources/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.onenote.resources.GetCount-08d2 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/onenote/sectionGroups: description: >- Provides operations to manage the sectionGroups property of the microsoft.graph.onenote entity. get: tags: - Groups.site summary: Microsoft Graph Get sectionGroups from groups description: >- The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.sites.onenote.ListSectionGroups parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.sectionGroupCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to sectionGroups for groups operationId: groups.sites.onenote.CreateSectionGroups requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/onenote/sectionGroups /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}: description: >- Provides operations to manage the sectionGroups property of the microsoft.graph.onenote entity. get: tags: - Groups.site summary: Microsoft Graph Get sectionGroups from groups description: >- The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.sites.onenote.GetSectionGroups parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property sectionGroups in groups operationId: groups.sites.onenote.UpdateSectionGroups requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property sectionGroups for groups operationId: groups.sites.onenote.DeleteSectionGroups parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id} /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook: description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.site summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the section group. Read-only. operationId: groups.sites.onenote.sectionGroups.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup: description: >- Provides operations to manage the parentSectionGroup property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.site summary: Microsoft Graph Get parentSectionGroup from groups description: The section group that contains the section group. Read-only. operationId: groups.sites.onenote.sectionGroups.GetParentSectionGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups: description: >- Provides operations to manage the sectionGroups property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.site summary: Microsoft Graph Get sectionGroups from groups description: The section groups in the section. Read-only. Nullable. operationId: groups.sites.onenote.sectionGroups.ListSectionGroups parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.sectionGroupCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups - /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1}: description: >- Provides operations to manage the sectionGroups property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.site summary: Microsoft Graph Get sectionGroups from groups description: The section groups in the section. Read-only. Nullable. operationId: groups.sites.onenote.sectionGroups.GetSectionGroups parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: sectionGroup-id1 in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1} - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/{sectionGroup-id1} /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.onenote.sectionGroups.sectionGroups.GetCount-c957 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections: description: >- Provides operations to manage the sections property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.site summary: Microsoft Graph Get sections from groups description: The sections in the section group. Read-only. Nullable. operationId: groups.sites.onenote.sectionGroups.ListSections parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.onenoteSectionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to sections for groups operationId: groups.sites.onenote.sectionGroups.CreateSections requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections - /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}: description: >- Provides operations to manage the sections property of the microsoft.graph.sectionGroup entity. get: tags: - Groups.site summary: Microsoft Graph Get sections from groups description: The sections in the section group. Read-only. Nullable. operationId: groups.sites.onenote.sectionGroups.GetSections parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property sections in groups operationId: groups.sites.onenote.sectionGroups.UpdateSections requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property sections for groups operationId: groups.sites.onenote.sectionGroups.DeleteSections parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id} - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id} /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook: description: Provides operations to call the copyToNotebook method. post: tags: - Groups.site summary: Microsoft Graph Invoke action copyToNotebook description: >- For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0 operationId: >- groups.group.sites.site.onenote.sectionGroups.sectionGroup.sections.onenoteSection.copyToNotebook requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true renameAs: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - /groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup: description: Provides operations to call the copyToSectionGroup method. post: tags: - Groups.site summary: Microsoft Graph Invoke action copyToSectionGroup description: >- For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0 operationId: >- groups.group.sites.site.onenote.sectionGroups.sectionGroup.sections.onenoteSection.copyToSectionGroup requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true renameAs: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages: description: >- Provides operations to manage the pages property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.site summary: Microsoft Graph Get pages from groups description: The collection of pages in the section. Read-only. Nullable. operationId: groups.sites.onenote.sectionGroups.sections.ListPages parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.onenotePageCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to pages for groups operationId: groups.sites.onenote.sectionGroups.sections.CreatePages requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages ? /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} : description: >- Provides operations to manage the pages property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.site summary: Microsoft Graph Get pages from groups description: The collection of pages in the section. Read-only. Nullable. operationId: groups.sites.onenote.sectionGroups.sections.GetPages parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property pages in groups operationId: groups.sites.onenote.sectionGroups.sections.UpdatePages requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property pages for groups operationId: groups.sites.onenote.sectionGroups.sections.DeletePages parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id} ? /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content : description: Provides operations to manage the media for the group entity. get: tags: - Groups.site summary: Microsoft Graph Get content for the navigation property pages from groups description: The page's HTML content. operationId: groups.sites.onenote.sectionGroups.sections.GetPagesContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.site summary: Microsoft Graph Update content for the navigation property pages in groups description: The page's HTML content. operationId: groups.sites.onenote.sectionGroups.sections.UpdatePagesContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.site summary: Microsoft Graph Delete content for the navigation property pages in groups description: The page's HTML content. operationId: groups.sites.onenote.sectionGroups.sections.DeletePagesContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage ? /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection : description: Provides operations to call the copyToSection method. post: tags: - Groups.site summary: Microsoft Graph Invoke action copyToSection description: >- Copy a page to a specific section. For copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0 operationId: >- groups.group.sites.site.onenote.sectionGroups.sectionGroup.sections.onenoteSection.pages.onenotePage.copyToSection requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - /groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection ? /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent : description: Provides operations to call the onenotePatchContent method. post: tags: - Groups.site summary: Microsoft Graph Invoke action onenotePatchContent operationId: >- groups.group.sites.site.onenote.sectionGroups.sectionGroup.sections.onenoteSection.pages.onenotePage.onenotePatchContent requestBody: description: Action parameters content: application/json: schema: type: object properties: commands: type: array items: $ref: >- #/components/schemas/microsoft.graph.onenotePatchContentCommand required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - /groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent ? /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() : description: Provides operations to call the preview method. get: tags: - Groups.site summary: Microsoft Graph Invoke function preview operationId: >- groups.group.sites.site.onenote.sectionGroups.sectionGroup.sections.onenoteSection.pages.onenotePage.preview responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenotePagePreview' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - /groups/{group-id}/onenote/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() ? /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook : description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.onenotePage entity. get: tags: - Groups.site summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the page. Read-only. operationId: groups.sites.onenote.sectionGroups.sections.pages.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - /groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook ? /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection : description: >- Provides operations to manage the parentSection property of the microsoft.graph.onenotePage entity. get: tags: - Groups.site summary: Microsoft Graph Get parentSection from groups description: The section that contains the page. Read-only. operationId: groups.sites.onenote.sectionGroups.sections.pages.GetParentSection parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - /groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.onenote.sectionGroups.sections.pages.GetCount-f260 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook: description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.site summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the section. Read-only. operationId: groups.sites.onenote.sectionGroups.sections.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - /groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup: description: >- Provides operations to manage the parentSectionGroup property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.site summary: Microsoft Graph Get parentSectionGroup from groups description: The section group that contains the section. Read-only. operationId: groups.sites.onenote.sectionGroups.sections.GetParentSectionGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.onenote.sectionGroups.sections.GetCount-60a8 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: sectionGroup-id in: path description: The unique identifier of sectionGroup required: true schema: type: string x-ms-docs-key-type: sectionGroup /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.onenote.sectionGroups.GetCount-c957 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/onenote/sections: description: >- Provides operations to manage the sections property of the microsoft.graph.onenote entity. get: tags: - Groups.site summary: Microsoft Graph Get sections from groups description: >- The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.sites.onenote.ListSections parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.onenoteSectionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to sections for groups operationId: groups.sites.onenote.CreateSections requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/onenote/sections /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}: description: >- Provides operations to manage the sections property of the microsoft.graph.onenote entity. get: tags: - Groups.site summary: Microsoft Graph Get sections from groups description: >- The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. operationId: groups.sites.onenote.GetSections parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property sections in groups operationId: groups.sites.onenote.UpdateSections requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property sections for groups operationId: groups.sites.onenote.DeleteSections parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - /groups/{group-id}/onenote/sections/{onenoteSection-id} /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook: description: Provides operations to call the copyToNotebook method. post: tags: - Groups.site summary: Microsoft Graph Invoke action copyToNotebook description: >- For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0 operationId: groups.group.sites.site.onenote.sections.onenoteSection.copyToNotebook requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true renameAs: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - /groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup: description: Provides operations to call the copyToSectionGroup method. post: tags: - Groups.site summary: Microsoft Graph Invoke action copyToSectionGroup description: >- For Copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0 operationId: >- groups.group.sites.site.onenote.sections.onenoteSection.copyToSectionGroup requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true renameAs: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages: description: >- Provides operations to manage the pages property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.site summary: Microsoft Graph Get pages from groups description: The collection of pages in the section. Read-only. Nullable. operationId: groups.sites.onenote.sections.ListPages parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.onenotePageCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to pages for groups operationId: groups.sites.onenote.sections.CreatePages requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}: description: >- Provides operations to manage the pages property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.site summary: Microsoft Graph Get pages from groups description: The collection of pages in the section. Read-only. Nullable. operationId: groups.sites.onenote.sections.GetPages parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property pages in groups operationId: groups.sites.onenote.sections.UpdatePages requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property pages for groups operationId: groups.sites.onenote.sections.DeletePages parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id} /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content: description: Provides operations to manage the media for the group entity. get: tags: - Groups.site summary: Microsoft Graph Get content for the navigation property pages from groups description: The page's HTML content. operationId: groups.sites.onenote.sections.GetPagesContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.site summary: Microsoft Graph Update content for the navigation property pages in groups description: The page's HTML content. operationId: groups.sites.onenote.sections.UpdatePagesContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.site summary: Microsoft Graph Delete content for the navigation property pages in groups description: The page's HTML content. operationId: groups.sites.onenote.sections.DeletePagesContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection: description: Provides operations to call the copyToSection method. post: tags: - Groups.site summary: Microsoft Graph Invoke action copyToSection description: >- Copy a page to a specific section. For copy operations, you follow an asynchronous calling pattern: First call the Copy action, and then poll the operation endpoint for the result. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0 operationId: >- groups.group.sites.site.onenote.sections.onenoteSection.pages.onenotePage.copyToSection requestBody: description: Action parameters content: application/json: schema: type: object properties: id: type: string nullable: true groupId: type: string nullable: true siteCollectionId: type: string nullable: true siteId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - /groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent: description: Provides operations to call the onenotePatchContent method. post: tags: - Groups.site summary: Microsoft Graph Invoke action onenotePatchContent operationId: >- groups.group.sites.site.onenote.sections.onenoteSection.pages.onenotePage.onenotePatchContent requestBody: description: Action parameters content: application/json: schema: type: object properties: commands: type: array items: $ref: >- #/components/schemas/microsoft.graph.onenotePatchContentCommand required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - /groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview(): description: Provides operations to call the preview method. get: tags: - Groups.site summary: Microsoft Graph Invoke function preview operationId: >- groups.group.sites.site.onenote.sections.onenoteSection.pages.onenotePage.preview responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenotePagePreview' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - /groups/{group-id}/onenote/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/preview() - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview() /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook: description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.onenotePage entity. get: tags: - Groups.site summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the page. Read-only. operationId: groups.sites.onenote.sections.pages.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - /groups/{group-id}/onenote/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection: description: >- Provides operations to manage the parentSection property of the microsoft.graph.onenotePage entity. get: tags: - Groups.site summary: Microsoft Graph Get parentSection from groups description: The section that contains the page. Read-only. operationId: groups.sites.onenote.sections.pages.GetParentSection parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenoteSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection - name: onenotePage-id in: path description: The unique identifier of onenotePage required: true schema: type: string x-ms-docs-key-type: onenotePage x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - /groups/{group-id}/onenote/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.onenote.sections.pages.GetCount-859e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook: description: >- Provides operations to manage the parentNotebook property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.site summary: Microsoft Graph Get parentNotebook from groups description: The notebook that contains the section. Read-only. operationId: groups.sites.onenote.sections.GetParentNotebook parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - /groups/{group-id}/onenote/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook /groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup: description: >- Provides operations to manage the parentSectionGroup property of the microsoft.graph.onenoteSection entity. get: tags: - Groups.site summary: Microsoft Graph Get parentSectionGroup from groups description: The section group that contains the section. Read-only. operationId: groups.sites.onenote.sections.GetParentSectionGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sectionGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: onenoteSection-id in: path description: The unique identifier of onenoteSection required: true schema: type: string x-ms-docs-key-type: onenoteSection x-ms-docs-grouped-path: - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup - >- /groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup /groups/{group-id}/sites/{site-id}/onenote/sections/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.onenote.sections.GetCount-361f parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/operations: description: >- Provides operations to manage the operations property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get operations from groups description: The collection of long-running operations on the site. operationId: groups.sites.ListOperations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.richLongRunningOperationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to operations for groups operationId: groups.sites.CreateOperations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/operations /groups/{group-id}/sites/{site-id}/operations/{richLongRunningOperation-id}: description: >- Provides operations to manage the operations property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get operations from groups description: The collection of long-running operations on the site. operationId: groups.sites.GetOperations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property operations in groups operationId: groups.sites.UpdateOperations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property operations for groups operationId: groups.sites.DeleteOperations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: richLongRunningOperation-id in: path description: The unique identifier of richLongRunningOperation required: true schema: type: string x-ms-docs-key-type: richLongRunningOperation /groups/{group-id}/sites/{site-id}/operations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.operations.GetCount-3fe8 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/pages: description: >- Provides operations to manage the pages property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get pages from groups description: The collection of pages in the baseSitePages list in this site. operationId: groups.sites.ListPages parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.baseSitePageCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to pages for groups operationId: groups.sites.CreatePages requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.baseSitePage' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.baseSitePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/pages /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}: description: >- Provides operations to manage the pages property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get pages from groups description: The collection of pages in the baseSitePages list in this site. operationId: groups.sites.GetPages parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.baseSitePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property pages in groups operationId: groups.sites.UpdatePages requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.baseSitePage' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.baseSitePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property pages for groups operationId: groups.sites.DeletePages parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser: description: >- Provides operations to manage the createdByUser property of the microsoft.graph.baseItem entity. get: tags: - Groups.site summary: Microsoft Graph Get createdByUser from groups description: Identity of the user who created the item. Read-only. operationId: groups.sites.pages.GetCreatedByUser parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.user' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/createdByUser - /groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/createdByUser - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/createdByUser /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings: get: tags: - Groups.site summary: Microsoft Graph Get mailboxSettings property value description: >- Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. operationId: groups.sites.pages.createdByUser.GetMailboxSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' patch: tags: - Groups.site summary: Microsoft Graph Update property mailboxSettings value. operationId: groups.sites.pages.createdByUser.UpdateMailboxSettings requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors: get: tags: - Groups.site summary: Microsoft Graph Get serviceProvisioningErrors property value description: >- Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). operationId: groups.sites.pages.createdByUser.ListServiceProvisioningErrors parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.serviceProvisioningErrorCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.pages.createdByUser.ServiceProvisioningErrors.GetCount-c713 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser: description: >- Provides operations to manage the lastModifiedByUser property of the microsoft.graph.baseItem entity. get: tags: - Groups.site summary: Microsoft Graph Get lastModifiedByUser from groups description: Identity of the user who last modified the item. Read-only. operationId: groups.sites.pages.GetLastModifiedByUser parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.user' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser - /groups/{group-id}/sites/{site-id}/lists/{list-id}/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/lastModifiedByUser /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings: get: tags: - Groups.site summary: Microsoft Graph Get mailboxSettings property value description: >- Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. operationId: groups.sites.pages.lastModifiedByUser.GetMailboxSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' patch: tags: - Groups.site summary: Microsoft Graph Update property mailboxSettings value. operationId: groups.sites.pages.lastModifiedByUser.UpdateMailboxSettings requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors: get: tags: - Groups.site summary: Microsoft Graph Get serviceProvisioningErrors property value description: >- Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). operationId: groups.sites.pages.lastModifiedByUser.ListServiceProvisioningErrors parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.serviceProvisioningErrorCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.pages.lastModifiedByUser.ServiceProvisioningErrors.GetCount-206a parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage: description: Casts the previous resource to sitePage. get: tags: - Groups.site summary: >- Microsoft Graph Get the item of type microsoft.graph.baseSitePage as microsoft.graph.sitePage operationId: groups.sites.GetPages.AsSitePage parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sitePage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout: description: >- Provides operations to manage the canvasLayout property of the microsoft.graph.sitePage entity. get: tags: - Groups.site summary: Microsoft Graph Get canvasLayout from groups description: >- Indicates the layout of the content in a given SharePoint page, including horizontal sections and vertical sections. operationId: groups.sites.pages.AsSitePage.GetCanvasLayout parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.canvasLayout' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property canvasLayout in groups operationId: groups.sites.pages.AsSitePage.UpdateCanvasLayout requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.canvasLayout' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.canvasLayout' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property canvasLayout for groups operationId: groups.sites.pages.AsSitePage.DeleteCanvasLayout parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections: description: >- Provides operations to manage the horizontalSections property of the microsoft.graph.canvasLayout entity. get: tags: - Groups.site summary: Microsoft Graph Get horizontalSections from groups description: Collection of horizontal sections on the SharePoint page. operationId: groups.sites.pages.AsSitePage.canvasLayout.ListHorizontalSections parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.horizontalSectionCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to horizontalSections for groups operationId: groups.sites.pages.AsSitePage.canvasLayout.CreateHorizontalSections requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.horizontalSection' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.horizontalSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage ? /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id} : description: >- Provides operations to manage the horizontalSections property of the microsoft.graph.canvasLayout entity. get: tags: - Groups.site summary: Microsoft Graph Get horizontalSections from groups description: Collection of horizontal sections on the SharePoint page. operationId: groups.sites.pages.AsSitePage.canvasLayout.GetHorizontalSections parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.horizontalSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property horizontalSections in groups operationId: groups.sites.pages.AsSitePage.canvasLayout.UpdateHorizontalSections requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.horizontalSection' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.horizontalSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property horizontalSections for groups operationId: groups.sites.pages.AsSitePage.canvasLayout.DeleteHorizontalSections parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage - name: horizontalSection-id in: path description: The unique identifier of horizontalSection required: true schema: type: string x-ms-docs-key-type: horizontalSection ? /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns : description: >- Provides operations to manage the columns property of the microsoft.graph.horizontalSection entity. get: tags: - Groups.site summary: Microsoft Graph Get columns from groups description: The set of vertical columns in this section. operationId: >- groups.sites.pages.AsSitePage.canvasLayout.horizontalSections.ListColumns parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.horizontalSectionColumnCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to columns for groups operationId: >- groups.sites.pages.AsSitePage.canvasLayout.horizontalSections.CreateColumns requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.horizontalSectionColumn' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.horizontalSectionColumn' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage - name: horizontalSection-id in: path description: The unique identifier of horizontalSection required: true schema: type: string x-ms-docs-key-type: horizontalSection ? /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id} : description: >- Provides operations to manage the columns property of the microsoft.graph.horizontalSection entity. get: tags: - Groups.site summary: Microsoft Graph Get columns from groups description: The set of vertical columns in this section. operationId: groups.sites.pages.AsSitePage.canvasLayout.horizontalSections.GetColumns parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.horizontalSectionColumn' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property columns in groups operationId: >- groups.sites.pages.AsSitePage.canvasLayout.horizontalSections.UpdateColumns requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.horizontalSectionColumn' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.horizontalSectionColumn' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property columns for groups operationId: >- groups.sites.pages.AsSitePage.canvasLayout.horizontalSections.DeleteColumns parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage - name: horizontalSection-id in: path description: The unique identifier of horizontalSection required: true schema: type: string x-ms-docs-key-type: horizontalSection - name: horizontalSectionColumn-id in: path description: The unique identifier of horizontalSectionColumn required: true schema: type: string x-ms-docs-key-type: horizontalSectionColumn ? /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts : description: >- Provides operations to manage the webparts property of the microsoft.graph.horizontalSectionColumn entity. get: tags: - Groups.site summary: Microsoft Graph Get webparts from groups description: The collection of WebParts in this column. operationId: >- groups.sites.pages.AsSitePage.canvasLayout.horizontalSections.columns.ListWebparts parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.webPartCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to webparts for groups operationId: >- groups.sites.pages.AsSitePage.canvasLayout.horizontalSections.columns.CreateWebparts requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.webPart' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.webPart' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage - name: horizontalSection-id in: path description: The unique identifier of horizontalSection required: true schema: type: string x-ms-docs-key-type: horizontalSection - name: horizontalSectionColumn-id in: path description: The unique identifier of horizontalSectionColumn required: true schema: type: string x-ms-docs-key-type: horizontalSectionColumn ? /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id} : description: >- Provides operations to manage the webparts property of the microsoft.graph.horizontalSectionColumn entity. get: tags: - Groups.site summary: Microsoft Graph Get webparts from groups description: The collection of WebParts in this column. operationId: >- groups.sites.pages.AsSitePage.canvasLayout.horizontalSections.columns.GetWebparts parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.webPart' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property webparts in groups operationId: >- groups.sites.pages.AsSitePage.canvasLayout.horizontalSections.columns.UpdateWebparts requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.webPart' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.webPart' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property webparts for groups operationId: >- groups.sites.pages.AsSitePage.canvasLayout.horizontalSections.columns.DeleteWebparts parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage - name: horizontalSection-id in: path description: The unique identifier of horizontalSection required: true schema: type: string x-ms-docs-key-type: horizontalSection - name: horizontalSectionColumn-id in: path description: The unique identifier of horizontalSectionColumn required: true schema: type: string x-ms-docs-key-type: horizontalSectionColumn - name: webPart-id in: path description: The unique identifier of webPart required: true schema: type: string x-ms-docs-key-type: webPart ? /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}/getPositionOfWebPart : description: Provides operations to call the getPositionOfWebPart method. post: tags: - Groups.site summary: Microsoft Graph Invoke action getPositionOfWebPart operationId: >- groups.group.sites.site.pages.baseSitePage.microsoft.graph.sitePage.canvasLayout.horizontalSections.horizontalSection.columns.horizontalSectionColumn.webparts.webPart.getPositionOfWebPart responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.webPartPosition' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage - name: horizontalSection-id in: path description: The unique identifier of horizontalSection required: true schema: type: string x-ms-docs-key-type: horizontalSection - name: horizontalSectionColumn-id in: path description: The unique identifier of horizontalSectionColumn required: true schema: type: string x-ms-docs-key-type: horizontalSectionColumn - name: webPart-id in: path description: The unique identifier of webPart required: true schema: type: string x-ms-docs-key-type: webPart x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/verticalSection/webparts/{webPart-id}/getPositionOfWebPart - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/webParts/{webPart-id}/getPositionOfWebPart ? /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.pages.AsSitePage.canvasLayout.horizontalSections.columns.webparts.GetCount-d720 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage - name: horizontalSection-id in: path description: The unique identifier of horizontalSection required: true schema: type: string x-ms-docs-key-type: horizontalSection - name: horizontalSectionColumn-id in: path description: The unique identifier of horizontalSectionColumn required: true schema: type: string x-ms-docs-key-type: horizontalSectionColumn ? /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.pages.AsSitePage.canvasLayout.horizontalSections.columns.GetCount-8e2b parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage - name: horizontalSection-id in: path description: The unique identifier of horizontalSection required: true schema: type: string x-ms-docs-key-type: horizontalSection /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.pages.AsSitePage.canvasLayout.horizontalSections.GetCount-f24e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/verticalSection: description: >- Provides operations to manage the verticalSection property of the microsoft.graph.canvasLayout entity. get: tags: - Groups.site summary: Microsoft Graph Get verticalSection from groups description: Vertical section on the SharePoint page. operationId: groups.sites.pages.AsSitePage.canvasLayout.GetVerticalSection parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.verticalSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property verticalSection in groups operationId: groups.sites.pages.AsSitePage.canvasLayout.UpdateVerticalSection requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.verticalSection' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.verticalSection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property verticalSection for groups operationId: groups.sites.pages.AsSitePage.canvasLayout.DeleteVerticalSection parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/verticalSection/webparts: description: >- Provides operations to manage the webparts property of the microsoft.graph.verticalSection entity. get: tags: - Groups.site summary: Microsoft Graph Get webparts from groups description: The set of web parts in this section. operationId: groups.sites.pages.AsSitePage.canvasLayout.verticalSection.ListWebparts parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.webPartCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to webparts for groups operationId: >- groups.sites.pages.AsSitePage.canvasLayout.verticalSection.CreateWebparts requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.webPart' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.webPart' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage ? /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/verticalSection/webparts/{webPart-id} : description: >- Provides operations to manage the webparts property of the microsoft.graph.verticalSection entity. get: tags: - Groups.site summary: Microsoft Graph Get webparts from groups description: The set of web parts in this section. operationId: groups.sites.pages.AsSitePage.canvasLayout.verticalSection.GetWebparts parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.webPart' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property webparts in groups operationId: >- groups.sites.pages.AsSitePage.canvasLayout.verticalSection.UpdateWebparts requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.webPart' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.webPart' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property webparts for groups operationId: >- groups.sites.pages.AsSitePage.canvasLayout.verticalSection.DeleteWebparts parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage - name: webPart-id in: path description: The unique identifier of webPart required: true schema: type: string x-ms-docs-key-type: webPart ? /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/verticalSection/webparts/{webPart-id}/getPositionOfWebPart : description: Provides operations to call the getPositionOfWebPart method. post: tags: - Groups.site summary: Microsoft Graph Invoke action getPositionOfWebPart operationId: >- groups.group.sites.site.pages.baseSitePage.microsoft.graph.sitePage.canvasLayout.verticalSection.webparts.webPart.getPositionOfWebPart responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.webPartPosition' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage - name: webPart-id in: path description: The unique identifier of webPart required: true schema: type: string x-ms-docs-key-type: webPart x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}/getPositionOfWebPart - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/webParts/{webPart-id}/getPositionOfWebPart /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/verticalSection/webparts/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.pages.AsSitePage.canvasLayout.verticalSection.webparts.GetCount-1669 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/createdByUser: description: >- Provides operations to manage the createdByUser property of the microsoft.graph.baseItem entity. get: tags: - Groups.site summary: Microsoft Graph Get createdByUser from groups description: Identity of the user who created the item. Read-only. operationId: groups.sites.pages.AsSitePage.GetCreatedByUser parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.user' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/createdByUser - /groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/createdByUser - /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/createdByUser/mailboxSettings: get: tags: - Groups.site summary: Microsoft Graph Get mailboxSettings property value description: >- Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. operationId: groups.sites.pages.AsSitePage.createdByUser.GetMailboxSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' patch: tags: - Groups.site summary: Microsoft Graph Update property mailboxSettings value. operationId: groups.sites.pages.AsSitePage.createdByUser.UpdateMailboxSettings requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/createdByUser/serviceProvisioningErrors: get: tags: - Groups.site summary: Microsoft Graph Get serviceProvisioningErrors property value description: >- Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). operationId: >- groups.sites.pages.AsSitePage.createdByUser.ListServiceProvisioningErrors parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.serviceProvisioningErrorCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/createdByUser/serviceProvisioningErrors/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.pages.AsSitePage.createdByUser.ServiceProvisioningErrors.GetCount-e9fc parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/lastModifiedByUser: description: >- Provides operations to manage the lastModifiedByUser property of the microsoft.graph.baseItem entity. get: tags: - Groups.site summary: Microsoft Graph Get lastModifiedByUser from groups description: Identity of the user who last modified the item. Read-only. operationId: groups.sites.pages.AsSitePage.GetLastModifiedByUser parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.user' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser - /groups/{group-id}/sites/{site-id}/lists/{list-id}/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lastModifiedByUser - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/lastModifiedByUser/mailboxSettings: get: tags: - Groups.site summary: Microsoft Graph Get mailboxSettings property value description: >- Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. operationId: groups.sites.pages.AsSitePage.lastModifiedByUser.GetMailboxSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' patch: tags: - Groups.site summary: Microsoft Graph Update property mailboxSettings value. operationId: groups.sites.pages.AsSitePage.lastModifiedByUser.UpdateMailboxSettings requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/lastModifiedByUser/serviceProvisioningErrors: get: tags: - Groups.site summary: Microsoft Graph Get serviceProvisioningErrors property value description: >- Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). operationId: >- groups.sites.pages.AsSitePage.lastModifiedByUser.ListServiceProvisioningErrors parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.serviceProvisioningErrorCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage ? /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/lastModifiedByUser/serviceProvisioningErrors/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.pages.AsSitePage.lastModifiedByUser.ServiceProvisioningErrors.GetCount-95e5 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/webParts: description: >- Provides operations to manage the webParts property of the microsoft.graph.sitePage entity. get: tags: - Groups.site summary: Microsoft Graph Get webParts from groups description: Collection of webparts on the SharePoint page. operationId: groups.sites.pages.AsSitePage.ListWebParts parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.webPartCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to webParts for groups operationId: groups.sites.pages.AsSitePage.CreateWebParts requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.webPart' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.webPart' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/webParts/{webPart-id}: description: >- Provides operations to manage the webParts property of the microsoft.graph.sitePage entity. get: tags: - Groups.site summary: Microsoft Graph Get webParts from groups description: Collection of webparts on the SharePoint page. operationId: groups.sites.pages.AsSitePage.GetWebParts parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.webPart' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property webParts in groups operationId: groups.sites.pages.AsSitePage.UpdateWebParts requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.webPart' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.webPart' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property webParts for groups operationId: groups.sites.pages.AsSitePage.DeleteWebParts parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage - name: webPart-id in: path description: The unique identifier of webPart required: true schema: type: string x-ms-docs-key-type: webPart /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/webParts/{webPart-id}/getPositionOfWebPart: description: Provides operations to call the getPositionOfWebPart method. post: tags: - Groups.site summary: Microsoft Graph Invoke action getPositionOfWebPart operationId: >- groups.group.sites.site.pages.baseSitePage.microsoft.graph.sitePage.webParts.webPart.getPositionOfWebPart responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.webPartPosition' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage - name: webPart-id in: path description: The unique identifier of webPart required: true schema: type: string x-ms-docs-key-type: webPart x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}/getPositionOfWebPart - >- /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/canvasLayout/verticalSection/webparts/{webPart-id}/getPositionOfWebPart /groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/graph.sitePage/webParts/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.pages.AsSitePage.webParts.GetCount-8625 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: baseSitePage-id in: path description: The unique identifier of baseSitePage required: true schema: type: string x-ms-docs-key-type: baseSitePage /groups/{group-id}/sites/{site-id}/pages/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.pages.GetCount-0d48 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/pages/graph.sitePage: description: Casts the previous resource to sitePage. get: tags: - Groups.site summary: >- Microsoft Graph Get the items of type microsoft.graph.sitePage in the microsoft.graph.baseSitePage collection operationId: groups.sites.ListPages.AsSitePage parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.sitePageCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/pages/graph.sitePage/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.Pages.GetCount.AsSitePage-c27e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/permissions: description: >- Provides operations to manage the permissions property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get permissions from groups description: The permissions associated with the site. Nullable. operationId: groups.sites.ListPermissions parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.permissionCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to permissions for groups operationId: groups.sites.CreatePermissions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.permission' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.permission' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/permissions /groups/{group-id}/sites/{site-id}/permissions/{permission-id}: description: >- Provides operations to manage the permissions property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get permissions from groups description: The permissions associated with the site. Nullable. operationId: groups.sites.GetPermissions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.permission' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property permissions in groups operationId: groups.sites.UpdatePermissions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.permission' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.permission' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property permissions for groups operationId: groups.sites.DeletePermissions parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: permission-id in: path description: The unique identifier of permission required: true schema: type: string x-ms-docs-key-type: permission /groups/{group-id}/sites/{site-id}/permissions/{permission-id}/grant: description: Provides operations to call the grant method. post: tags: - Groups.site summary: Microsoft Graph Invoke action grant description: Grant users access to a link represented by a permission. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0 operationId: groups.group.sites.site.permissions.permission.grant requestBody: description: Action parameters content: application/json: schema: type: object properties: roles: type: array items: type: string nullable: true recipients: type: array items: $ref: '#/components/schemas/microsoft.graph.driveRecipient' required: true responses: 2XX: description: Success content: application/json: schema: title: Collection of permission type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.permission' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: permission-id in: path description: The unique identifier of permission required: true schema: type: string x-ms-docs-key-type: permission /groups/{group-id}/sites/{site-id}/permissions/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.permissions.GetCount-a797 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/sites: description: >- Provides operations to manage the sites property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get sites from groups description: The collection of the sub-sites under this site. operationId: groups.sites.ListSites parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.siteCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/sites /groups/{group-id}/sites/{site-id}/sites/{site-id1}: description: >- Provides operations to manage the sites property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get sites from groups description: The collection of the sub-sites under this site. operationId: groups.sites.GetSites parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.site' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: site-id1 in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/sites/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.sites.GetCount-9a08 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/termStore: description: >- Provides operations to manage the termStore property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get termStore from groups description: The default termStore under this site. operationId: groups.sites.GetTermStore parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.store' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property termStore in groups operationId: groups.sites.UpdateTermStore requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.store' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.store' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property termStore for groups operationId: groups.sites.DeleteTermStore parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/termStore /groups/{group-id}/sites/{site-id}/termStore/groups: description: >- Provides operations to manage the groups property of the microsoft.graph.termStore.store entity. get: tags: - Groups.site summary: Microsoft Graph Get groups from groups description: Collection of all groups available in the term store. operationId: groups.sites.termStore.ListGroups parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.groupCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to groups for groups operationId: groups.sites.termStore.CreateGroups requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}: description: >- Provides operations to manage the groups property of the microsoft.graph.termStore.store entity. get: tags: - Groups.site summary: Microsoft Graph Get groups from groups description: Collection of all groups available in the term store. operationId: groups.sites.termStore.GetGroups parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property groups in groups operationId: groups.sites.termStore.UpdateGroups requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property groups for groups operationId: groups.sites.termStore.DeleteGroups parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1} /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets: description: >- Provides operations to manage the sets property of the microsoft.graph.termStore.group entity. get: tags: - Groups.site summary: Microsoft Graph Get sets from groups description: All sets under the group in a term [store]. operationId: groups.sites.termStore.groups.ListSets parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.setCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to sets for groups operationId: groups.sites.termStore.groups.CreateSets requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}: description: >- Provides operations to manage the sets property of the microsoft.graph.termStore.group entity. get: tags: - Groups.site summary: Microsoft Graph Get sets from groups description: All sets under the group in a term [store]. operationId: groups.sites.termStore.groups.GetSets parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property sets in groups operationId: groups.sites.termStore.groups.UpdateSets requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property sets for groups operationId: groups.sites.termStore.groups.DeleteSets parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1} /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children terms of set in term [store]. operationId: groups.sites.termStore.groups.sets.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to children for groups operationId: groups.sites.termStore.groups.sets.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children terms of set in term [store]. operationId: groups.sites.termStore.groups.sets.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property children in groups operationId: groups.sites.termStore.groups.sets.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property children for groups operationId: groups.sites.termStore.groups.sets.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id} /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStore.groups.sets.children.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to children for groups operationId: groups.sites.termStore.groups.sets.children.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStore.groups.sets.children.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property children in groups operationId: groups.sites.termStore.groups.sets.children.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property children for groups operationId: groups.sites.termStore.groups.sets.children.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} ? /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.groups.sets.children.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStore.groups.sets.children.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations ? /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.groups.sets.children.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStore.groups.sets.children.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStore.groups.sets.children.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: >- groups.sites.termStore.groups.sets.children.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStore.groups.sets.children.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStore.groups.sets.children.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm ? /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.termStore.groups.sets.children.children.relations.GetCount-6f37 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStore.groups.sets.children.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.groups.sets.children.children.GetCount-74e2 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.groups.sets.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStore.groups.sets.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.groups.sets.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStore.groups.sets.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStore.groups.sets.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStore.groups.sets.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStore.groups.sets.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStore.groups.sets.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.groups.sets.children.relations.GetCount-6f37 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStore.groups.sets.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.groups.sets.children.GetCount-74e2 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/parentGroup: description: >- Provides operations to manage the parentGroup property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get parentGroup from groups description: The parent [group] that contains the set. operationId: groups.sites.termStore.groups.sets.GetParentGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property parentGroup in groups operationId: groups.sites.termStore.groups.sets.UpdateParentGroup requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property parentGroup for groups operationId: groups.sites.termStore.groups.sets.DeleteParentGroup parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/parentGroup - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: Indicates which terms have been pinned or reused directly under the set. operationId: groups.sites.termStore.groups.sets.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStore.groups.sets.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: Indicates which terms have been pinned or reused directly under the set. operationId: groups.sites.termStore.groups.sets.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStore.groups.sets.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStore.groups.sets.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id} /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm: description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStore.groups.sets.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStore.groups.sets.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm: description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStore.groups.sets.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.groups.sets.relations.GetCount-0ded parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms: description: >- Provides operations to manage the terms property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get terms from groups description: All the terms under the set. operationId: groups.sites.termStore.groups.sets.ListTerms parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to terms for groups operationId: groups.sites.termStore.groups.sets.CreateTerms requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}: description: >- Provides operations to manage the terms property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get terms from groups description: All the terms under the set. operationId: groups.sites.termStore.groups.sets.GetTerms parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property terms in groups operationId: groups.sites.termStore.groups.sets.UpdateTerms requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property terms for groups operationId: groups.sites.termStore.groups.sets.DeleteTerms parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id} /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStore.groups.sets.terms.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to children for groups operationId: groups.sites.termStore.groups.sets.terms.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStore.groups.sets.terms.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property children in groups operationId: groups.sites.termStore.groups.sets.terms.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property children for groups operationId: groups.sites.termStore.groups.sets.terms.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} ? /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.groups.sets.terms.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStore.groups.sets.terms.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations ? /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.groups.sets.terms.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStore.groups.sets.terms.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStore.groups.sets.terms.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStore.groups.sets.terms.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStore.groups.sets.terms.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStore.groups.sets.terms.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm ? /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.termStore.groups.sets.terms.children.relations.GetCount-1c30 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStore.groups.sets.terms.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.groups.sets.terms.children.GetCount-1121 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.groups.sets.terms.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStore.groups.sets.terms.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.groups.sets.terms.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStore.groups.sets.terms.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStore.groups.sets.terms.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStore.groups.sets.terms.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStore.groups.sets.terms.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStore.groups.sets.terms.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.groups.sets.terms.relations.GetCount-5947 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStore.groups.sets.terms.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.groups.sets.terms.GetCount-d756 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.groups.sets.GetCount-4bca parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/sites/{site-id}/termStore/groups/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.groups.GetCount-cc52 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/termStore/sets: description: >- Provides operations to manage the sets property of the microsoft.graph.termStore.store entity. get: tags: - Groups.site summary: Microsoft Graph Get sets from groups description: >- Collection of all sets available in the term store. This relationship can only be used to load a specific term set. operationId: groups.sites.termStore.ListSets parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.setCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to sets for groups operationId: groups.sites.termStore.CreateSets requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}: description: >- Provides operations to manage the sets property of the microsoft.graph.termStore.store entity. get: tags: - Groups.site summary: Microsoft Graph Get sets from groups description: >- Collection of all sets available in the term store. This relationship can only be used to load a specific term set. operationId: groups.sites.termStore.GetSets parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property sets in groups operationId: groups.sites.termStore.UpdateSets requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property sets for groups operationId: groups.sites.termStore.DeleteSets parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id} /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children terms of set in term [store]. operationId: groups.sites.termStore.sets.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to children for groups operationId: groups.sites.termStore.sets.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children terms of set in term [store]. operationId: groups.sites.termStore.sets.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property children in groups operationId: groups.sites.termStore.sets.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property children for groups operationId: groups.sites.termStore.sets.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id} /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStore.sets.children.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to children for groups operationId: groups.sites.termStore.sets.children.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStore.sets.children.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property children in groups operationId: groups.sites.termStore.sets.children.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property children for groups operationId: groups.sites.termStore.sets.children.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.sets.children.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStore.sets.children.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.sets.children.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStore.sets.children.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStore.sets.children.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStore.sets.children.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStore.sets.children.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStore.sets.children.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.sets.children.children.relations.GetCount-6f37 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStore.sets.children.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.sets.children.children.GetCount-74e2 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.sets.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStore.sets.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.sets.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStore.sets.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStore.sets.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm: description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStore.sets.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStore.sets.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm: description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStore.sets.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.sets.children.relations.GetCount-6f37 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStore.sets.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.sets.children.GetCount-74e2 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup: description: >- Provides operations to manage the parentGroup property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get parentGroup from groups description: The parent [group] that contains the set. operationId: groups.sites.termStore.sets.GetParentGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property parentGroup in groups operationId: groups.sites.termStore.sets.UpdateParentGroup requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property parentGroup for groups operationId: groups.sites.termStore.sets.DeleteParentGroup parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/parentGroup - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/parentGroup - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets: description: >- Provides operations to manage the sets property of the microsoft.graph.termStore.group entity. get: tags: - Groups.site summary: Microsoft Graph Get sets from groups description: All sets under the group in a term [store]. operationId: groups.sites.termStore.sets.parentGroup.ListSets parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.setCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to sets for groups operationId: groups.sites.termStore.sets.parentGroup.CreateSets requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}: description: >- Provides operations to manage the sets property of the microsoft.graph.termStore.group entity. get: tags: - Groups.site summary: Microsoft Graph Get sets from groups description: All sets under the group in a term [store]. operationId: groups.sites.termStore.sets.parentGroup.GetSets parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property sets in groups operationId: groups.sites.termStore.sets.parentGroup.UpdateSets requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property sets for groups operationId: groups.sites.termStore.sets.parentGroup.DeleteSets parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1} /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children terms of set in term [store]. operationId: groups.sites.termStore.sets.parentGroup.sets.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to children for groups operationId: groups.sites.termStore.sets.parentGroup.sets.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children terms of set in term [store]. operationId: groups.sites.termStore.sets.parentGroup.sets.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property children in groups operationId: groups.sites.termStore.sets.parentGroup.sets.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property children for groups operationId: groups.sites.termStore.sets.parentGroup.sets.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id} /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStore.sets.parentGroup.sets.children.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to children for groups operationId: groups.sites.termStore.sets.parentGroup.sets.children.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} : description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStore.sets.parentGroup.sets.children.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property children in groups operationId: groups.sites.termStore.sets.parentGroup.sets.children.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property children for groups operationId: groups.sites.termStore.sets.parentGroup.sets.children.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: >- groups.sites.termStore.sets.parentGroup.sets.children.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: >- groups.sites.termStore.sets.parentGroup.sets.children.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: >- groups.sites.termStore.sets.parentGroup.sets.children.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: >- groups.sites.termStore.sets.parentGroup.sets.children.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: >- groups.sites.termStore.sets.parentGroup.sets.children.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: >- groups.sites.termStore.sets.parentGroup.sets.children.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: >- groups.sites.termStore.sets.parentGroup.sets.children.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: >- groups.sites.termStore.sets.parentGroup.sets.children.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.termStore.sets.parentGroup.sets.children.children.relations.GetCount-764f parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStore.sets.parentGroup.sets.children.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.termStore.sets.parentGroup.sets.children.children.GetCount-f5ef parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.sets.parentGroup.sets.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStore.sets.parentGroup.sets.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.sets.parentGroup.sets.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStore.sets.parentGroup.sets.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStore.sets.parentGroup.sets.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: >- groups.sites.termStore.sets.parentGroup.sets.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStore.sets.parentGroup.sets.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: >- groups.sites.termStore.sets.parentGroup.sets.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.termStore.sets.parentGroup.sets.children.relations.GetCount-764f parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStore.sets.parentGroup.sets.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.sets.parentGroup.sets.children.GetCount-f5ef parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: Indicates which terms have been pinned or reused directly under the set. operationId: groups.sites.termStore.sets.parentGroup.sets.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStore.sets.parentGroup.sets.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: Indicates which terms have been pinned or reused directly under the set. operationId: groups.sites.termStore.sets.parentGroup.sets.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStore.sets.parentGroup.sets.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStore.sets.parentGroup.sets.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id} /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm: description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStore.sets.parentGroup.sets.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStore.sets.parentGroup.sets.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm: description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStore.sets.parentGroup.sets.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.sets.parentGroup.sets.relations.GetCount-340c parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms: description: >- Provides operations to manage the terms property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get terms from groups description: All the terms under the set. operationId: groups.sites.termStore.sets.parentGroup.sets.ListTerms parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to terms for groups operationId: groups.sites.termStore.sets.parentGroup.sets.CreateTerms requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}: description: >- Provides operations to manage the terms property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get terms from groups description: All the terms under the set. operationId: groups.sites.termStore.sets.parentGroup.sets.GetTerms parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property terms in groups operationId: groups.sites.termStore.sets.parentGroup.sets.UpdateTerms requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property terms for groups operationId: groups.sites.termStore.sets.parentGroup.sets.DeleteTerms parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id} /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStore.sets.parentGroup.sets.terms.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to children for groups operationId: groups.sites.termStore.sets.parentGroup.sets.terms.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStore.sets.parentGroup.sets.terms.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property children in groups operationId: groups.sites.termStore.sets.parentGroup.sets.terms.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property children for groups operationId: groups.sites.termStore.sets.parentGroup.sets.terms.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: >- groups.sites.termStore.sets.parentGroup.sets.terms.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: >- groups.sites.termStore.sets.parentGroup.sets.terms.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.sets.parentGroup.sets.terms.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: >- groups.sites.termStore.sets.parentGroup.sets.terms.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: >- groups.sites.termStore.sets.parentGroup.sets.terms.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: >- groups.sites.termStore.sets.parentGroup.sets.terms.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: >- groups.sites.termStore.sets.parentGroup.sets.terms.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: >- groups.sites.termStore.sets.parentGroup.sets.terms.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.termStore.sets.parentGroup.sets.terms.children.relations.GetCount-0b7e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStore.sets.parentGroup.sets.terms.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.termStore.sets.parentGroup.sets.terms.children.GetCount-5b79 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.sets.parentGroup.sets.terms.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStore.sets.parentGroup.sets.terms.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.sets.parentGroup.sets.terms.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStore.sets.parentGroup.sets.terms.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStore.sets.parentGroup.sets.terms.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStore.sets.parentGroup.sets.terms.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStore.sets.parentGroup.sets.terms.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStore.sets.parentGroup.sets.terms.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.termStore.sets.parentGroup.sets.terms.relations.GetCount-8176 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStore.sets.parentGroup.sets.terms.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.sets.parentGroup.sets.terms.GetCount-0c41 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.sets.parentGroup.sets.GetCount-a575 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: Indicates which terms have been pinned or reused directly under the set. operationId: groups.sites.termStore.sets.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStore.sets.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: Indicates which terms have been pinned or reused directly under the set. operationId: groups.sites.termStore.sets.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStore.sets.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStore.sets.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id} /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm: description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStore.sets.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStore.sets.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm: description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStore.sets.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.sets.relations.GetCount-0ded parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms: description: >- Provides operations to manage the terms property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get terms from groups description: All the terms under the set. operationId: groups.sites.termStore.sets.ListTerms parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to terms for groups operationId: groups.sites.termStore.sets.CreateTerms requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}: description: >- Provides operations to manage the terms property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get terms from groups description: All the terms under the set. operationId: groups.sites.termStore.sets.GetTerms parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property terms in groups operationId: groups.sites.termStore.sets.UpdateTerms requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property terms for groups operationId: groups.sites.termStore.sets.DeleteTerms parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id} /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStore.sets.terms.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to children for groups operationId: groups.sites.termStore.sets.terms.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStore.sets.terms.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property children in groups operationId: groups.sites.termStore.sets.terms.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property children for groups operationId: groups.sites.termStore.sets.terms.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.sets.terms.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStore.sets.terms.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.sets.terms.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStore.sets.terms.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStore.sets.terms.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStore.sets.terms.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStore.sets.terms.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStore.sets.terms.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.sets.terms.children.relations.GetCount-1c30 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStore.sets.terms.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.sets.terms.children.GetCount-1121 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.sets.terms.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStore.sets.terms.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStore.sets.terms.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStore.sets.terms.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStore.sets.terms.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm: description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStore.sets.terms.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStore.sets.terms.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm: description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStore.sets.terms.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.sets.terms.relations.GetCount-5947 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStore.sets.terms.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.sets.terms.GetCount-d756 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStore/sets/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStore.sets.GetCount-4bca parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/{site-id}/termStores: description: >- Provides operations to manage the termStores property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get termStores from groups description: The collection of termStores under this site. operationId: groups.sites.ListTermStores parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.storeCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to termStores for groups operationId: groups.sites.CreateTermStores requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.store' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.store' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/termStores /groups/{group-id}/sites/{site-id}/termStores/{store-id}: description: >- Provides operations to manage the termStores property of the microsoft.graph.site entity. get: tags: - Groups.site summary: Microsoft Graph Get termStores from groups description: The collection of termStores under this site. operationId: groups.sites.GetTermStores parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.store' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property termStores in groups operationId: groups.sites.UpdateTermStores requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.store' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.store' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property termStores for groups operationId: groups.sites.DeleteTermStores parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups: description: >- Provides operations to manage the groups property of the microsoft.graph.termStore.store entity. get: tags: - Groups.site summary: Microsoft Graph Get groups from groups description: Collection of all groups available in the term store. operationId: groups.sites.termStores.ListGroups parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.groupCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to groups for groups operationId: groups.sites.termStores.CreateGroups requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/termStore/groups /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}: description: >- Provides operations to manage the groups property of the microsoft.graph.termStore.store entity. get: tags: - Groups.site summary: Microsoft Graph Get groups from groups description: Collection of all groups available in the term store. operationId: groups.sites.termStores.GetGroups parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property groups in groups operationId: groups.sites.termStores.UpdateGroups requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property groups for groups operationId: groups.sites.termStores.DeleteGroups parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1} /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets: description: >- Provides operations to manage the sets property of the microsoft.graph.termStore.group entity. get: tags: - Groups.site summary: Microsoft Graph Get sets from groups description: All sets under the group in a term [store]. operationId: groups.sites.termStores.groups.ListSets parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.setCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to sets for groups operationId: groups.sites.termStores.groups.CreateSets requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}: description: >- Provides operations to manage the sets property of the microsoft.graph.termStore.group entity. get: tags: - Groups.site summary: Microsoft Graph Get sets from groups description: All sets under the group in a term [store]. operationId: groups.sites.termStores.groups.GetSets parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property sets in groups operationId: groups.sites.termStores.groups.UpdateSets requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property sets for groups operationId: groups.sites.termStores.groups.DeleteSets parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1} /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children terms of set in term [store]. operationId: groups.sites.termStores.groups.sets.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to children for groups operationId: groups.sites.termStores.groups.sets.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children terms of set in term [store]. operationId: groups.sites.termStores.groups.sets.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property children in groups operationId: groups.sites.termStores.groups.sets.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property children for groups operationId: groups.sites.termStores.groups.sets.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id} /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStores.groups.sets.children.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to children for groups operationId: groups.sites.termStores.groups.sets.children.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} : description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStores.groups.sets.children.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property children in groups operationId: groups.sites.termStores.groups.sets.children.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property children for groups operationId: groups.sites.termStores.groups.sets.children.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.groups.sets.children.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStores.groups.sets.children.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.groups.sets.children.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStores.groups.sets.children.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStores.groups.sets.children.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: >- groups.sites.termStores.groups.sets.children.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStores.groups.sets.children.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: >- groups.sites.termStores.groups.sets.children.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.termStores.groups.sets.children.children.relations.GetCount-66d5 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStores.groups.sets.children.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.groups.sets.children.children.GetCount-9d6e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.groups.sets.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStores.groups.sets.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.groups.sets.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStores.groups.sets.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStores.groups.sets.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStores.groups.sets.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStores.groups.sets.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStores.groups.sets.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.groups.sets.children.relations.GetCount-66d5 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStores.groups.sets.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.groups.sets.children.GetCount-9d6e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/parentGroup: description: >- Provides operations to manage the parentGroup property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get parentGroup from groups description: The parent [group] that contains the set. operationId: groups.sites.termStores.groups.sets.GetParentGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property parentGroup in groups operationId: groups.sites.termStores.groups.sets.UpdateParentGroup requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property parentGroup for groups operationId: groups.sites.termStores.groups.sets.DeleteParentGroup parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/parentGroup - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: Indicates which terms have been pinned or reused directly under the set. operationId: groups.sites.termStores.groups.sets.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStores.groups.sets.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: Indicates which terms have been pinned or reused directly under the set. operationId: groups.sites.termStores.groups.sets.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStores.groups.sets.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStores.groups.sets.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id} /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm: description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStores.groups.sets.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStores.groups.sets.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm: description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStores.groups.sets.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.groups.sets.relations.GetCount-f318 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms: description: >- Provides operations to manage the terms property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get terms from groups description: All the terms under the set. operationId: groups.sites.termStores.groups.sets.ListTerms parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to terms for groups operationId: groups.sites.termStores.groups.sets.CreateTerms requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}: description: >- Provides operations to manage the terms property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get terms from groups description: All the terms under the set. operationId: groups.sites.termStores.groups.sets.GetTerms parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property terms in groups operationId: groups.sites.termStores.groups.sets.UpdateTerms requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property terms for groups operationId: groups.sites.termStores.groups.sets.DeleteTerms parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id} /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStores.groups.sets.terms.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to children for groups operationId: groups.sites.termStores.groups.sets.terms.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} : description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStores.groups.sets.terms.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property children in groups operationId: groups.sites.termStores.groups.sets.terms.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property children for groups operationId: groups.sites.termStores.groups.sets.terms.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.groups.sets.terms.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStores.groups.sets.terms.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.groups.sets.terms.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStores.groups.sets.terms.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStores.groups.sets.terms.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStores.groups.sets.terms.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStores.groups.sets.terms.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStores.groups.sets.terms.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.termStores.groups.sets.terms.children.relations.GetCount-de60 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStores.groups.sets.terms.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.groups.sets.terms.children.GetCount-2d29 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.groups.sets.terms.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStores.groups.sets.terms.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.groups.sets.terms.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStores.groups.sets.terms.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStores.groups.sets.terms.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStores.groups.sets.terms.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStores.groups.sets.terms.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStores.groups.sets.terms.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.groups.sets.terms.relations.GetCount-602b parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStores.groups.sets.terms.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.groups.sets.terms.GetCount-4072 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.groups.sets.GetCount-ceb2 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id1 in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.groups.GetCount-e001 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets: description: >- Provides operations to manage the sets property of the microsoft.graph.termStore.store entity. get: tags: - Groups.site summary: Microsoft Graph Get sets from groups description: >- Collection of all sets available in the term store. This relationship can only be used to load a specific term set. operationId: groups.sites.termStores.ListSets parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.setCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to sets for groups operationId: groups.sites.termStores.CreateSets requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/termStore/sets /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}: description: >- Provides operations to manage the sets property of the microsoft.graph.termStore.store entity. get: tags: - Groups.site summary: Microsoft Graph Get sets from groups description: >- Collection of all sets available in the term store. This relationship can only be used to load a specific term set. operationId: groups.sites.termStores.GetSets parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property sets in groups operationId: groups.sites.termStores.UpdateSets requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property sets for groups operationId: groups.sites.termStores.DeleteSets parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id} /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children terms of set in term [store]. operationId: groups.sites.termStores.sets.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to children for groups operationId: groups.sites.termStores.sets.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children terms of set in term [store]. operationId: groups.sites.termStores.sets.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property children in groups operationId: groups.sites.termStores.sets.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property children for groups operationId: groups.sites.termStores.sets.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id} /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStores.sets.children.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to children for groups operationId: groups.sites.termStores.sets.children.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStores.sets.children.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property children in groups operationId: groups.sites.termStores.sets.children.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property children for groups operationId: groups.sites.termStores.sets.children.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.sets.children.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStores.sets.children.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.sets.children.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStores.sets.children.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStores.sets.children.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStores.sets.children.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStores.sets.children.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStores.sets.children.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.sets.children.children.relations.GetCount-66d5 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStores.sets.children.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.sets.children.children.GetCount-9d6e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.sets.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStores.sets.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.sets.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStores.sets.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStores.sets.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm: description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStores.sets.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStores.sets.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm: description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStores.sets.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.sets.children.relations.GetCount-66d5 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStores.sets.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.sets.children.GetCount-9d6e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup: description: >- Provides operations to manage the parentGroup property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get parentGroup from groups description: The parent [group] that contains the set. operationId: groups.sites.termStores.sets.GetParentGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property parentGroup in groups operationId: groups.sites.termStores.sets.UpdateParentGroup requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property parentGroup for groups operationId: groups.sites.termStores.sets.DeleteParentGroup parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/parentGroup - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/parentGroup /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets: description: >- Provides operations to manage the sets property of the microsoft.graph.termStore.group entity. get: tags: - Groups.site summary: Microsoft Graph Get sets from groups description: All sets under the group in a term [store]. operationId: groups.sites.termStores.sets.parentGroup.ListSets parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.setCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to sets for groups operationId: groups.sites.termStores.sets.parentGroup.CreateSets requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}: description: >- Provides operations to manage the sets property of the microsoft.graph.termStore.group entity. get: tags: - Groups.site summary: Microsoft Graph Get sets from groups description: All sets under the group in a term [store]. operationId: groups.sites.termStores.sets.parentGroup.GetSets parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property sets in groups operationId: groups.sites.termStores.sets.parentGroup.UpdateSets requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property sets for groups operationId: groups.sites.termStores.sets.parentGroup.DeleteSets parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id} /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children terms of set in term [store]. operationId: groups.sites.termStores.sets.parentGroup.sets.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to children for groups operationId: groups.sites.termStores.sets.parentGroup.sets.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children terms of set in term [store]. operationId: groups.sites.termStores.sets.parentGroup.sets.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property children in groups operationId: groups.sites.termStores.sets.parentGroup.sets.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property children for groups operationId: groups.sites.termStores.sets.parentGroup.sets.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id} ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children : description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStores.sets.parentGroup.sets.children.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to children for groups operationId: groups.sites.termStores.sets.parentGroup.sets.children.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} : description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStores.sets.parentGroup.sets.children.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property children in groups operationId: groups.sites.termStores.sets.parentGroup.sets.children.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property children for groups operationId: groups.sites.termStores.sets.parentGroup.sets.children.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: >- groups.sites.termStores.sets.parentGroup.sets.children.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: >- groups.sites.termStores.sets.parentGroup.sets.children.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: >- groups.sites.termStores.sets.parentGroup.sets.children.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: >- groups.sites.termStores.sets.parentGroup.sets.children.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: >- groups.sites.termStores.sets.parentGroup.sets.children.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: >- groups.sites.termStores.sets.parentGroup.sets.children.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: >- groups.sites.termStores.sets.parentGroup.sets.children.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: >- groups.sites.termStores.sets.parentGroup.sets.children.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.termStores.sets.parentGroup.sets.children.children.relations.GetCount-2349 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStores.sets.parentGroup.sets.children.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.termStores.sets.parentGroup.sets.children.children.GetCount-d1bd parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.sets.parentGroup.sets.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStores.sets.parentGroup.sets.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.sets.parentGroup.sets.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStores.sets.parentGroup.sets.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStores.sets.parentGroup.sets.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: >- groups.sites.termStores.sets.parentGroup.sets.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStores.sets.parentGroup.sets.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: >- groups.sites.termStores.sets.parentGroup.sets.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.termStores.sets.parentGroup.sets.children.relations.GetCount-2349 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStores.sets.parentGroup.sets.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.sets.parentGroup.sets.children.GetCount-d1bd parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: Indicates which terms have been pinned or reused directly under the set. operationId: groups.sites.termStores.sets.parentGroup.sets.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStores.sets.parentGroup.sets.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: Indicates which terms have been pinned or reused directly under the set. operationId: groups.sites.termStores.sets.parentGroup.sets.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStores.sets.parentGroup.sets.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStores.sets.parentGroup.sets.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStores.sets.parentGroup.sets.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStores.sets.parentGroup.sets.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStores.sets.parentGroup.sets.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.sets.parentGroup.sets.relations.GetCount-4e99 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms: description: >- Provides operations to manage the terms property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get terms from groups description: All the terms under the set. operationId: groups.sites.termStores.sets.parentGroup.sets.ListTerms parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to terms for groups operationId: groups.sites.termStores.sets.parentGroup.sets.CreateTerms requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}: description: >- Provides operations to manage the terms property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get terms from groups description: All the terms under the set. operationId: groups.sites.termStores.sets.parentGroup.sets.GetTerms parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property terms in groups operationId: groups.sites.termStores.sets.parentGroup.sets.UpdateTerms requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property terms for groups operationId: groups.sites.termStores.sets.parentGroup.sets.DeleteTerms parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id} /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStores.sets.parentGroup.sets.terms.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to children for groups operationId: groups.sites.termStores.sets.parentGroup.sets.terms.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} : description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStores.sets.parentGroup.sets.terms.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property children in groups operationId: groups.sites.termStores.sets.parentGroup.sets.terms.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property children for groups operationId: groups.sites.termStores.sets.parentGroup.sets.terms.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: >- groups.sites.termStores.sets.parentGroup.sets.terms.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: >- groups.sites.termStores.sets.parentGroup.sets.terms.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: >- groups.sites.termStores.sets.parentGroup.sets.terms.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: >- groups.sites.termStores.sets.parentGroup.sets.terms.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: >- groups.sites.termStores.sets.parentGroup.sets.terms.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: >- groups.sites.termStores.sets.parentGroup.sets.terms.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: >- groups.sites.termStores.sets.parentGroup.sets.terms.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: >- groups.sites.termStores.sets.parentGroup.sets.terms.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.termStores.sets.parentGroup.sets.terms.children.relations.GetCount-9206 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStores.sets.parentGroup.sets.terms.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.termStores.sets.parentGroup.sets.terms.children.GetCount-de56 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.sets.parentGroup.sets.terms.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStores.sets.parentGroup.sets.terms.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.sets.parentGroup.sets.terms.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStores.sets.parentGroup.sets.terms.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStores.sets.parentGroup.sets.terms.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: >- groups.sites.termStores.sets.parentGroup.sets.terms.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStores.sets.parentGroup.sets.terms.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStores.sets.parentGroup.sets.terms.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: >- groups.sites.termStores.sets.parentGroup.sets.terms.relations.GetCount-5399 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStores.sets.parentGroup.sets.terms.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.sets.parentGroup.sets.terms.GetCount-c418 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: set-id1 in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.sets.parentGroup.sets.GetCount-12d6 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: Indicates which terms have been pinned or reused directly under the set. operationId: groups.sites.termStores.sets.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStores.sets.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: Indicates which terms have been pinned or reused directly under the set. operationId: groups.sites.termStores.sets.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStores.sets.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStores.sets.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id} /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm: description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStores.sets.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStores.sets.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm: description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStores.sets.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.sets.relations.GetCount-f318 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms: description: >- Provides operations to manage the terms property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get terms from groups description: All the terms under the set. operationId: groups.sites.termStores.sets.ListTerms parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to terms for groups operationId: groups.sites.termStores.sets.CreateTerms requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms - /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}: description: >- Provides operations to manage the terms property of the microsoft.graph.termStore.set entity. get: tags: - Groups.site summary: Microsoft Graph Get terms from groups description: All the terms under the set. operationId: groups.sites.termStores.sets.GetTerms parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property terms in groups operationId: groups.sites.termStores.sets.UpdateTerms requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property terms for groups operationId: groups.sites.termStores.sets.DeleteTerms parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id} /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStores.sets.terms.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to children for groups operationId: groups.sites.termStores.sets.terms.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get children from groups description: Children of current term. operationId: groups.sites.termStores.sets.terms.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property children in groups operationId: groups.sites.termStores.sets.terms.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property children for groups operationId: groups.sites.termStores.sets.terms.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.sets.terms.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStores.sets.terms.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.sets.terms.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStores.sets.terms.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStores.sets.terms.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStores.sets.terms.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStores.sets.terms.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStores.sets.terms.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm ? /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count : description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.sets.terms.children.relations.GetCount-de60 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStores.sets.terms.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.sets.terms.children.GetCount-2d29 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.sets.terms.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.site summary: Microsoft Graph Create new navigation property to relations for groups operationId: groups.sites.termStores.sets.terms.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get relations from groups description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: groups.sites.termStores.sets.terms.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.site summary: Microsoft Graph Update the navigation property relations in groups operationId: groups.sites.termStores.sets.terms.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.site summary: Microsoft Graph Delete navigation property relations for groups operationId: groups.sites.termStores.sets.terms.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm: description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get fromTerm from groups description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: groups.sites.termStores.sets.terms.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the relation is relevant. operationId: groups.sites.termStores.sets.terms.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm: description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Groups.site summary: Microsoft Graph Get toTerm from groups description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: groups.sites.termStores.sets.terms.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.sets.terms.relations.GetCount-602b parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Groups.site summary: Microsoft Graph Get set from groups description: The [set] in which the term is created. operationId: groups.sites.termStores.sets.terms.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.sets.terms.GetCount-4072 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /groups/{group-id}/sites/{site-id}/termStores/{store-id}/sets/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.sets.GetCount-ceb2 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store /groups/{group-id}/sites/{site-id}/termStores/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.termStores.GetCount-e001 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /groups/{group-id}/sites/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.site summary: Microsoft Graph Get the number of the resource operationId: groups.sites.GetCount-9a08 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/sites/add: description: Provides operations to call the add method. post: tags: - Groups.site summary: Microsoft Graph Invoke action add description: Follow a user's site or multiple sites. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-1.0 operationId: groups.group.sites.add requestBody: description: Action parameters content: application/json: schema: type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.site' required: true responses: 2XX: description: Success content: application/json: schema: title: Collection of site type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.site' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/team/channels/{channel-id}/allMembers/add - /groups/{group-id}/team/channels/{channel-id}/members/add - /groups/{group-id}/team/members/add - /groups/{group-id}/team/primaryChannel/allMembers/add - /groups/{group-id}/team/primaryChannel/members/add /groups/{group-id}/sites/delta(): description: Provides operations to call the delta method. get: tags: - Groups.site summary: Microsoft Graph Invoke function delta description: "Get newly created, updated, or deleted sites without having to perform a full read of the entire sites collection. A delta function call for sites is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls,\r\nyou can query for incremental changes in the sites. It allows you to maintain and synchronize a local store of a user's sites without having to fetch all the sites from the server every time.\r\nThe application calls the API without specifying any parameters.\r\nThe service begins enumerating sites and returns pages of changes to these sites, accompanied by either an @odata.nextLink or an @odata.deltaLink.\r\nYour application should continue making calls using the @odata.nextLink until there's an @odata.deltaLink in the response. After you receive all the changes, you can apply them to your local state.\r\nTo monitor future changes, call the delta API by using the @odata.deltaLink in the previous response. Any resources marked as deleted should be removed from your local state." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/site-delta?view=graph-rest-1.0 operationId: groups.group.sites.delta parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of site type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.site' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/calendar/calendarView/delta() - /groups/{group-id}/calendar/events/{event-id}/instances/delta() - /groups/{group-id}/calendar/events/delta() - /groups/{group-id}/calendarView/delta() - /groups/{group-id}/events/{event-id}/instances/delta() - /groups/{group-id}/events/delta() - /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta() - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta(token='{token}') - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/channels/{channel-id}/messages/delta() - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/primaryChannel/messages/delta() - /groups/delta() - /groups/delta() /groups/{group-id}/sites/getAllSites(): description: Provides operations to call the getAllSites method. get: tags: - Groups.site summary: Microsoft Graph Invoke function getAllSites description: >- List sites across geographies in an organization. This API can also be used to enumerate all sites in a non-multi-geo tenant. For more information, see Best practices for discovering files and detecting changes at scale. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/site-getallsites?view=graph-rest-1.0 operationId: groups.group.sites.getAllSites parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of site type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.site' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/sites/remove: description: Provides operations to call the remove method. post: tags: - Groups.site summary: Microsoft Graph Invoke action remove description: Unfollow a user's site or multiple sites. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/site-unfollow?view=graph-rest-1.0 operationId: groups.group.sites.remove requestBody: description: Action parameters content: application/json: schema: type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.site' required: true responses: 2XX: description: Success content: application/json: schema: title: Collection of site type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.site' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/team/channels/{channel-id}/allMembers/remove - /groups/{group-id}/team/channels/{channel-id}/members/remove - /groups/{group-id}/team/members/remove - /groups/{group-id}/team/primaryChannel/allMembers/remove - /groups/{group-id}/team/primaryChannel/members/remove /groups/{group-id}/team: description: >- Provides operations to manage the team property of the microsoft.graph.group entity. get: tags: - Groups.team summary: Microsoft Graph Get team from groups description: The team associated with this group. operationId: groups.GetTeam parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.team' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation put: tags: - Groups.team summary: Microsoft Graph Create team from group description: >- Create a new team under a group. In order to create a team, the group must have at least one owner. If the group was created less than 15 minutes ago, calls to create a team might fail with a 404 Not Found error code because the group information didn't fully replicate. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/team-put-teams?view=graph-rest-1.0 operationId: groups.SetTeam requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.team' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.team' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property team for groups operationId: groups.DeleteTeam parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/allChannels: description: >- Provides operations to manage the allChannels property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get allChannels from groups description: >- List of channels either hosted in or shared with the team (incoming channels). operationId: groups.team.ListAllChannels parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.channelCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/allChannels/{channel-id}: description: >- Provides operations to manage the allChannels property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get allChannels from groups description: >- List of channels either hosted in or shared with the team (incoming channels). operationId: groups.team.GetAllChannels parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.channel' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel /groups/{group-id}/team/allChannels/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.allChannels.GetCount-4fa6 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/channels: description: >- Provides operations to manage the channels property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get channels from groups description: The collection of channels and messages associated with the team. operationId: groups.team.ListChannels parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.channelCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to channels for groups operationId: groups.team.CreateChannels requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.channel' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.channel' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/channels/{channel-id}: description: >- Provides operations to manage the channels property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get channels from groups description: The collection of channels and messages associated with the team. operationId: groups.team.GetChannels parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.channel' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property channels in groups operationId: groups.team.UpdateChannels requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.channel' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.channel' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property channels for groups operationId: groups.team.DeleteChannels parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel /groups/{group-id}/team/channels/{channel-id}/allMembers: description: >- Provides operations to manage the allMembers property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get allMembers from groups description: >- A collection of membership records associated with the channel, including both direct and indirect members of shared channels. operationId: groups.team.channels.ListAllMembers parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.conversationMemberCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to allMembers for groups operationId: groups.team.channels.CreateAllMembers requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel x-ms-docs-grouped-path: - /groups/{group-id}/team/primaryChannel/allMembers /groups/{group-id}/team/channels/{channel-id}/allMembers/{conversationMember-id}: description: >- Provides operations to manage the allMembers property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get allMembers from groups description: >- A collection of membership records associated with the channel, including both direct and indirect members of shared channels. operationId: groups.team.channels.GetAllMembers parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property allMembers in groups operationId: groups.team.channels.UpdateAllMembers requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property allMembers for groups operationId: groups.team.channels.DeleteAllMembers parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: conversationMember-id in: path description: The unique identifier of conversationMember required: true schema: type: string x-ms-docs-key-type: conversationMember x-ms-docs-grouped-path: - >- /groups/{group-id}/team/primaryChannel/allMembers/{conversationMember-id} /groups/{group-id}/team/channels/{channel-id}/allMembers/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.channels.allMembers.GetCount-767d parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel /groups/{group-id}/team/channels/{channel-id}/allMembers/add: description: Provides operations to call the add method. post: tags: - Groups.team summary: Microsoft Graph Invoke action add description: >- Add multiple members in a single request to a team. The response provides details about which memberships could and couldn't be created. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0 operationId: groups.group.team.channels.channel.allMembers.add requestBody: description: Action parameters content: application/json: schema: type: object properties: values: type: array items: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Success content: application/json: schema: type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.actionResultPart 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel x-ms-docs-grouped-path: - /groups/{group-id}/sites/add - /groups/{group-id}/team/channels/{channel-id}/members/add - /groups/{group-id}/team/members/add - /groups/{group-id}/team/primaryChannel/allMembers/add - /groups/{group-id}/team/primaryChannel/members/add /groups/{group-id}/team/channels/{channel-id}/allMembers/remove: description: Provides operations to call the remove method. post: tags: - Groups.team summary: Microsoft Graph Invoke action remove description: >- Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/conversationmember-remove?view=graph-rest-1.0 operationId: groups.group.team.channels.channel.allMembers.remove requestBody: description: Action parameters content: application/json: schema: type: object properties: values: type: array items: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Success content: application/json: schema: type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.actionResultPart 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel x-ms-docs-grouped-path: - /groups/{group-id}/sites/remove - /groups/{group-id}/team/channels/{channel-id}/members/remove - /groups/{group-id}/team/members/remove - /groups/{group-id}/team/primaryChannel/allMembers/remove - /groups/{group-id}/team/primaryChannel/members/remove /groups/{group-id}/team/channels/{channel-id}/filesFolder: description: >- Provides operations to manage the filesFolder property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get filesFolder from groups description: Metadata for the location where the channel's files are stored. operationId: groups.team.channels.GetFilesFolder parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.driveItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel x-ms-docs-grouped-path: - /groups/{group-id}/team/primaryChannel/filesFolder /groups/{group-id}/team/channels/{channel-id}/filesFolder/content: description: Provides operations to manage the media for the group entity. get: tags: - Groups.team summary: Microsoft Graph Get content for the navigation property filesFolder from groups description: The content stream, if the item represents a file. operationId: groups.team.channels.GetFilesFolderContent parameters: - name: $format in: query description: Format of the content schema: type: string responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.team summary: Microsoft Graph Update content for the navigation property filesFolder in groups description: The content stream, if the item represents a file. operationId: groups.team.channels.UpdateFilesFolderContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.driveItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.team summary: Microsoft Graph Delete content for the navigation property filesFolder in groups description: The content stream, if the item represents a file. operationId: groups.team.channels.DeleteFilesFolderContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel /groups/{group-id}/team/channels/{channel-id}/members: description: >- Provides operations to manage the members property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get members from groups description: A collection of membership records associated with the channel. operationId: groups.team.channels.ListMembers parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.conversationMemberCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to members for groups operationId: groups.team.channels.CreateMembers requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel x-ms-docs-grouped-path: - /groups/{group-id}/team/primaryChannel/members /groups/{group-id}/team/channels/{channel-id}/members/{conversationMember-id}: description: >- Provides operations to manage the members property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get members from groups description: A collection of membership records associated with the channel. operationId: groups.team.channels.GetMembers parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property members in groups operationId: groups.team.channels.UpdateMembers requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property members for groups operationId: groups.team.channels.DeleteMembers parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: conversationMember-id in: path description: The unique identifier of conversationMember required: true schema: type: string x-ms-docs-key-type: conversationMember x-ms-docs-grouped-path: - /groups/{group-id}/team/primaryChannel/members/{conversationMember-id} /groups/{group-id}/team/channels/{channel-id}/members/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.channels.members.GetCount-fa97 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel /groups/{group-id}/team/channels/{channel-id}/members/add: description: Provides operations to call the add method. post: tags: - Groups.team summary: Microsoft Graph Invoke action add description: >- Add multiple members in a single request to a team. The response provides details about which memberships could and couldn't be created. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0 operationId: groups.group.team.channels.channel.members.add requestBody: description: Action parameters content: application/json: schema: type: object properties: values: type: array items: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Success content: application/json: schema: type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.actionResultPart 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel x-ms-docs-grouped-path: - /groups/{group-id}/sites/add - /groups/{group-id}/team/channels/{channel-id}/allMembers/add - /groups/{group-id}/team/members/add - /groups/{group-id}/team/primaryChannel/allMembers/add - /groups/{group-id}/team/primaryChannel/members/add /groups/{group-id}/team/channels/{channel-id}/members/remove: description: Provides operations to call the remove method. post: tags: - Groups.team summary: Microsoft Graph Invoke action remove description: >- Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/conversationmember-remove?view=graph-rest-1.0 operationId: groups.group.team.channels.channel.members.remove requestBody: description: Action parameters content: application/json: schema: type: object properties: values: type: array items: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Success content: application/json: schema: type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.actionResultPart 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel x-ms-docs-grouped-path: - /groups/{group-id}/sites/remove - /groups/{group-id}/team/channels/{channel-id}/allMembers/remove - /groups/{group-id}/team/members/remove - /groups/{group-id}/team/primaryChannel/allMembers/remove - /groups/{group-id}/team/primaryChannel/members/remove /groups/{group-id}/team/channels/{channel-id}/messages: description: >- Provides operations to manage the messages property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get messages from groups description: >- A collection of all the messages in the channel. A navigation property. Nullable. operationId: groups.team.channels.ListMessages parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.chatMessageCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to messages for groups operationId: groups.team.channels.CreateMessages requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel x-ms-docs-grouped-path: - /groups/{group-id}/team/primaryChannel/messages /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}: description: >- Provides operations to manage the messages property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get messages from groups description: >- A collection of all the messages in the channel. A navigation property. Nullable. operationId: groups.team.channels.GetMessages parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property messages in groups operationId: groups.team.channels.UpdateMessages requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property messages for groups operationId: groups.team.channels.DeleteMessages parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id} /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents: description: >- Provides operations to manage the hostedContents property of the microsoft.graph.chatMessage entity. get: tags: - Groups.team summary: Microsoft Graph Get hostedContents from groups description: >- Content in a message hosted by Microsoft Teams - for example, images or code snippets. operationId: groups.team.channels.messages.ListHostedContents parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.chatMessageHostedContentCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to hostedContents for groups operationId: groups.team.channels.messages.CreateHostedContents requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}: description: >- Provides operations to manage the hostedContents property of the microsoft.graph.chatMessage entity. get: tags: - Groups.team summary: Microsoft Graph Get hostedContents from groups description: >- Content in a message hosted by Microsoft Teams - for example, images or code snippets. operationId: groups.team.channels.messages.GetHostedContents parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property hostedContents in groups operationId: groups.team.channels.messages.UpdateHostedContents requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property hostedContents for groups operationId: groups.team.channels.messages.DeleteHostedContents parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessageHostedContent-id in: path description: The unique identifier of chatMessageHostedContent required: true schema: type: string x-ms-docs-key-type: chatMessageHostedContent x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id} - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id} - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id} ? /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value : description: Provides operations to manage the media for the group entity. get: tags: - Groups.team summary: Microsoft Graph Get media content for the navigation property hostedContents from groups description: The unique identifier for an entity. Read-only. operationId: groups.team.channels.messages.GetHostedContentsContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.team summary: >- Microsoft Graph Update media content for the navigation property hostedContents in groups description: The unique identifier for an entity. Read-only. operationId: groups.team.channels.messages.UpdateHostedContentsContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.team summary: >- Microsoft Graph Delete media content for the navigation property hostedContents in groups description: The unique identifier for an entity. Read-only. operationId: groups.team.channels.messages.DeleteHostedContentsContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessageHostedContent-id in: path description: The unique identifier of chatMessageHostedContent required: true schema: type: string x-ms-docs-key-type: chatMessageHostedContent /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.channels.messages.hostedContents.GetCount-7beb parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/setReaction: description: Provides operations to call the setReaction method. post: tags: - Groups.team summary: Microsoft Graph Invoke action setReaction operationId: groups.group.team.channels.channel.messages.chatMessage.setReaction requestBody: description: Action parameters content: application/json: schema: type: object properties: reactionType: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/setReaction - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/softDelete: description: Provides operations to call the softDelete method. post: tags: - Groups.team summary: Microsoft Graph Invoke action softDelete description: >- Delete a single chatMessage or a chat message reply in a channel or a chat. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0 operationId: groups.group.team.channels.channel.messages.chatMessage.softDelete responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/softDelete - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/undoSoftDelete: description: Provides operations to call the undoSoftDelete method. post: tags: - Groups.team summary: Microsoft Graph Invoke action undoSoftDelete description: >- Undo soft deletion of a single chatMessage or a chat message reply in a channel or a chat. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0 operationId: groups.group.team.channels.channel.messages.chatMessage.undoSoftDelete responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/undoSoftDelete - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction: description: Provides operations to call the unsetReaction method. post: tags: - Groups.team summary: Microsoft Graph Invoke action unsetReaction operationId: groups.group.team.channels.channel.messages.chatMessage.unsetReaction requestBody: description: Action parameters content: application/json: schema: type: object properties: reactionType: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/unsetReaction - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies: description: >- Provides operations to manage the replies property of the microsoft.graph.chatMessage entity. get: tags: - Groups.team summary: Microsoft Graph Get replies from groups description: Replies for a specified message. Supports $expand for channel messages. operationId: groups.team.channels.messages.ListReplies parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.chatMessageCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to replies for groups operationId: groups.team.channels.messages.CreateReplies requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}: description: >- Provides operations to manage the replies property of the microsoft.graph.chatMessage entity. get: tags: - Groups.team summary: Microsoft Graph Get replies from groups description: Replies for a specified message. Supports $expand for channel messages. operationId: groups.team.channels.messages.GetReplies parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property replies in groups operationId: groups.team.channels.messages.UpdateReplies requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property replies for groups operationId: groups.team.channels.messages.DeleteReplies parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessage-id1 in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1} /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents: description: >- Provides operations to manage the hostedContents property of the microsoft.graph.chatMessage entity. get: tags: - Groups.team summary: Microsoft Graph Get hostedContents from groups description: >- Content in a message hosted by Microsoft Teams - for example, images or code snippets. operationId: groups.team.channels.messages.replies.ListHostedContents parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.chatMessageHostedContentCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to hostedContents for groups operationId: groups.team.channels.messages.replies.CreateHostedContents requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessage-id1 in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents ? /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id} : description: >- Provides operations to manage the hostedContents property of the microsoft.graph.chatMessage entity. get: tags: - Groups.team summary: Microsoft Graph Get hostedContents from groups description: >- Content in a message hosted by Microsoft Teams - for example, images or code snippets. operationId: groups.team.channels.messages.replies.GetHostedContents parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property hostedContents in groups operationId: groups.team.channels.messages.replies.UpdateHostedContents requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property hostedContents for groups operationId: groups.team.channels.messages.replies.DeleteHostedContents parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessage-id1 in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessageHostedContent-id in: path description: The unique identifier of chatMessageHostedContent required: true schema: type: string x-ms-docs-key-type: chatMessageHostedContent x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id} - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id} - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id} ? /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value : description: Provides operations to manage the media for the group entity. get: tags: - Groups.team summary: Microsoft Graph Get media content for the navigation property hostedContents from groups description: The unique identifier for an entity. Read-only. operationId: groups.team.channels.messages.replies.GetHostedContentsContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.team summary: >- Microsoft Graph Update media content for the navigation property hostedContents in groups description: The unique identifier for an entity. Read-only. operationId: groups.team.channels.messages.replies.UpdateHostedContentsContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.team summary: >- Microsoft Graph Delete media content for the navigation property hostedContents in groups description: The unique identifier for an entity. Read-only. operationId: groups.team.channels.messages.replies.DeleteHostedContentsContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessage-id1 in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessageHostedContent-id in: path description: The unique identifier of chatMessageHostedContent required: true schema: type: string x-ms-docs-key-type: chatMessageHostedContent /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.channels.messages.replies.hostedContents.GetCount-2a4d parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessage-id1 in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction: description: Provides operations to call the setReaction method. post: tags: - Groups.team summary: Microsoft Graph Invoke action setReaction operationId: >- groups.group.team.channels.channel.messages.chatMessage.replies.chatMessage.setReaction requestBody: description: Action parameters content: application/json: schema: type: object properties: reactionType: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessage-id1 in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/setReaction - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/setReaction - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete: description: Provides operations to call the softDelete method. post: tags: - Groups.team summary: Microsoft Graph Invoke action softDelete description: >- Delete a single chatMessage or a chat message reply in a channel or a chat. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0 operationId: >- groups.group.team.channels.channel.messages.chatMessage.replies.chatMessage.softDelete responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessage-id1 in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/softDelete - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/softDelete - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete: description: Provides operations to call the undoSoftDelete method. post: tags: - Groups.team summary: Microsoft Graph Invoke action undoSoftDelete description: >- Undo soft deletion of a single chatMessage or a chat message reply in a channel or a chat. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0 operationId: >- groups.group.team.channels.channel.messages.chatMessage.replies.chatMessage.undoSoftDelete responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessage-id1 in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/undoSoftDelete - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/undoSoftDelete - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction: description: Provides operations to call the unsetReaction method. post: tags: - Groups.team summary: Microsoft Graph Invoke action unsetReaction operationId: >- groups.group.team.channels.channel.messages.chatMessage.replies.chatMessage.unsetReaction requestBody: description: Action parameters content: application/json: schema: type: object properties: reactionType: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessage-id1 in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/unsetReaction - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.channels.messages.replies.GetCount-d2f1 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/delta(): description: Provides operations to call the delta method. get: tags: - Groups.team summary: Microsoft Graph Invoke function delta description: >- Get the list of messages from all chats in which a user is a participant, including one-on-one chats, group chats, and meeting chats. When you use delta query, you can get new or updated messages. To get the replies for a message, use the list message replies or the get message reply operations. A GET request with the delta function returns one of the following: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call. An @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after you acquire @odata.deltaLink). For more information, see the delta query documentation. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0 operationId: groups.group.team.channels.channel.messages.chatMessage.replies.delta parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of chatMessage type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.chatMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - /groups/{group-id}/calendar/calendarView/delta() - /groups/{group-id}/calendar/events/{event-id}/instances/delta() - /groups/{group-id}/calendar/events/delta() - /groups/{group-id}/calendarView/delta() - /groups/{group-id}/events/{event-id}/instances/delta() - /groups/{group-id}/events/delta() - /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta() - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta(token='{token}') - /groups/{group-id}/sites/delta() - /groups/{group-id}/team/channels/{channel-id}/messages/delta() - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/primaryChannel/messages/delta() - /groups/delta() - /groups/delta() /groups/{group-id}/team/channels/{channel-id}/messages/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.channels.messages.GetCount-f67e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel /groups/{group-id}/team/channels/{channel-id}/messages/delta(): description: Provides operations to call the delta method. get: tags: - Groups.team summary: Microsoft Graph Invoke function delta description: >- Get the list of messages from all chats in which a user is a participant, including one-on-one chats, group chats, and meeting chats. When you use delta query, you can get new or updated messages. To get the replies for a message, use the list message replies or the get message reply operations. A GET request with the delta function returns one of the following: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call. An @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after you acquire @odata.deltaLink). For more information, see the delta query documentation. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0 operationId: groups.group.team.channels.channel.messages.delta parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of chatMessage type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.chatMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel x-ms-docs-grouped-path: - /groups/{group-id}/calendar/calendarView/delta() - /groups/{group-id}/calendar/events/{event-id}/instances/delta() - /groups/{group-id}/calendar/events/delta() - /groups/{group-id}/calendarView/delta() - /groups/{group-id}/events/{event-id}/instances/delta() - /groups/{group-id}/events/delta() - /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta() - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta(token='{token}') - /groups/{group-id}/sites/delta() - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/delta() - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/primaryChannel/messages/delta() - /groups/delta() - /groups/delta() /groups/{group-id}/team/channels/{channel-id}/archive: description: Provides operations to call the archive method. post: tags: - Groups.team summary: Microsoft Graph Invoke action archive description: >- Archive a channel in a team. When a channel is archived, users can't send new messages or react to existing messages in the channel, edit the channel settings, or make other changes to the channel. You can delete an archived channel or add and remove members from it. If you archive a team, its channels are also archived. Archiving is an asynchronous operation; a channel is archived after the asynchronous archiving operation completes successfully, which might occur after the response returns. A channel without an owner or that belongs to a group that has no owner, can't be archived. To restore a channel from its archived state, use the channel: unarchive method. A channel can’t be archived or unarchived if its team is archived. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/channel-archive?view=graph-rest-1.0 operationId: groups.group.team.channels.channel.archive requestBody: description: Action parameters content: application/json: schema: type: object properties: shouldSetSpoSiteReadOnlyForMembers: type: boolean default: false nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel x-ms-docs-grouped-path: - /groups/{group-id}/team/archive - /groups/{group-id}/team/primaryChannel/archive /groups/{group-id}/team/channels/{channel-id}/completeMigration: description: Provides operations to call the completeMigration method. post: tags: - Groups.team summary: Microsoft Graph Invoke action completeMigration description: >- Complete the message migration process by removing migration mode from a channel in a team. Migration mode is a special state that prevents certain operations, like sending messages and adding members, during the data migration process. After a completeMigration request is made, you can't import additional messages into the team. You can add members to the team after the request returns a successful response. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-1.0 operationId: groups.group.team.channels.channel.completeMigration responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel x-ms-docs-grouped-path: - /groups/{group-id}/team/completeMigration - /groups/{group-id}/team/primaryChannel/completeMigration ? /groups/{group-id}/team/channels/{channel-id}/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName') : description: Provides operations to call the doesUserHaveAccess method. get: tags: - Groups.team summary: Microsoft Graph Invoke function doesUserHaveAccess description: Determine whether a user has access to a channel. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-1.0 operationId: groups.group.team.channels.channel.doesUserHaveAccess responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: boolean default: false 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: userId in: query description: 'Usage: userId=''@userId''' schema: type: string nullable: true - name: tenantId in: query description: 'Usage: tenantId=''@tenantId''' schema: type: string nullable: true - name: userPrincipalName in: query description: 'Usage: userPrincipalName=''@userPrincipalName''' schema: type: string nullable: true x-ms-docs-grouped-path: - >- /groups/{group-id}/team/primaryChannel/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName') /groups/{group-id}/team/channels/{channel-id}/provisionEmail: description: Provides operations to call the provisionEmail method. post: tags: - Groups.team summary: Microsoft Graph Invoke action provisionEmail description: >- Provision an email address for a channel. Microsoft Teams doesn't automatically provision an email address for a channel by default. To have Teams provision an email address, you can call provisionEmail, or through the Teams user interface, select Get email address, which triggers Teams to generate an email address if it has not already provisioned one. To remove the email address of a channel, use the removeEmail method. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-1.0 operationId: groups.group.team.channels.channel.provisionEmail responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: >- #/components/schemas/microsoft.graph.provisionChannelEmailResult - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel x-ms-docs-grouped-path: - /groups/{group-id}/team/primaryChannel/provisionEmail /groups/{group-id}/team/channels/{channel-id}/removeEmail: description: Provides operations to call the removeEmail method. post: tags: - Groups.team summary: Microsoft Graph Invoke action removeEmail description: >- Remove the email address of a channel. You can remove an email address only if it was provisioned using the provisionEmail method or through the Microsoft Teams client. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-1.0 operationId: groups.group.team.channels.channel.removeEmail responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel x-ms-docs-grouped-path: - /groups/{group-id}/team/primaryChannel/removeEmail /groups/{group-id}/team/channels/{channel-id}/unarchive: description: Provides operations to call the unarchive method. post: tags: - Groups.team summary: Microsoft Graph Invoke action unarchive description: >- Restore an archived channel. Unarchiving restores the ability for users to send messages and edit the channel. Channels are archived via the channel: archive method. Unarchiving is an asynchronous operation; a channel is unarchived when the asynchronous unarchiving operation completes successfully, which might occur after this method responds. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/channel-unarchive?view=graph-rest-1.0 operationId: groups.group.team.channels.channel.unarchive responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel x-ms-docs-grouped-path: - /groups/{group-id}/team/unarchive - /groups/{group-id}/team/primaryChannel/unarchive /groups/{group-id}/team/channels/{channel-id}/sharedWithTeams: description: >- Provides operations to manage the sharedWithTeams property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get sharedWithTeams from groups description: A collection of teams with which a channel is shared. operationId: groups.team.channels.ListSharedWithTeams parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.sharedWithChannelTeamInfoCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to sharedWithTeams for groups operationId: groups.team.channels.CreateSharedWithTeams requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sharedWithChannelTeamInfo' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sharedWithChannelTeamInfo' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel x-ms-docs-grouped-path: - /groups/{group-id}/team/primaryChannel/sharedWithTeams /groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}: description: >- Provides operations to manage the sharedWithTeams property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get sharedWithTeams from groups description: A collection of teams with which a channel is shared. operationId: groups.team.channels.GetSharedWithTeams parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sharedWithChannelTeamInfo' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property sharedWithTeams in groups operationId: groups.team.channels.UpdateSharedWithTeams requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sharedWithChannelTeamInfo' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sharedWithChannelTeamInfo' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property sharedWithTeams for groups operationId: groups.team.channels.DeleteSharedWithTeams parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: sharedWithChannelTeamInfo-id in: path description: The unique identifier of sharedWithChannelTeamInfo required: true schema: type: string x-ms-docs-key-type: sharedWithChannelTeamInfo x-ms-docs-grouped-path: - >- /groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id} /groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers: description: >- Provides operations to manage the allowedMembers property of the microsoft.graph.sharedWithChannelTeamInfo entity. get: tags: - Groups.team summary: Microsoft Graph Get allowedMembers from groups description: A collection of team members who have access to the shared channel. operationId: groups.team.channels.sharedWithTeams.ListAllowedMembers parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.conversationMemberCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: sharedWithChannelTeamInfo-id in: path description: The unique identifier of sharedWithChannelTeamInfo required: true schema: type: string x-ms-docs-key-type: sharedWithChannelTeamInfo x-ms-docs-grouped-path: - >- /groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers ? /groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id} : description: >- Provides operations to manage the allowedMembers property of the microsoft.graph.sharedWithChannelTeamInfo entity. get: tags: - Groups.team summary: Microsoft Graph Get allowedMembers from groups description: A collection of team members who have access to the shared channel. operationId: groups.team.channels.sharedWithTeams.GetAllowedMembers parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: sharedWithChannelTeamInfo-id in: path description: The unique identifier of sharedWithChannelTeamInfo required: true schema: type: string x-ms-docs-key-type: sharedWithChannelTeamInfo - name: conversationMember-id in: path description: The unique identifier of conversationMember required: true schema: type: string x-ms-docs-key-type: conversationMember x-ms-docs-grouped-path: - >- /groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id} /groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.channels.sharedWithTeams.allowedMembers.GetCount-d551 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: sharedWithChannelTeamInfo-id in: path description: The unique identifier of sharedWithChannelTeamInfo required: true schema: type: string x-ms-docs-key-type: sharedWithChannelTeamInfo /groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/team: description: >- Provides operations to manage the team property of the microsoft.graph.teamInfo entity. get: tags: - Groups.team summary: Microsoft Graph Get team from groups operationId: groups.team.channels.sharedWithTeams.GetTeam parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.team' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: sharedWithChannelTeamInfo-id in: path description: The unique identifier of sharedWithChannelTeamInfo required: true schema: type: string x-ms-docs-key-type: sharedWithChannelTeamInfo x-ms-docs-grouped-path: - >- /groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/team /groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.channels.sharedWithTeams.GetCount-3479 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel /groups/{group-id}/team/channels/{channel-id}/tabs: description: >- Provides operations to manage the tabs property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get tabs from groups description: A collection of all the tabs in the channel. A navigation property. operationId: groups.team.channels.ListTabs parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.teamsTabCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to tabs for groups operationId: groups.team.channels.CreateTabs requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsTab' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsTab' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel x-ms-docs-grouped-path: - /groups/{group-id}/team/primaryChannel/tabs /groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}: description: >- Provides operations to manage the tabs property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get tabs from groups description: A collection of all the tabs in the channel. A navigation property. operationId: groups.team.channels.GetTabs parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsTab' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property tabs in groups operationId: groups.team.channels.UpdateTabs requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsTab' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsTab' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property tabs for groups operationId: groups.team.channels.DeleteTabs parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: teamsTab-id in: path description: The unique identifier of teamsTab required: true schema: type: string x-ms-docs-key-type: teamsTab x-ms-docs-grouped-path: - /groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id} /groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp: description: >- Provides operations to manage the teamsApp property of the microsoft.graph.teamsTab entity. get: tags: - Groups.team summary: Microsoft Graph Get teamsApp from groups description: >- The application that is linked to the tab. This can't be changed after tab creation. operationId: groups.team.channels.tabs.GetTeamsApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel - name: teamsTab-id in: path description: The unique identifier of teamsTab required: true schema: type: string x-ms-docs-key-type: teamsTab x-ms-docs-grouped-path: - /groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}/teamsApp /groups/{group-id}/team/channels/{channel-id}/tabs/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.channels.tabs.GetCount-5a2c parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel /groups/{group-id}/team/channels/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.channels.GetCount-dcc7 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/channels/getAllMessages(): description: Provides operations to call the getAllMessages method. get: tags: - Groups.team summary: Microsoft Graph Invoke function getAllMessages description: >- Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/channel-getallmessages?view=graph-rest-1.0 operationId: groups.group.team.channels.getAllMessages parameters: - name: model in: query description: The payment model for the API schema: type: string - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of chatMessage type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.chatMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/channels/getAllRetainedMessages(): description: Provides operations to call the getAllRetainedMessages method. get: tags: - Groups.team summary: Microsoft Graph Invoke function getAllRetainedMessages description: >- Get all retained messages across all channels in a team. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/channel-getallretainedmessages?view=graph-rest-1.0 operationId: groups.group.team.channels.getAllRetainedMessages parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of chatMessage type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.chatMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/group: description: >- Provides operations to manage the group property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get group from groups operationId: groups.team.GetGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/group/serviceProvisioningErrors: get: tags: - Groups.team summary: Microsoft Graph Get serviceProvisioningErrors property value description: >- Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a group object. Supports $filter (eq, not, for isResolved and serviceInstance). operationId: groups.team.group.ListServiceProvisioningErrors parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.serviceProvisioningErrorCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/group/serviceProvisioningErrors/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.group.ServiceProvisioningErrors.GetCount-2547 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/incomingChannels: description: >- Provides operations to manage the incomingChannels property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get incomingChannels from groups description: List of channels shared with the team. operationId: groups.team.ListIncomingChannels parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.channelCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/incomingChannels/{channel-id}: description: >- Provides operations to manage the incomingChannels property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get incomingChannels from groups description: List of channels shared with the team. operationId: groups.team.GetIncomingChannels parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.channel' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: channel-id in: path description: The unique identifier of channel required: true schema: type: string x-ms-docs-key-type: channel /groups/{group-id}/team/incomingChannels/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.incomingChannels.GetCount-d4b9 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/installedApps: description: >- Provides operations to manage the installedApps property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get installedApps from groups description: The apps installed in this team. operationId: groups.team.ListInstalledApps parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.teamsAppInstallationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to installedApps for groups operationId: groups.team.CreateInstalledApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/installedApps/{teamsAppInstallation-id}: description: >- Provides operations to manage the installedApps property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get installedApps from groups description: The apps installed in this team. operationId: groups.team.GetInstalledApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property installedApps in groups operationId: groups.team.UpdateInstalledApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property installedApps for groups operationId: groups.team.DeleteInstalledApps parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: teamsAppInstallation-id in: path description: The unique identifier of teamsAppInstallation required: true schema: type: string x-ms-docs-key-type: teamsAppInstallation /groups/{group-id}/team/installedApps/{teamsAppInstallation-id}/upgrade: description: Provides operations to call the upgrade method. post: tags: - Groups.team summary: Microsoft Graph Invoke action upgrade description: Upgrade an app installation within a chat. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-1.0 operationId: groups.group.team.installedApps.teamsAppInstallation.upgrade requestBody: description: Action parameters content: application/json: schema: type: object properties: consentedPermissionSet: anyOf: - $ref: >- #/components/schemas/microsoft.graph.teamsAppPermissionSet - type: object nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: teamsAppInstallation-id in: path description: The unique identifier of teamsAppInstallation required: true schema: type: string x-ms-docs-key-type: teamsAppInstallation /groups/{group-id}/team/installedApps/{teamsAppInstallation-id}/teamsApp: description: >- Provides operations to manage the teamsApp property of the microsoft.graph.teamsAppInstallation entity. get: tags: - Groups.team summary: Microsoft Graph Get teamsApp from groups description: The app that is installed. operationId: groups.team.installedApps.GetTeamsApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: teamsAppInstallation-id in: path description: The unique identifier of teamsAppInstallation required: true schema: type: string x-ms-docs-key-type: teamsAppInstallation /groups/{group-id}/team/installedApps/{teamsAppInstallation-id}/teamsAppDefinition: description: >- Provides operations to manage the teamsAppDefinition property of the microsoft.graph.teamsAppInstallation entity. get: tags: - Groups.team summary: Microsoft Graph Get teamsAppDefinition from groups description: The details of this version of the app. operationId: groups.team.installedApps.GetTeamsAppDefinition parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: teamsAppInstallation-id in: path description: The unique identifier of teamsAppInstallation required: true schema: type: string x-ms-docs-key-type: teamsAppInstallation /groups/{group-id}/team/installedApps/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.installedApps.GetCount-83d4 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/members: description: >- Provides operations to manage the members property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get members from groups description: Members and owners of the team. operationId: groups.team.ListMembers parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.conversationMemberCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to members for groups operationId: groups.team.CreateMembers requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/members/{conversationMember-id}: description: >- Provides operations to manage the members property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get members from groups description: Members and owners of the team. operationId: groups.team.GetMembers parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property members in groups operationId: groups.team.UpdateMembers requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property members for groups operationId: groups.team.DeleteMembers parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationMember-id in: path description: The unique identifier of conversationMember required: true schema: type: string x-ms-docs-key-type: conversationMember /groups/{group-id}/team/members/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.members.GetCount-a0b1 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/members/add: description: Provides operations to call the add method. post: tags: - Groups.team summary: Microsoft Graph Invoke action add description: >- Add multiple members in a single request to a team. The response provides details about which memberships could and couldn't be created. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0 operationId: groups.group.team.members.add requestBody: description: Action parameters content: application/json: schema: type: object properties: values: type: array items: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Success content: application/json: schema: type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.actionResultPart 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/sites/add - /groups/{group-id}/team/channels/{channel-id}/allMembers/add - /groups/{group-id}/team/channels/{channel-id}/members/add - /groups/{group-id}/team/primaryChannel/allMembers/add - /groups/{group-id}/team/primaryChannel/members/add /groups/{group-id}/team/members/remove: description: Provides operations to call the remove method. post: tags: - Groups.team summary: Microsoft Graph Invoke action remove description: >- Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/conversationmember-remove?view=graph-rest-1.0 operationId: groups.group.team.members.remove requestBody: description: Action parameters content: application/json: schema: type: object properties: values: type: array items: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Success content: application/json: schema: type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.actionResultPart 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/sites/remove - /groups/{group-id}/team/channels/{channel-id}/allMembers/remove - /groups/{group-id}/team/channels/{channel-id}/members/remove - /groups/{group-id}/team/primaryChannel/allMembers/remove - /groups/{group-id}/team/primaryChannel/members/remove /groups/{group-id}/team/archive: description: Provides operations to call the archive method. post: tags: - Groups.team summary: Microsoft Graph Invoke action archive description: "Archive the specified team. \r\nWhen a team is archived, users can no longer make most changes to the team. For example, users can no longer: send or like messages on any channel in the team; edit the team's name or description; nor edit other settings. However, membership changes to the team are still allowed. Archiving is an async operation. A team is archived once the async operation completes successfully, which might occur subsequent to a response from this API. To archive a team, the team and group must have an owner. To restore a team from its archived state, use the API to unarchive." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/team-archive?view=graph-rest-1.0 operationId: groups.group.team.archive requestBody: description: Action parameters content: application/json: schema: type: object properties: shouldSetSpoSiteReadOnlyForMembers: type: boolean default: false nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/team/channels/{channel-id}/archive - /groups/{group-id}/team/primaryChannel/archive /groups/{group-id}/team/clone: description: Provides operations to call the clone method. post: tags: - Groups.team summary: Microsoft Graph Invoke action clone description: "Create a copy of a team. This operation also creates a copy of the corresponding group.\r\nYou can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. \r\nIf the user who opens the tab doesn't have permission to configure apps, they see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/team-clone?view=graph-rest-1.0 operationId: groups.group.team.clone requestBody: description: Action parameters content: application/json: schema: type: object properties: displayName: type: string nullable: true description: type: string nullable: true mailNickname: type: string nullable: true classification: type: string nullable: true visibility: $ref: '#/components/schemas/microsoft.graph.teamVisibilityType' partsToClone: $ref: '#/components/schemas/microsoft.graph.clonableTeamParts' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/completeMigration: description: Provides operations to call the completeMigration method. post: tags: - Groups.team summary: Microsoft Graph Invoke action completeMigration description: >- Complete the message migration process by removing migration mode from a team. Migration mode is a special state where certain operations are barred, like message POST and membership operations during the data migration process. After a completeMigration request is made, you can't import additional messages into the team. You can add members to the team after the request returns a successful response. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/team-completemigration?view=graph-rest-1.0 operationId: groups.group.team.completeMigration responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/team/channels/{channel-id}/completeMigration - /groups/{group-id}/team/primaryChannel/completeMigration /groups/{group-id}/team/sendActivityNotification: description: Provides operations to call the sendActivityNotification method. post: tags: - Groups.team summary: Microsoft Graph Invoke action sendActivityNotification description: "Send an activity feed notification in the scope of a team. For more information about sending notifications and the requirements for doing so, see\r\nsending Teams activity notifications." externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/team-sendactivitynotification?view=graph-rest-1.0 operationId: groups.group.team.sendActivityNotification requestBody: description: Action parameters content: application/json: schema: type: object properties: topic: anyOf: - $ref: >- #/components/schemas/microsoft.graph.teamworkActivityTopic - type: object nullable: true activityType: type: string nullable: true chainId: type: number format: int64 nullable: true previewText: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemBody' - type: object nullable: true teamsAppId: type: string nullable: true templateParameters: type: array items: $ref: '#/components/schemas/microsoft.graph.keyValuePair' recipient: anyOf: - $ref: >- #/components/schemas/microsoft.graph.teamworkNotificationRecipient - type: object nullable: true iconId: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/unarchive: description: Provides operations to call the unarchive method. post: tags: - Groups.team summary: Microsoft Graph Invoke action unarchive description: >- Restore an archived team. This API restores users' ability to send messages and edit the team, abiding by tenant and team settings. A Team is archived using the archive API. Unarchiving is an async operation. A team is unarchived once the async operation completes successfully, which might occur subsequent to a response from this API. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/team-unarchive?view=graph-rest-1.0 operationId: groups.group.team.unarchive responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/team/channels/{channel-id}/unarchive - /groups/{group-id}/team/primaryChannel/unarchive /groups/{group-id}/team/operations: description: >- Provides operations to manage the operations property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get operations from groups description: The async operations that ran or are running on this team. operationId: groups.team.ListOperations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.teamsAsyncOperationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to operations for groups operationId: groups.team.CreateOperations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAsyncOperation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAsyncOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/operations/{teamsAsyncOperation-id}: description: >- Provides operations to manage the operations property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get operations from groups description: The async operations that ran or are running on this team. operationId: groups.team.GetOperations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAsyncOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property operations in groups operationId: groups.team.UpdateOperations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAsyncOperation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAsyncOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property operations for groups operationId: groups.team.DeleteOperations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: teamsAsyncOperation-id in: path description: The unique identifier of teamsAsyncOperation required: true schema: type: string x-ms-docs-key-type: teamsAsyncOperation /groups/{group-id}/team/operations/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.operations.GetCount-6921 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/permissionGrants: description: >- Provides operations to manage the permissionGrants property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get permissionGrants from groups description: A collection of permissions granted to apps to access the team. operationId: groups.team.ListPermissionGrants parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.resourceSpecificPermissionGrantCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to permissionGrants for groups operationId: groups.team.CreatePermissionGrants requestBody: description: New navigation property content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.resourceSpecificPermissionGrant required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.resourceSpecificPermissionGrant 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/permissionGrants/{resourceSpecificPermissionGrant-id}: description: >- Provides operations to manage the permissionGrants property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get permissionGrants from groups description: A collection of permissions granted to apps to access the team. operationId: groups.team.GetPermissionGrants parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.resourceSpecificPermissionGrant 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property permissionGrants in groups operationId: groups.team.UpdatePermissionGrants requestBody: description: New navigation property values content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.resourceSpecificPermissionGrant required: true responses: 2XX: description: Success content: application/json: schema: $ref: >- #/components/schemas/microsoft.graph.resourceSpecificPermissionGrant 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property permissionGrants for groups operationId: groups.team.DeletePermissionGrants parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: resourceSpecificPermissionGrant-id in: path description: The unique identifier of resourceSpecificPermissionGrant required: true schema: type: string x-ms-docs-key-type: resourceSpecificPermissionGrant /groups/{group-id}/team/permissionGrants/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.permissionGrants.GetCount-5668 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/photo: description: >- Provides operations to manage the photo property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get photo from groups description: The profile photo for the team. operationId: groups.team.GetPhoto parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profilePhoto' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property photo in groups operationId: groups.team.UpdatePhoto requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profilePhoto' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profilePhoto' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/photo/$value: description: Provides operations to manage the media for the group entity. get: tags: - Groups.team summary: Microsoft Graph Get media content for the navigation property photo from groups description: The profile photo for the team. operationId: groups.team.GetPhotoContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.team summary: Microsoft Graph Update media content for the navigation property photo in groups description: The profile photo for the team. operationId: groups.team.UpdatePhotoContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.team summary: Microsoft Graph Delete media content for the navigation property photo in groups description: The profile photo for the team. operationId: groups.team.DeletePhotoContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/primaryChannel: description: >- Provides operations to manage the primaryChannel property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get primaryChannel from groups description: The general channel for the team. operationId: groups.team.GetPrimaryChannel parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.channel' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property primaryChannel in groups operationId: groups.team.UpdatePrimaryChannel requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.channel' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.channel' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property primaryChannel for groups operationId: groups.team.DeletePrimaryChannel parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/primaryChannel/allMembers: description: >- Provides operations to manage the allMembers property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get allMembers from groups description: >- A collection of membership records associated with the channel, including both direct and indirect members of shared channels. operationId: groups.team.primaryChannel.ListAllMembers parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.conversationMemberCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to allMembers for groups operationId: groups.team.primaryChannel.CreateAllMembers requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/team/channels/{channel-id}/allMembers /groups/{group-id}/team/primaryChannel/allMembers/{conversationMember-id}: description: >- Provides operations to manage the allMembers property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get allMembers from groups description: >- A collection of membership records associated with the channel, including both direct and indirect members of shared channels. operationId: groups.team.primaryChannel.GetAllMembers parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property allMembers in groups operationId: groups.team.primaryChannel.UpdateAllMembers requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property allMembers for groups operationId: groups.team.primaryChannel.DeleteAllMembers parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationMember-id in: path description: The unique identifier of conversationMember required: true schema: type: string x-ms-docs-key-type: conversationMember x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/allMembers/{conversationMember-id} /groups/{group-id}/team/primaryChannel/allMembers/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.primaryChannel.allMembers.GetCount-1592 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/primaryChannel/allMembers/add: description: Provides operations to call the add method. post: tags: - Groups.team summary: Microsoft Graph Invoke action add description: >- Add multiple members in a single request to a team. The response provides details about which memberships could and couldn't be created. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0 operationId: groups.group.team.primaryChannel.allMembers.add requestBody: description: Action parameters content: application/json: schema: type: object properties: values: type: array items: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Success content: application/json: schema: type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.actionResultPart 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/sites/add - /groups/{group-id}/team/channels/{channel-id}/allMembers/add - /groups/{group-id}/team/channels/{channel-id}/members/add - /groups/{group-id}/team/members/add - /groups/{group-id}/team/primaryChannel/members/add /groups/{group-id}/team/primaryChannel/allMembers/remove: description: Provides operations to call the remove method. post: tags: - Groups.team summary: Microsoft Graph Invoke action remove description: >- Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/conversationmember-remove?view=graph-rest-1.0 operationId: groups.group.team.primaryChannel.allMembers.remove requestBody: description: Action parameters content: application/json: schema: type: object properties: values: type: array items: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Success content: application/json: schema: type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.actionResultPart 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/sites/remove - /groups/{group-id}/team/channels/{channel-id}/allMembers/remove - /groups/{group-id}/team/channels/{channel-id}/members/remove - /groups/{group-id}/team/members/remove - /groups/{group-id}/team/primaryChannel/members/remove /groups/{group-id}/team/primaryChannel/filesFolder: description: >- Provides operations to manage the filesFolder property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get filesFolder from groups description: Metadata for the location where the channel's files are stored. operationId: groups.team.primaryChannel.GetFilesFolder parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.driveItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/team/channels/{channel-id}/filesFolder /groups/{group-id}/team/primaryChannel/filesFolder/content: description: Provides operations to manage the media for the group entity. get: tags: - Groups.team summary: Microsoft Graph Get content for the navigation property filesFolder from groups description: The content stream, if the item represents a file. operationId: groups.team.primaryChannel.GetFilesFolderContent parameters: - name: $format in: query description: Format of the content schema: type: string responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.team summary: Microsoft Graph Update content for the navigation property filesFolder in groups description: The content stream, if the item represents a file. operationId: groups.team.primaryChannel.UpdateFilesFolderContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.driveItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.team summary: Microsoft Graph Delete content for the navigation property filesFolder in groups description: The content stream, if the item represents a file. operationId: groups.team.primaryChannel.DeleteFilesFolderContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/primaryChannel/members: description: >- Provides operations to manage the members property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get members from groups description: A collection of membership records associated with the channel. operationId: groups.team.primaryChannel.ListMembers parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.conversationMemberCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to members for groups operationId: groups.team.primaryChannel.CreateMembers requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/team/channels/{channel-id}/members /groups/{group-id}/team/primaryChannel/members/{conversationMember-id}: description: >- Provides operations to manage the members property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get members from groups description: A collection of membership records associated with the channel. operationId: groups.team.primaryChannel.GetMembers parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property members in groups operationId: groups.team.primaryChannel.UpdateMembers requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property members for groups operationId: groups.team.primaryChannel.DeleteMembers parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationMember-id in: path description: The unique identifier of conversationMember required: true schema: type: string x-ms-docs-key-type: conversationMember x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/members/{conversationMember-id} /groups/{group-id}/team/primaryChannel/members/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.primaryChannel.members.GetCount-cb2b parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/primaryChannel/members/add: description: Provides operations to call the add method. post: tags: - Groups.team summary: Microsoft Graph Invoke action add description: >- Add multiple members in a single request to a team. The response provides details about which memberships could and couldn't be created. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0 operationId: groups.group.team.primaryChannel.members.add requestBody: description: Action parameters content: application/json: schema: type: object properties: values: type: array items: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Success content: application/json: schema: type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.actionResultPart 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/sites/add - /groups/{group-id}/team/channels/{channel-id}/allMembers/add - /groups/{group-id}/team/channels/{channel-id}/members/add - /groups/{group-id}/team/members/add - /groups/{group-id}/team/primaryChannel/allMembers/add /groups/{group-id}/team/primaryChannel/members/remove: description: Provides operations to call the remove method. post: tags: - Groups.team summary: Microsoft Graph Invoke action remove description: >- Remove multiple members from a team in a single request. The response provides details about which memberships could and couldn't be removed. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/conversationmember-remove?view=graph-rest-1.0 operationId: groups.group.team.primaryChannel.members.remove requestBody: description: Action parameters content: application/json: schema: type: object properties: values: type: array items: $ref: '#/components/schemas/microsoft.graph.conversationMember' required: true responses: 2XX: description: Success content: application/json: schema: type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.actionResultPart 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/sites/remove - /groups/{group-id}/team/channels/{channel-id}/allMembers/remove - /groups/{group-id}/team/channels/{channel-id}/members/remove - /groups/{group-id}/team/members/remove - /groups/{group-id}/team/primaryChannel/allMembers/remove /groups/{group-id}/team/primaryChannel/messages: description: >- Provides operations to manage the messages property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get messages from groups description: >- A collection of all the messages in the channel. A navigation property. Nullable. operationId: groups.team.primaryChannel.ListMessages parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.chatMessageCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to messages for groups operationId: groups.team.primaryChannel.CreateMessages requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/team/channels/{channel-id}/messages /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}: description: >- Provides operations to manage the messages property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get messages from groups description: >- A collection of all the messages in the channel. A navigation property. Nullable. operationId: groups.team.primaryChannel.GetMessages parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property messages in groups operationId: groups.team.primaryChannel.UpdateMessages requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property messages for groups operationId: groups.team.primaryChannel.DeleteMessages parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id} /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents: description: >- Provides operations to manage the hostedContents property of the microsoft.graph.chatMessage entity. get: tags: - Groups.team summary: Microsoft Graph Get hostedContents from groups description: >- Content in a message hosted by Microsoft Teams - for example, images or code snippets. operationId: groups.team.primaryChannel.messages.ListHostedContents parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.chatMessageHostedContentCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to hostedContents for groups operationId: groups.team.primaryChannel.messages.CreateHostedContents requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}: description: >- Provides operations to manage the hostedContents property of the microsoft.graph.chatMessage entity. get: tags: - Groups.team summary: Microsoft Graph Get hostedContents from groups description: >- Content in a message hosted by Microsoft Teams - for example, images or code snippets. operationId: groups.team.primaryChannel.messages.GetHostedContents parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property hostedContents in groups operationId: groups.team.primaryChannel.messages.UpdateHostedContents requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property hostedContents for groups operationId: groups.team.primaryChannel.messages.DeleteHostedContents parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessageHostedContent-id in: path description: The unique identifier of chatMessageHostedContent required: true schema: type: string x-ms-docs-key-type: chatMessageHostedContent x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id} - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id} - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id} /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value: description: Provides operations to manage the media for the group entity. get: tags: - Groups.team summary: Microsoft Graph Get media content for the navigation property hostedContents from groups description: The unique identifier for an entity. Read-only. operationId: groups.team.primaryChannel.messages.GetHostedContentsContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.team summary: >- Microsoft Graph Update media content for the navigation property hostedContents in groups description: The unique identifier for an entity. Read-only. operationId: groups.team.primaryChannel.messages.UpdateHostedContentsContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.team summary: >- Microsoft Graph Delete media content for the navigation property hostedContents in groups description: The unique identifier for an entity. Read-only. operationId: groups.team.primaryChannel.messages.DeleteHostedContentsContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessageHostedContent-id in: path description: The unique identifier of chatMessageHostedContent required: true schema: type: string x-ms-docs-key-type: chatMessageHostedContent /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.primaryChannel.messages.hostedContents.GetCount-7396 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/setReaction: description: Provides operations to call the setReaction method. post: tags: - Groups.team summary: Microsoft Graph Invoke action setReaction operationId: groups.group.team.primaryChannel.messages.chatMessage.setReaction requestBody: description: Action parameters content: application/json: schema: type: object properties: reactionType: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/setReaction - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/softDelete: description: Provides operations to call the softDelete method. post: tags: - Groups.team summary: Microsoft Graph Invoke action softDelete description: >- Delete a single chatMessage or a chat message reply in a channel or a chat. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0 operationId: groups.group.team.primaryChannel.messages.chatMessage.softDelete responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/softDelete - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/undoSoftDelete: description: Provides operations to call the undoSoftDelete method. post: tags: - Groups.team summary: Microsoft Graph Invoke action undoSoftDelete description: >- Undo soft deletion of a single chatMessage or a chat message reply in a channel or a chat. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0 operationId: groups.group.team.primaryChannel.messages.chatMessage.undoSoftDelete responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/undoSoftDelete - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/unsetReaction: description: Provides operations to call the unsetReaction method. post: tags: - Groups.team summary: Microsoft Graph Invoke action unsetReaction operationId: groups.group.team.primaryChannel.messages.chatMessage.unsetReaction requestBody: description: Action parameters content: application/json: schema: type: object properties: reactionType: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies: description: >- Provides operations to manage the replies property of the microsoft.graph.chatMessage entity. get: tags: - Groups.team summary: Microsoft Graph Get replies from groups description: Replies for a specified message. Supports $expand for channel messages. operationId: groups.team.primaryChannel.messages.ListReplies parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.chatMessageCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to replies for groups operationId: groups.team.primaryChannel.messages.CreateReplies requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}: description: >- Provides operations to manage the replies property of the microsoft.graph.chatMessage entity. get: tags: - Groups.team summary: Microsoft Graph Get replies from groups description: Replies for a specified message. Supports $expand for channel messages. operationId: groups.team.primaryChannel.messages.GetReplies parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property replies in groups operationId: groups.team.primaryChannel.messages.UpdateReplies requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property replies for groups operationId: groups.team.primaryChannel.messages.DeleteReplies parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessage-id1 in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1} /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents: description: >- Provides operations to manage the hostedContents property of the microsoft.graph.chatMessage entity. get: tags: - Groups.team summary: Microsoft Graph Get hostedContents from groups description: >- Content in a message hosted by Microsoft Teams - for example, images or code snippets. operationId: groups.team.primaryChannel.messages.replies.ListHostedContents parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.chatMessageHostedContentCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to hostedContents for groups operationId: groups.team.primaryChannel.messages.replies.CreateHostedContents requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessage-id1 in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents ? /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id} : description: >- Provides operations to manage the hostedContents property of the microsoft.graph.chatMessage entity. get: tags: - Groups.team summary: Microsoft Graph Get hostedContents from groups description: >- Content in a message hosted by Microsoft Teams - for example, images or code snippets. operationId: groups.team.primaryChannel.messages.replies.GetHostedContents parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property hostedContents in groups operationId: groups.team.primaryChannel.messages.replies.UpdateHostedContents requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property hostedContents for groups operationId: groups.team.primaryChannel.messages.replies.DeleteHostedContents parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessage-id1 in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessageHostedContent-id in: path description: The unique identifier of chatMessageHostedContent required: true schema: type: string x-ms-docs-key-type: chatMessageHostedContent x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id} - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id} - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id} ? /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value : description: Provides operations to manage the media for the group entity. get: tags: - Groups.team summary: Microsoft Graph Get media content for the navigation property hostedContents from groups description: The unique identifier for an entity. Read-only. operationId: groups.team.primaryChannel.messages.replies.GetHostedContentsContent responses: 2XX: description: Retrieved media content content: application/octet-stream: schema: type: string format: binary 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' put: tags: - Groups.team summary: >- Microsoft Graph Update media content for the navigation property hostedContents in groups description: The unique identifier for an entity. Read-only. operationId: groups.team.primaryChannel.messages.replies.UpdateHostedContentsContent requestBody: description: New media content. content: application/octet-stream: schema: type: string format: binary required: true responses: 2XX: description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - Groups.team summary: >- Microsoft Graph Delete media content for the navigation property hostedContents in groups description: The unique identifier for an entity. Read-only. operationId: groups.team.primaryChannel.messages.replies.DeleteHostedContentsContent parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessage-id1 in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessageHostedContent-id in: path description: The unique identifier of chatMessageHostedContent required: true schema: type: string x-ms-docs-key-type: chatMessageHostedContent /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.primaryChannel.messages.replies.hostedContents.GetCount-4ed6 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessage-id1 in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction: description: Provides operations to call the setReaction method. post: tags: - Groups.team summary: Microsoft Graph Invoke action setReaction operationId: >- groups.group.team.primaryChannel.messages.chatMessage.replies.chatMessage.setReaction requestBody: description: Action parameters content: application/json: schema: type: object properties: reactionType: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessage-id1 in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/setReaction - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/setReaction /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete: description: Provides operations to call the softDelete method. post: tags: - Groups.team summary: Microsoft Graph Invoke action softDelete description: >- Delete a single chatMessage or a chat message reply in a channel or a chat. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0 operationId: >- groups.group.team.primaryChannel.messages.chatMessage.replies.chatMessage.softDelete responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessage-id1 in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/softDelete - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/softDelete /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete: description: Provides operations to call the undoSoftDelete method. post: tags: - Groups.team summary: Microsoft Graph Invoke action undoSoftDelete description: >- Undo soft deletion of a single chatMessage or a chat message reply in a channel or a chat. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0 operationId: >- groups.group.team.primaryChannel.messages.chatMessage.replies.chatMessage.undoSoftDelete responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessage-id1 in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/undoSoftDelete - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/undoSoftDelete /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction: description: Provides operations to call the unsetReaction method. post: tags: - Groups.team summary: Microsoft Graph Invoke action unsetReaction operationId: >- groups.group.team.primaryChannel.messages.chatMessage.replies.chatMessage.unsetReaction requestBody: description: Action parameters content: application/json: schema: type: object properties: reactionType: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage - name: chatMessage-id1 in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/unsetReaction /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.primaryChannel.messages.replies.GetCount-b5b0 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/delta(): description: Provides operations to call the delta method. get: tags: - Groups.team summary: Microsoft Graph Invoke function delta description: >- Get the list of messages from all chats in which a user is a participant, including one-on-one chats, group chats, and meeting chats. When you use delta query, you can get new or updated messages. To get the replies for a message, use the list message replies or the get message reply operations. A GET request with the delta function returns one of the following: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call. An @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after you acquire @odata.deltaLink). For more information, see the delta query documentation. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0 operationId: groups.group.team.primaryChannel.messages.chatMessage.replies.delta parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of chatMessage type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.chatMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage x-ms-docs-grouped-path: - /groups/{group-id}/calendar/calendarView/delta() - /groups/{group-id}/calendar/events/{event-id}/instances/delta() - /groups/{group-id}/calendar/events/delta() - /groups/{group-id}/calendarView/delta() - /groups/{group-id}/events/{event-id}/instances/delta() - /groups/{group-id}/events/delta() - /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta() - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta(token='{token}') - /groups/{group-id}/sites/delta() - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/channels/{channel-id}/messages/delta() - /groups/{group-id}/team/primaryChannel/messages/delta() - /groups/delta() - /groups/delta() /groups/{group-id}/team/primaryChannel/messages/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.primaryChannel.messages.GetCount-045c parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/primaryChannel/messages/delta(): description: Provides operations to call the delta method. get: tags: - Groups.team summary: Microsoft Graph Invoke function delta description: >- Get the list of messages from all chats in which a user is a participant, including one-on-one chats, group chats, and meeting chats. When you use delta query, you can get new or updated messages. To get the replies for a message, use the list message replies or the get message reply operations. A GET request with the delta function returns one of the following: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call. An @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after you acquire @odata.deltaLink). For more information, see the delta query documentation. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0 operationId: groups.group.team.primaryChannel.messages.delta parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of chatMessage type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.chatMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/calendar/calendarView/delta() - /groups/{group-id}/calendar/events/{event-id}/instances/delta() - /groups/{group-id}/calendar/events/delta() - /groups/{group-id}/calendarView/delta() - /groups/{group-id}/events/{event-id}/instances/delta() - /groups/{group-id}/events/delta() - /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta() - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta(token='{token}') - /groups/{group-id}/sites/delta() - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/channels/{channel-id}/messages/delta() - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/delta() - /groups/delta() - /groups/delta() /groups/{group-id}/team/primaryChannel/archive: description: Provides operations to call the archive method. post: tags: - Groups.team summary: Microsoft Graph Invoke action archive description: >- Archive a channel in a team. When a channel is archived, users can't send new messages or react to existing messages in the channel, edit the channel settings, or make other changes to the channel. You can delete an archived channel or add and remove members from it. If you archive a team, its channels are also archived. Archiving is an asynchronous operation; a channel is archived after the asynchronous archiving operation completes successfully, which might occur after the response returns. A channel without an owner or that belongs to a group that has no owner, can't be archived. To restore a channel from its archived state, use the channel: unarchive method. A channel can’t be archived or unarchived if its team is archived. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/channel-archive?view=graph-rest-1.0 operationId: groups.group.team.primaryChannel.archive requestBody: description: Action parameters content: application/json: schema: type: object properties: shouldSetSpoSiteReadOnlyForMembers: type: boolean default: false nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/team/channels/{channel-id}/archive - /groups/{group-id}/team/archive /groups/{group-id}/team/primaryChannel/completeMigration: description: Provides operations to call the completeMigration method. post: tags: - Groups.team summary: Microsoft Graph Invoke action completeMigration description: >- Complete the message migration process by removing migration mode from a channel in a team. Migration mode is a special state that prevents certain operations, like sending messages and adding members, during the data migration process. After a completeMigration request is made, you can't import additional messages into the team. You can add members to the team after the request returns a successful response. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-1.0 operationId: groups.group.team.primaryChannel.completeMigration responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/team/channels/{channel-id}/completeMigration - /groups/{group-id}/team/completeMigration ? /groups/{group-id}/team/primaryChannel/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName') : description: Provides operations to call the doesUserHaveAccess method. get: tags: - Groups.team summary: Microsoft Graph Invoke function doesUserHaveAccess description: Determine whether a user has access to a channel. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-1.0 operationId: groups.group.team.primaryChannel.doesUserHaveAccess responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: boolean default: false 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: userId in: query description: 'Usage: userId=''@userId''' schema: type: string nullable: true - name: tenantId in: query description: 'Usage: tenantId=''@tenantId''' schema: type: string nullable: true - name: userPrincipalName in: query description: 'Usage: userPrincipalName=''@userPrincipalName''' schema: type: string nullable: true x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName') /groups/{group-id}/team/primaryChannel/provisionEmail: description: Provides operations to call the provisionEmail method. post: tags: - Groups.team summary: Microsoft Graph Invoke action provisionEmail description: >- Provision an email address for a channel. Microsoft Teams doesn't automatically provision an email address for a channel by default. To have Teams provision an email address, you can call provisionEmail, or through the Teams user interface, select Get email address, which triggers Teams to generate an email address if it has not already provisioned one. To remove the email address of a channel, use the removeEmail method. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-1.0 operationId: groups.group.team.primaryChannel.provisionEmail responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: >- #/components/schemas/microsoft.graph.provisionChannelEmailResult - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/team/channels/{channel-id}/provisionEmail /groups/{group-id}/team/primaryChannel/removeEmail: description: Provides operations to call the removeEmail method. post: tags: - Groups.team summary: Microsoft Graph Invoke action removeEmail description: >- Remove the email address of a channel. You can remove an email address only if it was provisioned using the provisionEmail method or through the Microsoft Teams client. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-1.0 operationId: groups.group.team.primaryChannel.removeEmail responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/team/channels/{channel-id}/removeEmail /groups/{group-id}/team/primaryChannel/unarchive: description: Provides operations to call the unarchive method. post: tags: - Groups.team summary: Microsoft Graph Invoke action unarchive description: >- Restore an archived channel. Unarchiving restores the ability for users to send messages and edit the channel. Channels are archived via the channel: archive method. Unarchiving is an asynchronous operation; a channel is unarchived when the asynchronous unarchiving operation completes successfully, which might occur after this method responds. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/channel-unarchive?view=graph-rest-1.0 operationId: groups.group.team.primaryChannel.unarchive responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/team/channels/{channel-id}/unarchive - /groups/{group-id}/team/unarchive /groups/{group-id}/team/primaryChannel/sharedWithTeams: description: >- Provides operations to manage the sharedWithTeams property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get sharedWithTeams from groups description: A collection of teams with which a channel is shared. operationId: groups.team.primaryChannel.ListSharedWithTeams parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.sharedWithChannelTeamInfoCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to sharedWithTeams for groups operationId: groups.team.primaryChannel.CreateSharedWithTeams requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sharedWithChannelTeamInfo' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sharedWithChannelTeamInfo' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/team/channels/{channel-id}/sharedWithTeams /groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}: description: >- Provides operations to manage the sharedWithTeams property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get sharedWithTeams from groups description: A collection of teams with which a channel is shared. operationId: groups.team.primaryChannel.GetSharedWithTeams parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sharedWithChannelTeamInfo' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property sharedWithTeams in groups operationId: groups.team.primaryChannel.UpdateSharedWithTeams requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sharedWithChannelTeamInfo' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sharedWithChannelTeamInfo' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property sharedWithTeams for groups operationId: groups.team.primaryChannel.DeleteSharedWithTeams parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sharedWithChannelTeamInfo-id in: path description: The unique identifier of sharedWithChannelTeamInfo required: true schema: type: string x-ms-docs-key-type: sharedWithChannelTeamInfo x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id} /groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers: description: >- Provides operations to manage the allowedMembers property of the microsoft.graph.sharedWithChannelTeamInfo entity. get: tags: - Groups.team summary: Microsoft Graph Get allowedMembers from groups description: A collection of team members who have access to the shared channel. operationId: groups.team.primaryChannel.sharedWithTeams.ListAllowedMembers parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.conversationMemberCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sharedWithChannelTeamInfo-id in: path description: The unique identifier of sharedWithChannelTeamInfo required: true schema: type: string x-ms-docs-key-type: sharedWithChannelTeamInfo x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers ? /groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id} : description: >- Provides operations to manage the allowedMembers property of the microsoft.graph.sharedWithChannelTeamInfo entity. get: tags: - Groups.team summary: Microsoft Graph Get allowedMembers from groups description: A collection of team members who have access to the shared channel. operationId: groups.team.primaryChannel.sharedWithTeams.GetAllowedMembers parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sharedWithChannelTeamInfo-id in: path description: The unique identifier of sharedWithChannelTeamInfo required: true schema: type: string x-ms-docs-key-type: sharedWithChannelTeamInfo - name: conversationMember-id in: path description: The unique identifier of conversationMember required: true schema: type: string x-ms-docs-key-type: conversationMember x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id} /groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.primaryChannel.sharedWithTeams.allowedMembers.GetCount-c289 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sharedWithChannelTeamInfo-id in: path description: The unique identifier of sharedWithChannelTeamInfo required: true schema: type: string x-ms-docs-key-type: sharedWithChannelTeamInfo /groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/team: description: >- Provides operations to manage the team property of the microsoft.graph.teamInfo entity. get: tags: - Groups.team summary: Microsoft Graph Get team from groups operationId: groups.team.primaryChannel.sharedWithTeams.GetTeam parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.team' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: sharedWithChannelTeamInfo-id in: path description: The unique identifier of sharedWithChannelTeamInfo required: true schema: type: string x-ms-docs-key-type: sharedWithChannelTeamInfo x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/team /groups/{group-id}/team/primaryChannel/sharedWithTeams/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.primaryChannel.sharedWithTeams.GetCount-fbef parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/primaryChannel/tabs: description: >- Provides operations to manage the tabs property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get tabs from groups description: A collection of all the tabs in the channel. A navigation property. operationId: groups.team.primaryChannel.ListTabs parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.teamsTabCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to tabs for groups operationId: groups.team.primaryChannel.CreateTabs requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsTab' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsTab' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /groups/{group-id}/team/channels/{channel-id}/tabs /groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}: description: >- Provides operations to manage the tabs property of the microsoft.graph.channel entity. get: tags: - Groups.team summary: Microsoft Graph Get tabs from groups description: A collection of all the tabs in the channel. A navigation property. operationId: groups.team.primaryChannel.GetTabs parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsTab' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property tabs in groups operationId: groups.team.primaryChannel.UpdateTabs requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsTab' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsTab' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property tabs for groups operationId: groups.team.primaryChannel.DeleteTabs parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: teamsTab-id in: path description: The unique identifier of teamsTab required: true schema: type: string x-ms-docs-key-type: teamsTab x-ms-docs-grouped-path: - /groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id} /groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}/teamsApp: description: >- Provides operations to manage the teamsApp property of the microsoft.graph.teamsTab entity. get: tags: - Groups.team summary: Microsoft Graph Get teamsApp from groups description: >- The application that is linked to the tab. This can't be changed after tab creation. operationId: groups.team.primaryChannel.tabs.GetTeamsApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: teamsTab-id in: path description: The unique identifier of teamsTab required: true schema: type: string x-ms-docs-key-type: teamsTab x-ms-docs-grouped-path: - >- /groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp /groups/{group-id}/team/primaryChannel/tabs/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.primaryChannel.tabs.GetCount-23e6 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule: description: >- Provides operations to manage the schedule property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get schedule from groups description: The schedule of shifts for this team. operationId: groups.team.GetSchedule parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.schedule' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation put: tags: - Groups.team summary: Microsoft Graph Update the navigation property schedule in groups operationId: groups.team.SetSchedule requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.schedule' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.schedule' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property schedule for groups operationId: groups.team.DeleteSchedule parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/dayNotes: description: >- Provides operations to manage the dayNotes property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get dayNotes from groups description: The day notes in the schedule. operationId: groups.team.schedule.ListDayNotes parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.dayNoteCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to dayNotes for groups operationId: groups.team.schedule.CreateDayNotes requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.dayNote' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.dayNote' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/dayNotes/{dayNote-id}: description: >- Provides operations to manage the dayNotes property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get dayNotes from groups description: The day notes in the schedule. operationId: groups.team.schedule.GetDayNotes parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.dayNote' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property dayNotes in groups operationId: groups.team.schedule.UpdateDayNotes requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.dayNote' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.dayNote' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property dayNotes for groups operationId: groups.team.schedule.DeleteDayNotes parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: dayNote-id in: path description: The unique identifier of dayNote required: true schema: type: string x-ms-docs-key-type: dayNote /groups/{group-id}/team/schedule/dayNotes/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.schedule.dayNotes.GetCount-46ba parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/share: description: Provides operations to call the share method. post: tags: - Groups.team summary: Microsoft Graph Invoke action share description: >- Share a schedule time range with schedule members. This action makes the collections of shift, openshift and timeOff items in the specified time range of the schedule viewable by the specified team members, including employees and managers. Each shift, openshift and timeOff instance in a schedule supports a draft version and a shared version of the item. The draft version is viewable by only managers, and the shared version is viewable by employees and managers. For each shift, openshift and timeOff instance in the specified time range, the share action updates the shared version from the draft version, so that in addition to managers, employees can also view the most current information about the item. The notifyTeam parameter further specifies which employees can view the item. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/schedule-share?view=graph-rest-1.0 operationId: groups.group.team.schedule.share requestBody: description: Action parameters content: application/json: schema: type: object properties: notifyTeam: type: boolean default: false nullable: true startDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string format: date-time nullable: true endDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string format: date-time nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/offerShiftRequests: description: >- Provides operations to manage the offerShiftRequests property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get offerShiftRequests from groups description: The offer requests for shifts in the schedule. operationId: groups.team.schedule.ListOfferShiftRequests parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.offerShiftRequestCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to offerShiftRequests for groups operationId: groups.team.schedule.CreateOfferShiftRequests requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.offerShiftRequest' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.offerShiftRequest' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/offerShiftRequests/{offerShiftRequest-id}: description: >- Provides operations to manage the offerShiftRequests property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get offerShiftRequests from groups description: The offer requests for shifts in the schedule. operationId: groups.team.schedule.GetOfferShiftRequests parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.offerShiftRequest' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property offerShiftRequests in groups operationId: groups.team.schedule.UpdateOfferShiftRequests requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.offerShiftRequest' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.offerShiftRequest' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property offerShiftRequests for groups operationId: groups.team.schedule.DeleteOfferShiftRequests parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: offerShiftRequest-id in: path description: The unique identifier of offerShiftRequest required: true schema: type: string x-ms-docs-key-type: offerShiftRequest /groups/{group-id}/team/schedule/offerShiftRequests/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.schedule.offerShiftRequests.GetCount-a576 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/openShiftChangeRequests: description: >- Provides operations to manage the openShiftChangeRequests property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get openShiftChangeRequests from groups description: The open shift requests in the schedule. operationId: groups.team.schedule.ListOpenShiftChangeRequests parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.openShiftChangeRequestCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to openShiftChangeRequests for groups operationId: groups.team.schedule.CreateOpenShiftChangeRequests requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}: description: >- Provides operations to manage the openShiftChangeRequests property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get openShiftChangeRequests from groups description: The open shift requests in the schedule. operationId: groups.team.schedule.GetOpenShiftChangeRequests parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property openShiftChangeRequests in groups operationId: groups.team.schedule.UpdateOpenShiftChangeRequests requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property openShiftChangeRequests for groups operationId: groups.team.schedule.DeleteOpenShiftChangeRequests parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: openShiftChangeRequest-id in: path description: The unique identifier of openShiftChangeRequest required: true schema: type: string x-ms-docs-key-type: openShiftChangeRequest /groups/{group-id}/team/schedule/openShiftChangeRequests/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.schedule.openShiftChangeRequests.GetCount-a139 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/openShifts: description: >- Provides operations to manage the openShifts property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get openShifts from groups description: The set of open shifts in a scheduling group in the schedule. operationId: groups.team.schedule.ListOpenShifts parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.openShiftCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to openShifts for groups operationId: groups.team.schedule.CreateOpenShifts requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.openShift' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.openShift' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/openShifts/{openShift-id}: description: >- Provides operations to manage the openShifts property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get openShifts from groups description: The set of open shifts in a scheduling group in the schedule. operationId: groups.team.schedule.GetOpenShifts parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.openShift' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property openShifts in groups operationId: groups.team.schedule.UpdateOpenShifts requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.openShift' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.openShift' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property openShifts for groups operationId: groups.team.schedule.DeleteOpenShifts parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: openShift-id in: path description: The unique identifier of openShift required: true schema: type: string x-ms-docs-key-type: openShift /groups/{group-id}/team/schedule/openShifts/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.schedule.openShifts.GetCount-bc49 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/schedulingGroups: description: >- Provides operations to manage the schedulingGroups property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get schedulingGroups from groups description: The logical grouping of users in the schedule (usually by role). operationId: groups.team.schedule.ListSchedulingGroups parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.schedulingGroupCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to schedulingGroups for groups operationId: groups.team.schedule.CreateSchedulingGroups requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.schedulingGroup' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.schedulingGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/schedulingGroups/{schedulingGroup-id}: description: >- Provides operations to manage the schedulingGroups property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get schedulingGroups from groups description: The logical grouping of users in the schedule (usually by role). operationId: groups.team.schedule.GetSchedulingGroups parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.schedulingGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property schedulingGroups in groups operationId: groups.team.schedule.UpdateSchedulingGroups requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.schedulingGroup' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.schedulingGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property schedulingGroups for groups operationId: groups.team.schedule.DeleteSchedulingGroups parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: schedulingGroup-id in: path description: The unique identifier of schedulingGroup required: true schema: type: string x-ms-docs-key-type: schedulingGroup /groups/{group-id}/team/schedule/schedulingGroups/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.schedule.schedulingGroups.GetCount-dd9d parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/shifts: description: >- Provides operations to manage the shifts property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get shifts from groups description: The shifts in the schedule. operationId: groups.team.schedule.ListShifts parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.shiftCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to shifts for groups operationId: groups.team.schedule.CreateShifts requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.shift' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.shift' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/shifts/{shift-id}: description: >- Provides operations to manage the shifts property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get shifts from groups description: The shifts in the schedule. operationId: groups.team.schedule.GetShifts parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.shift' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property shifts in groups operationId: groups.team.schedule.UpdateShifts requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.shift' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.shift' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property shifts for groups operationId: groups.team.schedule.DeleteShifts parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: shift-id in: path description: The unique identifier of shift required: true schema: type: string x-ms-docs-key-type: shift /groups/{group-id}/team/schedule/shifts/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.schedule.shifts.GetCount-b3cf parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/swapShiftsChangeRequests: description: >- Provides operations to manage the swapShiftsChangeRequests property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get swapShiftsChangeRequests from groups description: The swap requests for shifts in the schedule. operationId: groups.team.schedule.ListSwapShiftsChangeRequests parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.swapShiftsChangeRequestCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to swapShiftsChangeRequests for groups operationId: groups.team.schedule.CreateSwapShiftsChangeRequests requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}: description: >- Provides operations to manage the swapShiftsChangeRequests property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get swapShiftsChangeRequests from groups description: The swap requests for shifts in the schedule. operationId: groups.team.schedule.GetSwapShiftsChangeRequests parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property swapShiftsChangeRequests in groups operationId: groups.team.schedule.UpdateSwapShiftsChangeRequests requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property swapShiftsChangeRequests for groups operationId: groups.team.schedule.DeleteSwapShiftsChangeRequests parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: swapShiftsChangeRequest-id in: path description: The unique identifier of swapShiftsChangeRequest required: true schema: type: string x-ms-docs-key-type: swapShiftsChangeRequest /groups/{group-id}/team/schedule/swapShiftsChangeRequests/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.schedule.swapShiftsChangeRequests.GetCount-61ae parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/timeCards: description: >- Provides operations to manage the timeCards property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get timeCards from groups description: The time cards in the schedule. operationId: groups.team.schedule.ListTimeCards parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.timeCardCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to timeCards for groups operationId: groups.team.schedule.CreateTimeCards requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeCard' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeCard' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/timeCards/{timeCard-id}: description: >- Provides operations to manage the timeCards property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get timeCards from groups description: The time cards in the schedule. operationId: groups.team.schedule.GetTimeCards parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeCard' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property timeCards in groups operationId: groups.team.schedule.UpdateTimeCards requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeCard' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeCard' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property timeCards for groups operationId: groups.team.schedule.DeleteTimeCards parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: timeCard-id in: path description: The unique identifier of timeCard required: true schema: type: string x-ms-docs-key-type: timeCard /groups/{group-id}/team/schedule/timeCards/{timeCard-id}/clockOut: description: Provides operations to call the clockOut method. post: tags: - Groups.team summary: Microsoft Graph Invoke action clockOut operationId: groups.group.team.schedule.timeCards.timeCard.clockOut requestBody: description: Action parameters content: application/json: schema: type: object properties: isAtApprovedLocation: type: boolean default: false nullable: true notes: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemBody' - type: object nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.timeCard' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: timeCard-id in: path description: The unique identifier of timeCard required: true schema: type: string x-ms-docs-key-type: timeCard /groups/{group-id}/team/schedule/timeCards/{timeCard-id}/confirm: description: Provides operations to call the confirm method. post: tags: - Groups.team summary: Microsoft Graph Invoke action confirm description: Confirm a timeCard. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/timecard-confirm?view=graph-rest-1.0 operationId: groups.group.team.schedule.timeCards.timeCard.confirm responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.timeCard' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: timeCard-id in: path description: The unique identifier of timeCard required: true schema: type: string x-ms-docs-key-type: timeCard /groups/{group-id}/team/schedule/timeCards/{timeCard-id}/endBreak: description: Provides operations to call the endBreak method. post: tags: - Groups.team summary: Microsoft Graph Invoke action endBreak operationId: groups.group.team.schedule.timeCards.timeCard.endBreak requestBody: description: Action parameters content: application/json: schema: type: object properties: isAtApprovedLocation: type: boolean default: false nullable: true notes: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemBody' - type: object nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.timeCard' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: timeCard-id in: path description: The unique identifier of timeCard required: true schema: type: string x-ms-docs-key-type: timeCard /groups/{group-id}/team/schedule/timeCards/{timeCard-id}/startBreak: description: Provides operations to call the startBreak method. post: tags: - Groups.team summary: Microsoft Graph Invoke action startBreak operationId: groups.group.team.schedule.timeCards.timeCard.startBreak requestBody: description: Action parameters content: application/json: schema: type: object properties: isAtApprovedLocation: type: boolean default: false nullable: true notes: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemBody' - type: object nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.timeCard' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: timeCard-id in: path description: The unique identifier of timeCard required: true schema: type: string x-ms-docs-key-type: timeCard /groups/{group-id}/team/schedule/timeCards/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.schedule.timeCards.GetCount-67e7 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/timeCards/clockIn: description: Provides operations to call the clockIn method. post: tags: - Groups.team summary: Microsoft Graph Invoke action clockIn description: Clock in to start a timeCard. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/timecard-clockin?view=graph-rest-1.0 operationId: groups.group.team.schedule.timeCards.clockIn requestBody: description: Action parameters content: application/json: schema: type: object properties: isAtApprovedLocation: type: boolean default: false nullable: true onBehalfOfUserId: type: string nullable: true notes: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemBody' - type: object nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.timeCard' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/timeOffReasons: description: >- Provides operations to manage the timeOffReasons property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get timeOffReasons from groups description: The set of reasons for a time off in the schedule. operationId: groups.team.schedule.ListTimeOffReasons parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.timeOffReasonCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to timeOffReasons for groups operationId: groups.team.schedule.CreateTimeOffReasons requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeOffReason' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeOffReason' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/timeOffReasons/{timeOffReason-id}: description: >- Provides operations to manage the timeOffReasons property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get timeOffReasons from groups description: The set of reasons for a time off in the schedule. operationId: groups.team.schedule.GetTimeOffReasons parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeOffReason' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property timeOffReasons in groups operationId: groups.team.schedule.UpdateTimeOffReasons requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeOffReason' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeOffReason' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property timeOffReasons for groups operationId: groups.team.schedule.DeleteTimeOffReasons parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: timeOffReason-id in: path description: The unique identifier of timeOffReason required: true schema: type: string x-ms-docs-key-type: timeOffReason /groups/{group-id}/team/schedule/timeOffReasons/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.schedule.timeOffReasons.GetCount-bf68 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/timeOffRequests: description: >- Provides operations to manage the timeOffRequests property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get timeOffRequests from groups description: The time off requests in the schedule. operationId: groups.team.schedule.ListTimeOffRequests parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.timeOffRequestCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to timeOffRequests for groups operationId: groups.team.schedule.CreateTimeOffRequests requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeOffRequest' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeOffRequest' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/timeOffRequests/{timeOffRequest-id}: description: >- Provides operations to manage the timeOffRequests property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get timeOffRequests from groups description: The time off requests in the schedule. operationId: groups.team.schedule.GetTimeOffRequests parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeOffRequest' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property timeOffRequests in groups operationId: groups.team.schedule.UpdateTimeOffRequests requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeOffRequest' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeOffRequest' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property timeOffRequests for groups operationId: groups.team.schedule.DeleteTimeOffRequests parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: timeOffRequest-id in: path description: The unique identifier of timeOffRequest required: true schema: type: string x-ms-docs-key-type: timeOffRequest /groups/{group-id}/team/schedule/timeOffRequests/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.schedule.timeOffRequests.GetCount-082b parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/timesOff: description: >- Provides operations to manage the timesOff property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get timesOff from groups description: The instances of times off in the schedule. operationId: groups.team.schedule.ListTimesOff parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.timeOffCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to timesOff for groups operationId: groups.team.schedule.CreateTimesOff requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeOff' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeOff' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/schedule/timesOff/{timeOff-id}: description: >- Provides operations to manage the timesOff property of the microsoft.graph.schedule entity. get: tags: - Groups.team summary: Microsoft Graph Get timesOff from groups description: The instances of times off in the schedule. operationId: groups.team.schedule.GetTimesOff parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeOff' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property timesOff in groups operationId: groups.team.schedule.UpdateTimesOff requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeOff' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeOff' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property timesOff for groups operationId: groups.team.schedule.DeleteTimesOff parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: timeOff-id in: path description: The unique identifier of timeOff required: true schema: type: string x-ms-docs-key-type: timeOff /groups/{group-id}/team/schedule/timesOff/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.schedule.timesOff.GetCount-e64b parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/tags: description: >- Provides operations to manage the tags property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get tags from groups description: The tags associated with the team. operationId: groups.team.ListTags parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.teamworkTagCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to tags for groups operationId: groups.team.CreateTags requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkTag' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkTag' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/tags/{teamworkTag-id}: description: >- Provides operations to manage the tags property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get tags from groups description: The tags associated with the team. operationId: groups.team.GetTags parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkTag' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property tags in groups operationId: groups.team.UpdateTags requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkTag' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkTag' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property tags for groups operationId: groups.team.DeleteTags parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: teamworkTag-id in: path description: The unique identifier of teamworkTag required: true schema: type: string x-ms-docs-key-type: teamworkTag /groups/{group-id}/team/tags/{teamworkTag-id}/members: description: >- Provides operations to manage the members property of the microsoft.graph.teamworkTag entity. get: tags: - Groups.team summary: Microsoft Graph Get members from groups description: Users assigned to the tag. operationId: groups.team.tags.ListMembers parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.teamworkTagMemberCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Groups.team summary: Microsoft Graph Create new navigation property to members for groups operationId: groups.team.tags.CreateMembers requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkTagMember' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkTagMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: teamworkTag-id in: path description: The unique identifier of teamworkTag required: true schema: type: string x-ms-docs-key-type: teamworkTag /groups/{group-id}/team/tags/{teamworkTag-id}/members/{teamworkTagMember-id}: description: >- Provides operations to manage the members property of the microsoft.graph.teamworkTag entity. get: tags: - Groups.team summary: Microsoft Graph Get members from groups description: Users assigned to the tag. operationId: groups.team.tags.GetMembers parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkTagMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.team summary: Microsoft Graph Update the navigation property members in groups operationId: groups.team.tags.UpdateMembers requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkTagMember' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkTagMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.team summary: Microsoft Graph Delete navigation property members for groups operationId: groups.team.tags.DeleteMembers parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: teamworkTag-id in: path description: The unique identifier of teamworkTag required: true schema: type: string x-ms-docs-key-type: teamworkTag - name: teamworkTagMember-id in: path description: The unique identifier of teamworkTagMember required: true schema: type: string x-ms-docs-key-type: teamworkTagMember /groups/{group-id}/team/tags/{teamworkTag-id}/members/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.tags.members.GetCount-2a7d parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: teamworkTag-id in: path description: The unique identifier of teamworkTag required: true schema: type: string x-ms-docs-key-type: teamworkTag /groups/{group-id}/team/tags/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.team summary: Microsoft Graph Get the number of the resource operationId: groups.team.tags.GetCount-a8f7 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/team/template: description: >- Provides operations to manage the template property of the microsoft.graph.team entity. get: tags: - Groups.team summary: Microsoft Graph Get template from groups description: The template this team was created from. See available templates. operationId: groups.team.GetTemplate parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsTemplate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/threads: description: >- Provides operations to manage the threads property of the microsoft.graph.group entity. get: tags: - groups.conversationThread summary: Microsoft Graph List threads description: Get all the threads of a group. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-threads?view=graph-rest-1.0 operationId: groups.ListThreads parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.conversationThreadCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - groups.conversationThread summary: Microsoft Graph Create conversation thread description: "Start a new group conversation by first creating a thread. A new conversation, conversation thread, and post are created in the group.\r\nUse reply thread or reply post to further post to that thread. Note: You can also start a new thread in an existing conversation." externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-post-threads?view=graph-rest-1.0 operationId: groups.CreateThreads requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationThread' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationThread' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/threads/{conversationThread-id}: description: >- Provides operations to manage the threads property of the microsoft.graph.group entity. get: tags: - groups.conversationThread summary: Microsoft Graph Get conversationThread description: "Get a specific thread that belongs to a group. You can specify both the parent conversation and the thread, or, \r\nyou can specify the thread without referencing the parent conversation. " externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/conversationthread-get?view=graph-rest-1.0 operationId: groups.GetThreads parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationThread' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.conversationThread summary: Microsoft Graph Update conversation thread externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-update-thread?view=graph-rest-1.0 operationId: groups.UpdateThreads requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationThread' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.conversationThread' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.conversationThread summary: Microsoft Graph Delete conversationThread description: Delete conversationThread. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/conversationthread-delete?view=graph-rest-1.0 operationId: groups.DeleteThreads parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread /groups/{group-id}/threads/{conversationThread-id}/reply: description: Provides operations to call the reply method. post: tags: - groups.conversationThread summary: Microsoft Graph Invoke action reply description: >- Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/opentypeextension-post-opentypeextension?view=graph-rest-1.0 operationId: groups.group.threads.conversationThread.reply requestBody: description: Action parameters content: application/json: schema: type: object properties: Post: $ref: '#/components/schemas/microsoft.graph.post' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/reply - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/reply - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply - /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/reply /groups/{group-id}/threads/{conversationThread-id}/posts: description: >- Provides operations to manage the posts property of the microsoft.graph.conversationThread entity. get: tags: - groups.conversationThread summary: Microsoft Graph List posts description: "Get the posts of the specified thread. You can specify both the parent conversation and the thread, or,\r\nyou can specify the thread without referencing the parent conversation." externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/conversationthread-list-posts?view=graph-rest-1.0 operationId: groups.threads.ListPosts parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.postCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}: description: >- Provides operations to manage the posts property of the microsoft.graph.conversationThread entity. get: tags: - groups.conversationThread summary: Microsoft Graph Get posts from groups operationId: groups.threads.GetPosts parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.post' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id} /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments: description: >- Provides operations to manage the attachments property of the microsoft.graph.post entity. get: tags: - groups.conversationThread summary: Microsoft Graph List attachments description: Retrieve a list of attachment objects attached to a post. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/post-list-attachments?view=graph-rest-1.0 operationId: groups.threads.posts.ListAttachments parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.attachmentCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - groups.conversationThread summary: Microsoft Graph Create new navigation property to attachments for groups operationId: groups.threads.posts.CreateAttachments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}: description: >- Provides operations to manage the attachments property of the microsoft.graph.post entity. get: tags: - groups.conversationThread summary: Microsoft Graph Get attachments from groups description: Read-only. Nullable. Supports $expand. operationId: groups.threads.posts.GetAttachments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.conversationThread summary: Microsoft Graph Delete navigation property attachments for groups operationId: groups.threads.posts.DeleteAttachments parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post - name: attachment-id in: path description: The unique identifier of attachment required: true schema: type: string x-ms-docs-key-type: attachment x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id} - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id} - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id} /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.conversationThread summary: Microsoft Graph Get the number of the resource operationId: groups.threads.posts.attachments.GetCount-b54e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession: description: Provides operations to call the createUploadSession method. post: tags: - groups.conversationThread summary: Microsoft Graph Invoke action createUploadSession description: >- Create an upload session that allows an app to iteratively upload ranges of a file, so as to attach the file to the specified Outlook item. The item can be a message or event. Use this approach to attach a file if the file size is between 3 MB and 150 MB. To attach a file that's smaller than 3 MB, do a POST operation on the attachments navigation property of the Outlook item; see how to do this for a message or for an event. As part of the response, this action returns an upload URL that you can use in subsequent sequential PUT queries. Request headers for each PUT operation let you specify the exact range of bytes to be uploaded. This allows transfer to be resumed, in case the network connection is dropped during upload. The following are the steps to attach a file to an Outlook item using an upload session: See attach large files to Outlook messages or events for an example. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0 operationId: >- groups.group.threads.conversationThread.posts.post.attachments.createUploadSession requestBody: description: Action parameters content: application/json: schema: type: object properties: AttachmentItem: $ref: '#/components/schemas/microsoft.graph.attachmentItem' required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.uploadSession' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/calendar/events/{event-id}/attachments/createUploadSession - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession - /groups/{group-id}/events/{event-id}/attachments/createUploadSession - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions: description: >- Provides operations to manage the extensions property of the microsoft.graph.post entity. get: tags: - groups.conversationThread summary: Microsoft Graph Get open extension description: >- Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. operationId: groups.threads.posts.ListExtensions parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.extensionCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - groups.conversationThread summary: Microsoft Graph Create new navigation property to extensions for groups operationId: groups.threads.posts.CreateExtensions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}: description: >- Provides operations to manage the extensions property of the microsoft.graph.post entity. get: tags: - groups.conversationThread summary: Microsoft Graph Get open extension description: >- Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/opentypeextension-get?view=graph-rest-1.0 operationId: groups.threads.posts.GetExtensions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.conversationThread summary: Microsoft Graph Update open extension description: "Update an open extension (openTypeExtension object) on a supported resource type.\r\n- If a property in the request body matches the name of an existing property in the extension, the data in the extension is updated.\r\n- Otherwise, that property and its data are added to the extension. The data in an extension can be primitive types or arrays of primitive types. See the table in the Permissions section for the list of resources that support open extensions." externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/opentypeextension-update?view=graph-rest-1.0 operationId: groups.threads.posts.UpdateExtensions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.conversationThread summary: Microsoft Graph Delete navigation property extensions for groups operationId: groups.threads.posts.DeleteExtensions parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post - name: extension-id in: path description: The unique identifier of extension required: true schema: type: string x-ms-docs-key-type: extension x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id} - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id} - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id} /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.conversationThread summary: Microsoft Graph Get the number of the resource operationId: groups.threads.posts.extensions.GetCount-5e10 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo: description: >- Provides operations to manage the inReplyTo property of the microsoft.graph.post entity. get: tags: - groups.conversationThread summary: Microsoft Graph Get inReplyTo from groups description: Read-only. Supports $expand. operationId: groups.threads.posts.GetInReplyTo parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.post' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments: description: >- Provides operations to manage the attachments property of the microsoft.graph.post entity. get: tags: - groups.conversationThread summary: Microsoft Graph Get attachments from groups description: Read-only. Nullable. Supports $expand. operationId: groups.threads.posts.inReplyTo.ListAttachments parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.attachmentCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - groups.conversationThread summary: Microsoft Graph Create new navigation property to attachments for groups operationId: groups.threads.posts.inReplyTo.CreateAttachments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}: description: >- Provides operations to manage the attachments property of the microsoft.graph.post entity. get: tags: - groups.conversationThread summary: Microsoft Graph Get attachments from groups description: Read-only. Nullable. Supports $expand. operationId: groups.threads.posts.inReplyTo.GetAttachments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.conversationThread summary: Microsoft Graph Delete navigation property attachments for groups operationId: groups.threads.posts.inReplyTo.DeleteAttachments parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post - name: attachment-id in: path description: The unique identifier of attachment required: true schema: type: string x-ms-docs-key-type: attachment x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id} - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id} - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id} /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.conversationThread summary: Microsoft Graph Get the number of the resource operationId: groups.threads.posts.inReplyTo.attachments.GetCount-5b74 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession: description: Provides operations to call the createUploadSession method. post: tags: - groups.conversationThread summary: Microsoft Graph Invoke action createUploadSession description: >- Create an upload session that allows an app to iteratively upload ranges of a file, so as to attach the file to the specified Outlook item. The item can be a message or event. Use this approach to attach a file if the file size is between 3 MB and 150 MB. To attach a file that's smaller than 3 MB, do a POST operation on the attachments navigation property of the Outlook item; see how to do this for a message or for an event. As part of the response, this action returns an upload URL that you can use in subsequent sequential PUT queries. Request headers for each PUT operation let you specify the exact range of bytes to be uploaded. This allows transfer to be resumed, in case the network connection is dropped during upload. The following are the steps to attach a file to an Outlook item using an upload session: See attach large files to Outlook messages or events for an example. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0 operationId: >- groups.group.threads.conversationThread.posts.post.inReplyTo.attachments.createUploadSession requestBody: description: Action parameters content: application/json: schema: type: object properties: AttachmentItem: $ref: '#/components/schemas/microsoft.graph.attachmentItem' required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.uploadSession' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/calendar/events/{event-id}/attachments/createUploadSession - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession - /groups/{group-id}/events/{event-id}/attachments/createUploadSession - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions: description: >- Provides operations to manage the extensions property of the microsoft.graph.post entity. get: tags: - groups.conversationThread summary: Microsoft Graph Get extensions from groups description: >- The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. operationId: groups.threads.posts.inReplyTo.ListExtensions parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.extensionCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - groups.conversationThread summary: Microsoft Graph Create new navigation property to extensions for groups operationId: groups.threads.posts.inReplyTo.CreateExtensions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}: description: >- Provides operations to manage the extensions property of the microsoft.graph.post entity. get: tags: - groups.conversationThread summary: Microsoft Graph Get extensions from groups description: >- The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. operationId: groups.threads.posts.inReplyTo.GetExtensions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - groups.conversationThread summary: Microsoft Graph Update the navigation property extensions in groups operationId: groups.threads.posts.inReplyTo.UpdateExtensions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extension' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - groups.conversationThread summary: Microsoft Graph Delete navigation property extensions for groups operationId: groups.threads.posts.inReplyTo.DeleteExtensions parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post - name: extension-id in: path description: The unique identifier of extension required: true schema: type: string x-ms-docs-key-type: extension x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id} - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id} - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id} /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.conversationThread summary: Microsoft Graph Get the number of the resource operationId: groups.threads.posts.inReplyTo.extensions.GetCount-364f parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward: description: Provides operations to call the forward method. post: tags: - groups.conversationThread summary: Microsoft Graph Invoke action forward description: "Forward a post to a recipient. You can specify both the parent conversation and thread in the request, \r\nor, you can specify just the parent thread without the parent conversation. " externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-1.0 operationId: groups.group.threads.conversationThread.posts.post.inReplyTo.forward requestBody: description: Action parameters content: application/json: schema: type: object properties: Comment: type: string nullable: true ToRecipients: type: array items: $ref: '#/components/schemas/microsoft.graph.recipient' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/forward - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/forward - /groups/{group-id}/events/{event-id}/forward - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/forward /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply: description: Provides operations to call the reply method. post: tags: - groups.conversationThread summary: Microsoft Graph Invoke action reply operationId: groups.group.threads.conversationThread.posts.post.inReplyTo.reply requestBody: description: Action parameters content: application/json: schema: type: object properties: Post: $ref: '#/components/schemas/microsoft.graph.post' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/reply - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/reply - /groups/{group-id}/threads/{conversationThread-id}/reply - /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/reply /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/forward: description: Provides operations to call the forward method. post: tags: - groups.conversationThread summary: Microsoft Graph Invoke action forward description: "Forward a post to a recipient. You can specify both the parent conversation and thread in the request, \r\nor, you can specify just the parent thread without the parent conversation. " externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-1.0 operationId: groups.group.threads.conversationThread.posts.post.forward requestBody: description: Action parameters content: application/json: schema: type: object properties: Comment: type: string nullable: true ToRecipients: type: array items: $ref: '#/components/schemas/microsoft.graph.recipient' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - /groups/{group-id}/calendar/events/{event-id}/forward - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/forward - /groups/{group-id}/events/{event-id}/forward - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/reply: description: Provides operations to call the reply method. post: tags: - groups.conversationThread summary: Microsoft Graph Invoke action reply operationId: groups.group.threads.conversationThread.posts.post.reply requestBody: description: Action parameters content: application/json: schema: type: object properties: Post: $ref: '#/components/schemas/microsoft.graph.post' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread - name: post-id in: path description: The unique identifier of post required: true schema: type: string x-ms-docs-key-type: post x-ms-docs-grouped-path: - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/reply - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply - >- /groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/reply - /groups/{group-id}/threads/{conversationThread-id}/reply - >- /groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply /groups/{group-id}/threads/{conversationThread-id}/posts/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.conversationThread summary: Microsoft Graph Get the number of the resource operationId: groups.threads.posts.GetCount-fcff parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: conversationThread-id in: path description: The unique identifier of conversationThread required: true schema: type: string x-ms-docs-key-type: conversationThread /groups/{group-id}/threads/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.conversationThread summary: Microsoft Graph Get the number of the resource operationId: groups.threads.GetCount-22d8 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMemberOf: description: >- Provides operations to manage the transitiveMemberOf property of the microsoft.graph.group entity. get: tags: - groups.directoryObject summary: Microsoft Graph List group transitive memberOf description: >- Get groups that the group is a member of. This operation is transitive and will also include all groups that this group is a nested member of. Unlike getting a user's Microsoft 365 groups, this returns all types of groups, not just Microsoft 365 groups. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-transitivememberof?view=graph-rest-1.0 operationId: groups.ListTransitiveMemberOf parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.directoryObjectCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMemberOf/{directoryObject-id}: description: >- Provides operations to manage the transitiveMemberOf property of the microsoft.graph.group entity. get: tags: - groups.directoryObject summary: Microsoft Graph Get transitiveMemberOf from groups description: >- The groups that a group is a member of, either directly or through nested membership. Nullable. operationId: groups.GetTransitiveMemberOf parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryObject' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/transitiveMemberOf/{directoryObject-id}/graph.administrativeUnit: description: Casts the previous resource to administrativeUnit. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit operationId: groups.GetTransitiveMemberOf.AsAdministrativeUnit parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.administrativeUnit' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/transitiveMemberOf/{directoryObject-id}/graph.group: description: Casts the previous resource to group. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.group operationId: groups.GetTransitiveMemberOf.AsGroup parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/transitiveMemberOf/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.transitiveMemberOf.GetCount-c756 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMemberOf/graph.administrativeUnit: description: Casts the previous resource to administrativeUnit. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.administrativeUnit in the microsoft.graph.directoryObject collection operationId: groups.ListTransitiveMemberOf.AsAdministrativeUnit parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.administrativeUnitCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMemberOf/graph.administrativeUnit/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.TransitiveMemberOf.GetCount.AsAdministrativeUnit-af58 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMemberOf/graph.group: description: Casts the previous resource to group. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection operationId: groups.ListTransitiveMemberOf.AsGroup parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.groupCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMemberOf/graph.group/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.TransitiveMemberOf.GetCount.AsGroup-4a46 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMembers: description: >- Provides operations to manage the transitiveMembers property of the microsoft.graph.group entity. get: tags: - groups.directoryObject summary: Microsoft Graph List group transitive members description: >- Get a list of the group's members. A group can have different object types as members. For more information about supported member types for different groups, see Group membership. This operation is transitive and returns a flat list of all nested members. An attempt to filter by an OData cast that represents an unsupported member type returns a 400 Bad Request error with the Request_UnsupportedQuery code. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-transitivemembers?view=graph-rest-1.0 operationId: groups.ListTransitiveMembers parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.directoryObjectCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMembers/{directoryObject-id}: description: >- Provides operations to manage the transitiveMembers property of the microsoft.graph.group entity. get: tags: - groups.directoryObject summary: Microsoft Graph Get transitiveMembers from groups description: The direct and transitive members of a group. Nullable. operationId: groups.GetTransitiveMembers parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryObject' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/transitiveMembers/{directoryObject-id}/graph.application: description: Casts the previous resource to application. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.application operationId: groups.GetTransitiveMembers.AsApplication parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.application' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/transitiveMembers/{directoryObject-id}/graph.device: description: Casts the previous resource to device. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.device operationId: groups.GetTransitiveMembers.AsDevice parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.device' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/transitiveMembers/{directoryObject-id}/graph.group: description: Casts the previous resource to group. get: tags: - groups.directoryObject summary: Microsoft Graph List group transitive members description: >- Get a list of the group's members. A group can have different object types as members. For more information about supported member types for different groups, see Group membership. This operation is transitive and returns a flat list of all nested members. An attempt to filter by an OData cast that represents an unsupported member type returns a 400 Bad Request error with the Request_UnsupportedQuery code. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-transitivemembers?view=graph-rest-1.0 operationId: groups.GetTransitiveMembers.AsGroup parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/transitiveMembers/{directoryObject-id}/graph.orgContact: description: Casts the previous resource to orgContact. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.orgContact operationId: groups.GetTransitiveMembers.AsOrgContact parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.orgContact' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/transitiveMembers/{directoryObject-id}/graph.servicePrincipal: description: Casts the previous resource to servicePrincipal. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal operationId: groups.GetTransitiveMembers.AsServicePrincipal parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.servicePrincipal' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/transitiveMembers/{directoryObject-id}/graph.user: description: Casts the previous resource to user. get: tags: - groups.directoryObject summary: Microsoft Graph List group transitive members description: >- Get a list of the group's members. A group can have different object types as members. For more information about supported member types for different groups, see Group membership. This operation is transitive and returns a flat list of all nested members. An attempt to filter by an OData cast that represents an unsupported member type returns a 400 Bad Request error with the Request_UnsupportedQuery code. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-transitivemembers?view=graph-rest-1.0 operationId: groups.GetTransitiveMembers.AsUser parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Entity result. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.user' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject /groups/{group-id}/transitiveMembers/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.transitiveMembers.GetCount-1996 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMembers/graph.application: description: Casts the previous resource to application. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.application in the microsoft.graph.directoryObject collection operationId: groups.ListTransitiveMembers.AsApplication parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.applicationCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMembers/graph.application/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.TransitiveMembers.GetCount.AsApplication-eafb parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMembers/graph.device: description: Casts the previous resource to device. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.device in the microsoft.graph.directoryObject collection operationId: groups.ListTransitiveMembers.AsDevice parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.deviceCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMembers/graph.device/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.TransitiveMembers.GetCount.AsDevice-0e55 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMembers/graph.group: description: Casts the previous resource to group. get: tags: - groups.directoryObject summary: Microsoft Graph List group transitive members description: >- Get a list of the group's members. A group can have different object types as members. For more information about supported member types for different groups, see Group membership. This operation is transitive and returns a flat list of all nested members. An attempt to filter by an OData cast that represents an unsupported member type returns a 400 Bad Request error with the Request_UnsupportedQuery code. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-transitivemembers?view=graph-rest-1.0 operationId: groups.ListTransitiveMembers.AsGroup parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.groupCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMembers/graph.group/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.TransitiveMembers.GetCount.AsGroup-d4d7 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMembers/graph.orgContact: description: Casts the previous resource to orgContact. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.orgContact in the microsoft.graph.directoryObject collection operationId: groups.ListTransitiveMembers.AsOrgContact parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.orgContactCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMembers/graph.orgContact/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.TransitiveMembers.GetCount.AsOrgContact-a89e parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMembers/graph.servicePrincipal: description: Casts the previous resource to servicePrincipal. get: tags: - groups.directoryObject summary: >- Microsoft Graph Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection operationId: groups.ListTransitiveMembers.AsServicePrincipal parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.servicePrincipalCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMembers/graph.servicePrincipal/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.TransitiveMembers.GetCount.AsServicePrincipal-102f parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMembers/graph.user: description: Casts the previous resource to user. get: tags: - groups.directoryObject summary: Microsoft Graph List group transitive members description: >- Get a list of the group's members. A group can have different object types as members. For more information about supported member types for different groups, see Group membership. This operation is transitive and returns a flat list of all nested members. An attempt to filter by an OData cast that represents an unsupported member type returns a 400 Bad Request error with the Request_UnsupportedQuery code. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/group-list-transitivemembers?view=graph-rest-1.0 operationId: groups.ListTransitiveMembers.AsUser parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.userCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups/{group-id}/transitiveMembers/graph.user/$count: description: Provides operations to count the resources in the collection. get: tags: - groups.directoryObject summary: Microsoft Graph Get the number of the resource operationId: groups.TransitiveMembers.GetCount.AsUser-c600 parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /groups(uniqueName='{uniqueName}'): description: Provides operations to manage the collection of group entities. get: tags: - Groups.group summary: Microsoft Graph Get group description: >- Get the properties and relationships of a group object. This operation returns by default only a subset of all the available properties, as noted in the Properties section. To get properties that aren't_ returned by default, specify them in a $select OData query option. The hasMembersWithLicenseErrors and isArchived properties are an exception and aren't returned in the $select query. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/group-get?view=graph-rest-1.0 operationId: groups.group.GetGroupByUniqueName parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Groups.group summary: Microsoft Graph Upsert group description: "Create a new group object if it doesn't exist, or update the properties of an existing group object.\r\nYou can create or update the following types of group: By default, this operation returns only a subset of the properties for each group. For a list of properties that are returned by default, see the Properties section of the group resource. To get properties that are not returned by default, do a GET operation and specify the properties in a $select OData query option." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-1.0 operationId: groups.group.UpdateGroupByUniqueName requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.group' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Groups.group summary: Microsoft Graph Delete group description: >- Delete a group. When deleted, both Microsoft 365 and security groups are moved to a temporary container and can be restored within 30 days. After that time, they're permanently deleted. This doesn't apply to Distribution groups which are permanently deleted immediately. To learn more, see deletedItems. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/group-delete?view=graph-rest-1.0 operationId: groups.group.DeleteGroupByUniqueName parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: uniqueName in: path description: Alternate key of group required: true schema: type: string nullable: true /groups/$count: description: Provides operations to count the resources in the collection. get: tags: - Groups.group summary: Microsoft Graph Get the number of the resource operationId: groups.GetCount-044a parameters: - name: ConsistencyLevel in: header description: >- Indicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries schema: type: string examples: example-1: description: >- $search and $count queries require the client to set the ConsistencyLevel HTTP header to 'eventual'. value: eventual - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' /groups/delta(): description: Provides operations to call the delta method. get: tags: - groups.group.Functions summary: Microsoft Graph Invoke function delta description: >- Get newly created, updated, or deleted groups, including group membership changes, without having to perform a full read of the entire group collection. For more information, see Use delta query to track changes in Microsoft Graph data for details. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/group-delta?view=graph-rest-1.0 operationId: groups.delta parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Success content: application/json: schema: title: Collection of group type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-grouped-path: - /groups/{group-id}/calendar/calendarView/delta() - /groups/{group-id}/calendar/events/{event-id}/instances/delta() - /groups/{group-id}/calendar/events/delta() - /groups/{group-id}/calendarView/delta() - /groups/{group-id}/events/{event-id}/instances/delta() - /groups/{group-id}/events/delta() - /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta() - >- /groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta(token='{token}') - /groups/{group-id}/sites/delta() - >- /groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/channels/{channel-id}/messages/delta() - >- /groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/delta() - /groups/{group-id}/team/primaryChannel/messages/delta() - /groups/delta() /groups/getAvailableExtensionProperties: description: Provides operations to call the getAvailableExtensionProperties method. post: tags: - groups.group.Actions summary: Microsoft Graph Invoke action getAvailableExtensionProperties description: >- Return all directory extension definitions that are registered in a directory, including through multitenant apps. The following entities support extension properties: externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/directoryobject-getavailableextensionproperties?view=graph-rest-1.0 operationId: groups.getAvailableExtensionProperties requestBody: description: Action parameters content: application/json: schema: type: object properties: isSyncedFromOnPremises: type: boolean default: false nullable: true required: true responses: 2XX: description: Success content: application/json: schema: title: Collection of extensionProperty type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: >- #/components/schemas/microsoft.graph.extensionProperty 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /groups/getByIds: description: Provides operations to call the getByIds method. post: tags: - groups.group.Actions summary: Microsoft Graph Invoke action getByIds description: >- Return the directory objects specified in a list of IDs. Only a subset of user properties are returned by default in v1.0. Some common uses for this function are to: externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0 operationId: groups.getByIds requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string types: type: array items: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: title: Collection of directoryObject type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /groups/validateProperties: description: Provides operations to call the validateProperties method. post: tags: - groups.group.Actions summary: Microsoft Graph Invoke action validateProperties description: "Validate that a Microsoft 365 group's display name or mail nickname complies with naming policies. Clients can use this API to determine whether a display name or mail nickname is valid before trying to create a Microsoft 365 group. To validate the properties of an existing group, use the group: validateProperties function. The following policy validations are performed for the display name and mail nickname properties:\r\n1. Validate the prefix and suffix naming policy\r\n2. Validate the custom banned words policy\r\n3. Validate that the mail nickname is unique This API only returns the first validation failure that is encountered. If the properties fail multiple validations, only the first validation failure is returned. However, you can validate both the mail nickname and the display name and receive a collection of validation errors if you're only validating the prefix and suffix naming policy. To learn more about configuring naming policies, see Configure naming policy." externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0 operationId: groups.validateProperties requestBody: description: Action parameters content: application/json: schema: type: object properties: entityType: type: string nullable: true displayName: type: string nullable: true mailNickname: type: string nullable: true onBehalfOfUserId: pattern: >- ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ type: string format: uuid nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-docs-grouped-path: - /groups/{group-id}/validateProperties /sites/{site-id}/termStore/groups: description: >- Provides operations to manage the groups property of the microsoft.graph.termStore.store entity. get: tags: - Sites.store summary: Microsoft Graph List termStore groups description: Get a list of group objects in a term store. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/termstore-list-groups?view=graph-rest-1.0 operationId: sites.termStore.ListGroups parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.groupCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create termStore group description: Create a new group object in a term store. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/termstore-group-post?view=graph-rest-1.0 operationId: sites.termStore.CreateGroups requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site x-ms-docs-grouped-path: - /sites/{site-id}/termStores/{store-id}/groups /sites/{site-id}/termStore/groups/{group-id}: description: >- Provides operations to manage the groups property of the microsoft.graph.termStore.store entity. get: tags: - Sites.store summary: Microsoft Graph Get group description: Read the properties and relationships of a term store group object. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/termstore-group-get?view=graph-rest-1.0 operationId: sites.termStore.GetGroups parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property groups in sites operationId: sites.termStore.UpdateGroups requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete group description: Delete a group object in a term [store]. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/termstore-group-delete?view=graph-rest-1.0 operationId: sites.termStore.DeleteGroups parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /sites/{site-id}/termStores/{store-id}/groups/{group-id} /sites/{site-id}/termStore/groups/{group-id}/sets: description: >- Provides operations to manage the sets property of the microsoft.graph.termStore.group entity. get: tags: - Sites.store summary: Microsoft Graph List sets description: Get a list of the set objects and their properties. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/termstore-group-list-sets?view=graph-rest-1.0 operationId: sites.termStore.groups.ListSets parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.setCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to sets for sites operationId: sites.termStore.groups.CreateSets requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets - /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}: description: >- Provides operations to manage the sets property of the microsoft.graph.termStore.group entity. get: tags: - Sites.store summary: Microsoft Graph Get sets from sites description: All sets under the group in a term [store]. operationId: sites.termStore.groups.GetSets parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property sets in sites operationId: sites.termStore.groups.UpdateSets requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property sets for sites operationId: sites.termStore.groups.DeleteSets parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1} - /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1} /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.set entity. get: tags: - Sites.store summary: Microsoft Graph Get children from sites description: Children terms of set in term [store]. operationId: sites.termStore.groups.sets.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to children for sites operationId: sites.termStore.groups.sets.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - /sites/{site-id}/termStore/sets/{set-id}/children - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.set entity. get: tags: - Sites.store summary: Microsoft Graph Get children from sites description: Children terms of set in term [store]. operationId: sites.termStore.groups.sets.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property children in sites operationId: sites.termStore.groups.sets.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property children for sites operationId: sites.termStore.groups.sets.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id} - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id} /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get children from sites description: Children of current term. operationId: sites.termStore.groups.sets.children.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to children for sites operationId: sites.termStore.groups.sets.children.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get children from sites description: Children of current term. operationId: sites.termStore.groups.sets.children.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property children in sites operationId: sites.termStore.groups.sets.children.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property children for sites operationId: sites.termStore.groups.sets.children.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: sites.termStore.groups.sets.children.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to relations for sites operationId: sites.termStore.groups.sets.children.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: sites.termStore.groups.sets.children.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property relations in sites operationId: sites.termStore.groups.sets.children.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property relations for sites operationId: sites.termStore.groups.sets.children.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get fromTerm from sites description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: sites.termStore.groups.sets.children.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get set from sites description: The [set] in which the relation is relevant. operationId: sites.termStore.groups.sets.children.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get toTerm from sites description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: sites.termStore.groups.sets.children.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStore.groups.sets.children.children.relations.GetCount-0d34 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get set from sites description: The [set] in which the term is created. operationId: sites.termStore.groups.sets.children.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStore.groups.sets.children.children.GetCount-ecf0 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: sites.termStore.groups.sets.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to relations for sites operationId: sites.termStore.groups.sets.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: sites.termStore.groups.sets.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property relations in sites operationId: sites.termStore.groups.sets.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property relations for sites operationId: sites.termStore.groups.sets.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm: description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get fromTerm from sites description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: sites.termStore.groups.sets.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get set from sites description: The [set] in which the relation is relevant. operationId: sites.termStore.groups.sets.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm: description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get toTerm from sites description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: sites.termStore.groups.sets.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStore.groups.sets.children.relations.GetCount-0d34 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get set from sites description: The [set] in which the term is created. operationId: sites.termStore.groups.sets.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStore.groups.sets.children.GetCount-ecf0 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup: description: >- Provides operations to manage the parentGroup property of the microsoft.graph.termStore.set entity. get: tags: - Sites.store summary: Microsoft Graph Get parentGroup from sites description: The parent [group] that contains the set. operationId: sites.termStore.groups.sets.GetParentGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property parentGroup in sites operationId: sites.termStore.groups.sets.UpdateParentGroup requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property parentGroup for sites operationId: sites.termStore.groups.sets.DeleteParentGroup parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - /sites/{site-id}/termStore/sets/{set-id}/parentGroup - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/parentGroup - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.set entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: Indicates which terms have been pinned or reused directly under the set. operationId: sites.termStore.groups.sets.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to relations for sites operationId: sites.termStore.groups.sets.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations - /sites/{site-id}/termStore/sets/{set-id}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.set entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: Indicates which terms have been pinned or reused directly under the set. operationId: sites.termStore.groups.sets.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property relations in sites operationId: sites.termStore.groups.sets.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property relations for sites operationId: sites.termStore.groups.sets.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id} - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id} /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm: description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get fromTerm from sites description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: sites.termStore.groups.sets.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get set from sites description: The [set] in which the relation is relevant. operationId: sites.termStore.groups.sets.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm: description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get toTerm from sites description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: sites.termStore.groups.sets.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStore.groups.sets.relations.GetCount-efa1 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms: description: >- Provides operations to manage the terms property of the microsoft.graph.termStore.set entity. get: tags: - Sites.store summary: Microsoft Graph Get term description: Read the properties and relationships of a term object. operationId: sites.termStore.groups.sets.ListTerms parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to terms for sites operationId: sites.termStore.groups.sets.CreateTerms requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms - /sites/{site-id}/termStore/sets/{set-id}/terms - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}: description: >- Provides operations to manage the terms property of the microsoft.graph.termStore.set entity. get: tags: - Sites.store summary: Microsoft Graph Get term description: Read the properties and relationships of a term object. externalDocs: description: Find more info here url: >- https://learn.microsoft.com/graph/api/termstore-term-get?view=graph-rest-1.0 operationId: sites.termStore.groups.sets.GetTerms parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property terms in sites operationId: sites.termStore.groups.sets.UpdateTerms requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property terms for sites operationId: sites.termStore.groups.sets.DeleteTerms parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id} - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id} - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id} /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get children from sites description: Children of current term. operationId: sites.termStore.groups.sets.terms.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to children for sites operationId: sites.termStore.groups.sets.terms.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get children from sites description: Children of current term. operationId: sites.termStore.groups.sets.terms.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property children in sites operationId: sites.termStore.groups.sets.terms.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property children for sites operationId: sites.termStore.groups.sets.terms.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: sites.termStore.groups.sets.terms.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to relations for sites operationId: sites.termStore.groups.sets.terms.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: sites.termStore.groups.sets.terms.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property relations in sites operationId: sites.termStore.groups.sets.terms.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property relations for sites operationId: sites.termStore.groups.sets.terms.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get fromTerm from sites description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: sites.termStore.groups.sets.terms.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get set from sites description: The [set] in which the relation is relevant. operationId: sites.termStore.groups.sets.terms.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get toTerm from sites description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: sites.termStore.groups.sets.terms.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStore.groups.sets.terms.children.relations.GetCount-5476 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get set from sites description: The [set] in which the term is created. operationId: sites.termStore.groups.sets.terms.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStore.groups.sets.terms.children.GetCount-1cfd parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: sites.termStore.groups.sets.terms.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to relations for sites operationId: sites.termStore.groups.sets.terms.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: sites.termStore.groups.sets.terms.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property relations in sites operationId: sites.termStore.groups.sets.terms.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property relations for sites operationId: sites.termStore.groups.sets.terms.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm: description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get fromTerm from sites description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: sites.termStore.groups.sets.terms.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get set from sites description: The [set] in which the relation is relevant. operationId: sites.termStore.groups.sets.terms.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm: description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get toTerm from sites description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: sites.termStore.groups.sets.terms.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStore.groups.sets.terms.relations.GetCount-5d1f parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get set from sites description: The [set] in which the term is created. operationId: sites.termStore.groups.sets.terms.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStore.groups.sets.terms.GetCount-ccfd parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /sites/{site-id}/termStore/groups/{group-id}/sets/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStore.groups.sets.GetCount-5bbd parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /sites/{site-id}/termStore/groups/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStore.groups.GetCount-f00a parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site /sites/{site-id}/termStores/{store-id}/groups: description: >- Provides operations to manage the groups property of the microsoft.graph.termStore.store entity. get: tags: - Sites.store summary: Microsoft Graph Get groups from sites description: Collection of all groups available in the term store. operationId: sites.termStores.ListGroups parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.groupCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to groups for sites operationId: sites.termStores.CreateGroups requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store x-ms-docs-grouped-path: - /sites/{site-id}/termStore/groups /sites/{site-id}/termStores/{store-id}/groups/{group-id}: description: >- Provides operations to manage the groups property of the microsoft.graph.termStore.store entity. get: tags: - Sites.store summary: Microsoft Graph Get groups from sites description: Collection of all groups available in the term store. operationId: sites.termStores.GetGroups parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property groups in sites operationId: sites.termStores.UpdateGroups requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property groups for sites operationId: sites.termStores.DeleteGroups parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /sites/{site-id}/termStore/groups/{group-id} /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets: description: >- Provides operations to manage the sets property of the microsoft.graph.termStore.group entity. get: tags: - Sites.store summary: Microsoft Graph Get sets from sites description: All sets under the group in a term [store]. operationId: sites.termStores.groups.ListSets parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.setCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to sets for sites operationId: sites.termStores.groups.CreateSets requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group x-ms-docs-grouped-path: - /sites/{site-id}/termStore/groups/{group-id}/sets - /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}: description: >- Provides operations to manage the sets property of the microsoft.graph.termStore.group entity. get: tags: - Sites.store summary: Microsoft Graph Get sets from sites description: All sets under the group in a term [store]. operationId: sites.termStores.groups.GetSets parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property sets in sites operationId: sites.termStores.groups.UpdateSets requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property sets for sites operationId: sites.termStores.groups.DeleteSets parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id} - /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1} /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.set entity. get: tags: - Sites.store summary: Microsoft Graph Get children from sites description: Children terms of set in term [store]. operationId: sites.termStores.groups.sets.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to children for sites operationId: sites.termStores.groups.sets.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children - /sites/{site-id}/termStore/sets/{set-id}/children - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.set entity. get: tags: - Sites.store summary: Microsoft Graph Get children from sites description: Children terms of set in term [store]. operationId: sites.termStores.groups.sets.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property children in sites operationId: sites.termStores.groups.sets.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property children for sites operationId: sites.termStores.groups.sets.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id} - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id} - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id} /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get children from sites description: Children of current term. operationId: sites.termStores.groups.sets.children.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to children for sites operationId: sites.termStores.groups.sets.children.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get children from sites description: Children of current term. operationId: sites.termStores.groups.sets.children.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property children in sites operationId: sites.termStores.groups.sets.children.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property children for sites operationId: sites.termStores.groups.sets.children.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: sites.termStores.groups.sets.children.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to relations for sites operationId: sites.termStores.groups.sets.children.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations ? /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: sites.termStores.groups.sets.children.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property relations in sites operationId: sites.termStores.groups.sets.children.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property relations for sites operationId: sites.termStores.groups.sets.children.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get fromTerm from sites description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: sites.termStores.groups.sets.children.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get set from sites description: The [set] in which the relation is relevant. operationId: sites.termStores.groups.sets.children.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get toTerm from sites description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: sites.termStores.groups.sets.children.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm ? /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count : description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStores.groups.sets.children.children.relations.GetCount-d2cc parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get set from sites description: The [set] in which the term is created. operationId: sites.termStores.groups.sets.children.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStores.groups.sets.children.children.GetCount-f2a5 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: sites.termStores.groups.sets.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to relations for sites operationId: sites.termStores.groups.sets.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: sites.termStores.groups.sets.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property relations in sites operationId: sites.termStores.groups.sets.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property relations for sites operationId: sites.termStores.groups.sets.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm: description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get fromTerm from sites description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: sites.termStores.groups.sets.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get set from sites description: The [set] in which the relation is relevant. operationId: sites.termStores.groups.sets.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm: description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get toTerm from sites description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: sites.termStores.groups.sets.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStores.groups.sets.children.relations.GetCount-d2cc parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get set from sites description: The [set] in which the term is created. operationId: sites.termStores.groups.sets.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStores.groups.sets.children.GetCount-f2a5 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/parentGroup: description: >- Provides operations to manage the parentGroup property of the microsoft.graph.termStore.set entity. get: tags: - Sites.store summary: Microsoft Graph Get parentGroup from sites description: The parent [group] that contains the set. operationId: sites.termStores.groups.sets.GetParentGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property parentGroup in sites operationId: sites.termStores.groups.sets.UpdateParentGroup requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.group' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property parentGroup for sites operationId: sites.termStores.groups.sets.DeleteParentGroup parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup - /sites/{site-id}/termStore/sets/{set-id}/parentGroup - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.set entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: Indicates which terms have been pinned or reused directly under the set. operationId: sites.termStores.groups.sets.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to relations for sites operationId: sites.termStores.groups.sets.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations - /sites/{site-id}/termStore/sets/{set-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.set entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: Indicates which terms have been pinned or reused directly under the set. operationId: sites.termStores.groups.sets.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property relations in sites operationId: sites.termStores.groups.sets.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property relations for sites operationId: sites.termStores.groups.sets.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id} - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id} /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm: description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get fromTerm from sites description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: sites.termStores.groups.sets.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get set from sites description: The [set] in which the relation is relevant. operationId: sites.termStores.groups.sets.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm: description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get toTerm from sites description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: sites.termStores.groups.sets.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStores.groups.sets.relations.GetCount-4b3b parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms: description: >- Provides operations to manage the terms property of the microsoft.graph.termStore.set entity. get: tags: - Sites.store summary: Microsoft Graph Get terms from sites description: All the terms under the set. operationId: sites.termStores.groups.sets.ListTerms parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to terms for sites operationId: sites.termStores.groups.sets.CreateTerms requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set x-ms-docs-grouped-path: - /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms - /sites/{site-id}/termStore/sets/{set-id}/terms - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}: description: >- Provides operations to manage the terms property of the microsoft.graph.termStore.set entity. get: tags: - Sites.store summary: Microsoft Graph Get terms from sites description: All the terms under the set. operationId: sites.termStores.groups.sets.GetTerms parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property terms in sites operationId: sites.termStores.groups.sets.UpdateTerms requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property terms for sites operationId: sites.termStores.groups.sets.DeleteTerms parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id} - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id} - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id} /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get children from sites description: Children of current term. operationId: sites.termStores.groups.sets.terms.ListChildren parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.termCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to children for sites operationId: sites.termStores.groups.sets.terms.CreateChildren requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}: description: >- Provides operations to manage the children property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get children from sites description: Children of current term. operationId: sites.termStores.groups.sets.terms.GetChildren parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property children in sites operationId: sites.termStores.groups.sets.terms.UpdateChildren requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property children for sites operationId: sites.termStores.groups.sets.terms.DeleteChildren parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1} /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: sites.termStores.groups.sets.terms.children.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to relations for sites operationId: sites.termStores.groups.sets.terms.children.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations ? /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} : description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: sites.termStores.groups.sets.terms.children.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property relations in sites operationId: sites.termStores.groups.sets.terms.children.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property relations for sites operationId: sites.termStores.groups.sets.terms.children.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} ? /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm : description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get fromTerm from sites description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: sites.termStores.groups.sets.terms.children.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm ? /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set : description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get set from sites description: The [set] in which the relation is relevant. operationId: sites.termStores.groups.sets.terms.children.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set ? /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm : description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get toTerm from sites description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: sites.termStores.groups.sets.terms.children.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm ? /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count : description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStores.groups.sets.terms.children.relations.GetCount-563b parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get set from sites description: The [set] in which the term is created. operationId: sites.termStores.groups.sets.terms.children.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: term-id1 in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStores.groups.sets.terms.children.GetCount-18db parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: sites.termStores.groups.sets.terms.ListRelations parameters: - $ref: '#/components/parameters/top' - $ref: '#/components/parameters/skip' - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' - $ref: '#/components/parameters/count' - name: $orderby in: query description: Order items by property values style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: >- #/components/responses/microsoft.graph.termStore.relationCollectionResponse 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - Sites.store summary: Microsoft Graph Create new navigation property to relations for sites operationId: sites.termStores.groups.sets.terms.CreateRelations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}: description: >- Provides operations to manage the relations property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get relations from sites description: >- To indicate which terms are related to the current term as either pinned or reused. operationId: sites.termStores.groups.sets.terms.GetRelations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - Sites.store summary: Microsoft Graph Update the navigation property relations in sites operationId: sites.termStores.groups.sets.terms.UpdateRelations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.relation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - Sites.store summary: Microsoft Graph Delete navigation property relations for sites operationId: sites.termStores.groups.sets.terms.DeleteRelations parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id} - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id} /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm: description: >- Provides operations to manage the fromTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get fromTerm from sites description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. operationId: sites.termStores.groups.sets.terms.relations.GetFromTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get set from sites description: The [set] in which the relation is relevant. operationId: sites.termStores.groups.sets.terms.relations.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm: description: >- Provides operations to manage the toTerm property of the microsoft.graph.termStore.relation entity. get: tags: - Sites.store summary: Microsoft Graph Get toTerm from sites description: >- The to [term] of the relation. The term to which the relationship is defined. operationId: sites.termStores.groups.sets.terms.relations.GetToTerm parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.term' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term - name: relation-id in: path description: The unique identifier of relation required: true schema: type: string x-ms-docs-key-type: relation x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - /sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStores.groups.sets.terms.relations.GetCount-c55c parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/set: description: >- Provides operations to manage the set property of the microsoft.graph.termStore.term entity. get: tags: - Sites.store summary: Microsoft Graph Get set from sites description: The [set] in which the term is created. operationId: sites.termStores.groups.sets.terms.GetSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.termStore.set' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set - name: term-id in: path description: The unique identifier of term required: true schema: type: string x-ms-docs-key-type: term x-ms-docs-grouped-path: - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set - >- /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set - /sites/{site-id}/termStores/{store-id}/sets/{set-id}/terms/{term-id}/set /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/{set-id}/terms/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStores.groups.sets.terms.GetCount-0e2e parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group - name: set-id in: path description: The unique identifier of set required: true schema: type: string x-ms-docs-key-type: set /sites/{site-id}/termStores/{store-id}/groups/{group-id}/sets/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStores.groups.sets.GetCount-7f44 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store - name: group-id in: path description: The unique identifier of group required: true schema: type: string x-ms-docs-key-type: group /sites/{site-id}/termStores/{store-id}/groups/$count: description: Provides operations to count the resources in the collection. get: tags: - Sites.store summary: Microsoft Graph Get the number of the resource operationId: sites.termStores.groups.GetCount-6c15 parameters: - $ref: '#/components/parameters/search' - $ref: '#/components/parameters/filter' responses: 2XX: $ref: '#/components/responses/ODataCountResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: site-id in: path description: The unique identifier of site required: true schema: type: string x-ms-docs-key-type: site - name: store-id in: path description: The unique identifier of store required: true schema: type: string x-ms-docs-key-type: store components: schemas: microsoft.graph.externalConnectors.identity: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: identity required: - '@odata.type' type: object properties: type: anyOf: - $ref: >- #/components/schemas/microsoft.graph.externalConnectors.identityType - type: object nullable: true description: >- The type of identity. The possible values are: user or group for Microsoft Entra identities and externalgroup for groups in an external system. '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.externalConnectors.identity' microsoft.graph.group: allOf: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - title: group required: - '@odata.type' type: object properties: allowExternalSenders: type: boolean description: >- Indicates if people external to the organization can send messages to the group. The default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}). nullable: true assignedLabels: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLabel' description: >- The list of sensitivity label pairs (label ID, label name) associated with a Microsoft 365 group. Returned only on $select. This property can be updated only in delegated scenarios where the caller requires both the Microsoft Graph permission and a supported administrator role. assignedLicenses: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' description: >- The licenses that are assigned to the group. Returned only on $select. Supports $filter (eq). Read-only. autoSubscribeNewMembers: type: boolean description: >- Indicates if new members added to the group are autosubscribed to receive email notifications. You can set this property in a PATCH request for the group; don't set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}). nullable: true classification: type: string description: >- Describes a classification for the group (such as low, medium, or high business impact). Valid values for this property are defined by creating a ClassificationList setting value, based on the template definition.Returned by default. Supports $filter (eq, ne, not, ge, le, startsWith). nullable: true createdDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Timestamp of when the group was created. The value can't be modified and is automatically populated when the group is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on January 1, 2014 is 2014-01-01T00:00:00Z. Returned by default. Read-only. format: date-time nullable: true description: type: string description: >- An optional description for the group. Returned by default. Supports $filter (eq, ne, not, ge, le, startsWith) and $search. nullable: true displayName: type: string description: >- The display name for the group. This property is required when a group is created and can't be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderby. nullable: true expirationDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Timestamp of when the group is set to expire. It's null for security groups, but for Microsoft 365 groups, it represents when the group is set to expire as defined in the groupLifecyclePolicy. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on January 1, 2014 is 2014-01-01T00:00:00Z. Returned by default. Supports $filter (eq, ne, not, ge, le, in). Read-only. format: date-time nullable: true groupTypes: type: array items: type: string description: >- Specifies the group type and its membership. If the collection contains Unified, the group is a Microsoft 365 group; otherwise, it's either a security group or a distribution group. For details, see groups overview.If the collection includes DynamicMembership, the group has dynamic membership; otherwise, membership is static. Returned by default. Supports $filter (eq, not). hasMembersWithLicenseErrors: type: boolean description: >- Indicates whether there are members in this group that have license errors from its group-based license assignment. This property is never returned on a GET operation. You can use it as a $filter argument to get groups that have members with license errors (that is, filter for this property being true). See an example. Supports $filter (eq). nullable: true hideFromAddressLists: type: boolean description: >- True if the group isn't displayed in certain parts of the Outlook UI: the Address Book, address lists for selecting message recipients, and the Browse Groups dialog for searching groups; otherwise, false. The default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}). nullable: true hideFromOutlookClients: type: boolean description: >- True if the group isn't displayed in Outlook clients, such as Outlook for Windows and Outlook on the web; otherwise, false. The default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}). nullable: true isArchived: type: boolean description: >- When a group is associated with a team, this property determines whether the team is in read-only mode.To read this property, use the /group/{groupId}/team endpoint or the Get team API. To update this property, use the archiveTeam and unarchiveTeam APIs. nullable: true isAssignableToRole: type: boolean description: >- Indicates whether this group can be assigned to a Microsoft Entra role. Optional. This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true, visibility must be Hidden, and the group can't be a dynamic group (that is, groupTypes can't contain DynamicMembership). Only callers with at least the Privileged Role Administrator role can set this property. The caller must also be assigned the RoleManagement.ReadWrite.Directory permission to set this property or update the membership of such groups. For more, see Using a group to manage Microsoft Entra role assignmentsUsing this feature requires a Microsoft Entra ID P1 license. Returned by default. Supports $filter (eq, ne, not). nullable: true isManagementRestricted: type: boolean description: >- Indicates whether the group is a member of a restricted management administrative unit. If not set, the default value is null and the default behavior is false. Read-only. To manage a group member of a restricted management administrative unit, the administrator or calling app must be assigned a Microsoft Entra role at the scope of the restricted management administrative unit. Returned only on $select. nullable: true isSubscribedByMail: type: boolean description: >- Indicates whether the signed-in user is subscribed to receive email conversations. The default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}). nullable: true licenseProcessingState: anyOf: - $ref: '#/components/schemas/microsoft.graph.licenseProcessingState' - type: object nullable: true description: >- Indicates the status of the group license assignment to all group members. The default value is false. Read-only. Possible values: QueuedForProcessing, ProcessingInProgress, and ProcessingComplete.Returned only on $select. Read-only. mail: type: string description: >- The SMTP address for the group, for example, 'serviceadmins@contoso.com'. Returned by default. Read-only. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). nullable: true mailEnabled: type: boolean description: >- Specifies whether the group is mail-enabled. Required. Returned by default. Supports $filter (eq, ne, not). nullable: true mailNickname: type: string description: >- The mail alias for the group, unique for Microsoft 365 groups in the organization. Maximum length is 64 characters. This property can contain only characters in the ASCII character set 0 - 127 except the following characters: @ () / [] ' ; : <> , SPACE. Required. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). nullable: true membershipRule: type: string description: >- The rule that determines members for this group if the group is a dynamic group (groupTypes contains DynamicMembership). For more information about the syntax of the membership rule, see Membership Rules syntax. Returned by default. Supports $filter (eq, ne, not, ge, le, startsWith). nullable: true membershipRuleProcessingState: type: string description: >- Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default. Supports $filter (eq, ne, not, in). nullable: true onPremisesDomainName: type: string description: >- Contains the on-premises domain FQDN, also called dnsDomainName synchronized from the on-premises directory. The property is only populated for customers synchronizing their on-premises directory to Microsoft Entra ID via Microsoft Entra Connect.Returned by default. Read-only. nullable: true onPremisesLastSyncDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Indicates the last time at which the group was synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on January 1, 2014 is 2014-01-01T00:00:00Z. Returned by default. Read-only. Supports $filter (eq, ne, not, ge, le, in). format: date-time nullable: true onPremisesNetBiosName: type: string description: >- Contains the on-premises netBios name synchronized from the on-premises directory. The property is only populated for customers synchronizing their on-premises directory to Microsoft Entra ID via Microsoft Entra Connect.Returned by default. Read-only. nullable: true onPremisesProvisioningErrors: type: array items: $ref: >- #/components/schemas/microsoft.graph.onPremisesProvisioningError description: >- Errors when using Microsoft synchronization product during provisioning. Returned by default. Supports $filter (eq, not). onPremisesSamAccountName: type: string description: >- Contains the on-premises SAM account name synchronized from the on-premises directory. The property is only populated for customers synchronizing their on-premises directory to Microsoft Entra ID via Microsoft Entra Connect.Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith). Read-only. nullable: true onPremisesSecurityIdentifier: type: string description: >- Contains the on-premises security identifier (SID) for the group synchronized from on-premises to the cloud. Read-only. Returned by default. Supports $filter (eq including on null values). nullable: true onPremisesSyncEnabled: type: boolean description: >- true if this group is synced from an on-premises directory; false if this group was originally synced from an on-premises directory but is no longer synced; null if this object has never synced from an on-premises directory (default). Returned by default. Read-only. Supports $filter (eq, ne, not, in, and eq on null values). nullable: true preferredDataLocation: type: string description: >- The preferred data location for the Microsoft 365 group. By default, the group inherits the group creator's preferred data location. To set this property, the calling app must be granted the Directory.ReadWrite.All permission and the user be assigned at least one of the following Microsoft Entra roles: User Account Administrator Directory Writer Exchange Administrator SharePoint Administrator For more information about this property, see OneDrive Online Multi-Geo. Nullable. Returned by default. nullable: true preferredLanguage: type: string description: >- The preferred language for a Microsoft 365 group. Should follow ISO 639-1 Code; for example, en-US. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). nullable: true proxyAddresses: type: array items: type: string description: >- Email addresses for the group that direct to the same group mailbox. For example: ['SMTP: bob@contoso.com', 'smtp: bob@sales.contoso.com']. The any operator is required to filter expressions on multi-valued properties. Returned by default. Read-only. Not nullable. Supports $filter (eq, not, ge, le, startsWith, endsWith, /$count eq 0, /$count ne 0). renewedDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Timestamp of when the group was last renewed. This value can't be modified directly and is only updated via the renew service action. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on January 1, 2014 is 2014-01-01T00:00:00Z. Returned by default. Supports $filter (eq, ne, not, ge, le, in). Read-only. format: date-time nullable: true securityEnabled: type: boolean description: >- Specifies whether the group is a security group. Required. Returned by default. Supports $filter (eq, ne, not, in). nullable: true securityIdentifier: type: string description: >- Security identifier of the group, used in Windows scenarios. Read-only. Returned by default. nullable: true serviceProvisioningErrors: type: array items: $ref: '#/components/schemas/microsoft.graph.serviceProvisioningError' description: >- Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a group object. Supports $filter (eq, not, for isResolved and serviceInstance). theme: type: string description: >- Specifies a Microsoft 365 group's color theme. Possible values are Teal, Purple, Green, Blue, Pink, Orange, or Red. Returned by default. nullable: true uniqueName: type: string description: >- The unique identifier that can be assigned to a group and used as an alternate key. Immutable. Read-only. nullable: true unseenCount: maximum: 2147483647 minimum: -2147483648 type: number description: >- Count of conversations that received new posts since the signed-in user last visited the group. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}). format: int32 nullable: true visibility: type: string description: >- Specifies the group join policy and group content visibility for groups. The possible values are: Private, Public, or HiddenMembership. HiddenMembership can be set only for Microsoft 365 groups when the groups are created. It can't be updated later. Other values of visibility can be updated after group creation. If visibility value isn't specified during group creation on Microsoft Graph, a security group is created as Private by default, and the Microsoft 365 group is Public. Groups assignable to roles are always Private. To learn more, see group visibility options. Returned by default. Nullable. nullable: true acceptedSenders: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- The list of users or groups allowed to create posts or calendar events in this group. If this list is nonempty, then only users or groups listed here are allowed to post. x-ms-navigationProperty: true appRoleAssignments: type: array items: $ref: '#/components/schemas/microsoft.graph.appRoleAssignment' description: >- Represents the app roles granted to a group for an application. Supports $expand. x-ms-navigationProperty: true calendar: anyOf: - $ref: '#/components/schemas/microsoft.graph.calendar' - type: object nullable: true description: The group's calendar. Read-only. x-ms-navigationProperty: true calendarView: type: array items: $ref: '#/components/schemas/microsoft.graph.event' description: The calendar view for the calendar. Read-only. x-ms-navigationProperty: true conversations: type: array items: $ref: '#/components/schemas/microsoft.graph.conversation' description: The group's conversations. x-ms-navigationProperty: true createdOnBehalfOf: anyOf: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - type: object nullable: true description: >- The user (or application) that created the group. NOTE: This property isn't set if the user is an administrator. Read-only. x-ms-navigationProperty: true drive: anyOf: - $ref: '#/components/schemas/microsoft.graph.drive' - type: object nullable: true description: The group's default drive. Read-only. x-ms-navigationProperty: true drives: type: array items: $ref: '#/components/schemas/microsoft.graph.drive' description: The group's drives. Read-only. x-ms-navigationProperty: true events: type: array items: $ref: '#/components/schemas/microsoft.graph.event' description: The group's calendar events. x-ms-navigationProperty: true extensions: type: array items: $ref: '#/components/schemas/microsoft.graph.extension' description: >- The collection of open extensions defined for the group. Read-only. Nullable. x-ms-navigationProperty: true groupLifecyclePolicies: type: array items: $ref: '#/components/schemas/microsoft.graph.groupLifecyclePolicy' description: >- The collection of lifecycle policies for this group. Read-only. Nullable. x-ms-navigationProperty: true memberOf: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable. Supports $expand. x-ms-navigationProperty: true members: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- The members of this group, who can be users, devices, other groups, or service principals. Supports the List members, Add member, and Remove member operations. Nullable. Supports $expand including nested $select. For example, /groups?$filter=startsWith(displayName,'Role')&$select=id,displayName&$expand=members($select=id,userPrincipalName,displayName). x-ms-navigationProperty: true membersWithLicenseErrors: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- A list of group members with license errors from this group-based license assignment. Read-only. x-ms-navigationProperty: true onenote: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenote' - type: object nullable: true x-ms-navigationProperty: true onPremisesSyncBehavior: anyOf: - $ref: '#/components/schemas/microsoft.graph.onPremisesSyncBehavior' - type: object nullable: true x-ms-navigationProperty: true owners: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- The owners of the group who can be users or service principals. Limited to 100 owners. Nullable. If this property isn't specified when creating a Microsoft 365 group the calling user (admin or non-admin) is automatically assigned as the group owner. A non-admin user can't explicitly add themselves to this collection when they're creating the group. For more information, see the related known issue. For security groups, the admin user isn't automatically added to this collection. For more information, see the related known issue. Supports $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1); Supports $expand including nested $select. For example, /groups?$filter=startsWith(displayName,'Role')&$select=id,displayName&$expand=owners($select=id,userPrincipalName,displayName). x-ms-navigationProperty: true permissionGrants: type: array items: $ref: >- #/components/schemas/microsoft.graph.resourceSpecificPermissionGrant x-ms-navigationProperty: true photo: anyOf: - $ref: '#/components/schemas/microsoft.graph.profilePhoto' - type: object nullable: true description: The group's profile photo x-ms-navigationProperty: true photos: type: array items: $ref: '#/components/schemas/microsoft.graph.profilePhoto' description: The profile photos owned by the group. Read-only. Nullable. x-ms-navigationProperty: true planner: anyOf: - $ref: '#/components/schemas/microsoft.graph.plannerGroup' - type: object nullable: true description: >- Entry-point to Planner resource that might exist for a Unified Group. x-ms-navigationProperty: true rejectedSenders: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- The list of users or groups not allowed to create posts or calendar events in this group. Nullable x-ms-navigationProperty: true settings: type: array items: $ref: '#/components/schemas/microsoft.graph.groupSetting' description: >- Settings that can govern this group's behavior, like whether members can invite guests to the group. Nullable. x-ms-navigationProperty: true sites: type: array items: $ref: '#/components/schemas/microsoft.graph.site' description: >- The list of SharePoint sites in this group. Access the default site with /sites/root. x-ms-navigationProperty: true team: anyOf: - $ref: '#/components/schemas/microsoft.graph.team' - type: object nullable: true description: The team associated with this group. x-ms-navigationProperty: true threads: type: array items: $ref: '#/components/schemas/microsoft.graph.conversationThread' description: The group's conversation threads. Nullable. x-ms-navigationProperty: true transitiveMemberOf: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- The groups that a group is a member of, either directly or through nested membership. Nullable. x-ms-navigationProperty: true transitiveMembers: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: The direct and transitive members of a group. Nullable. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.group' description: Represents a Microsoft Entra group. x-ms-discriminator-value: '#microsoft.graph.group' microsoft.graph.appRoleAssignment: allOf: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - title: appRoleAssignment required: - '@odata.type' type: object properties: appRoleId: pattern: >- ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ type: string description: >- The identifier (id) for the app role that's assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application hasn't declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. format: uuid createdDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The time when the app role assignment was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. format: date-time nullable: true principalDisplayName: type: string description: >- The display name of the user, group, or service principal that was granted the app role assignment. Maximum length is 256 characters. Read-only. Supports $filter (eq and startswith). nullable: true principalId: pattern: >- ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ type: string description: >- The unique identifier (id) for the user, security group, or service principal being granted the app role. Security groups with dynamic memberships are supported. Required on create. format: uuid nullable: true principalType: type: string description: >- The type of the assigned principal. This can either be User, Group, or ServicePrincipal. Read-only. nullable: true resourceDisplayName: type: string description: >- The display name of the resource app's service principal to which the assignment is made. Maximum length is 256 characters. nullable: true resourceId: pattern: >- ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ type: string description: >- The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). format: uuid nullable: true '@odata.type': type: string default: '#microsoft.graph.appRoleAssignment' x-ms-discriminator-value: '#microsoft.graph.appRoleAssignment' microsoft.graph.calendar: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: calendar required: - '@odata.type' type: object properties: allowedOnlineMeetingProviders: type: array items: anyOf: - $ref: >- #/components/schemas/microsoft.graph.onlineMeetingProviderType - type: object nullable: true description: >- Represent the online meeting service providers that can be used to create online meetings in this calendar. The possible values are: unknown, skypeForBusiness, skypeForConsumer, teamsForBusiness. canEdit: type: boolean description: >- true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who shared a calendar and granted write access. nullable: true canShare: type: boolean description: >- true if the user has permission to share the calendar, false otherwise. Only the user who created the calendar can share it. nullable: true canViewPrivateItems: type: boolean description: >- If true, the user can read calendar items that have been marked private, false otherwise. nullable: true changeKey: type: string description: >- Identifies the version of the calendar object. Every time the calendar is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only. nullable: true color: anyOf: - $ref: '#/components/schemas/microsoft.graph.calendarColor' - type: object nullable: true description: >- Specifies the color theme to distinguish the calendar from other calendars in a UI. The property values are: auto, lightBlue, lightGreen, lightOrange, lightGray, lightYellow, lightTeal, lightPink, lightBrown, lightRed, maxColor. defaultOnlineMeetingProvider: anyOf: - $ref: >- #/components/schemas/microsoft.graph.onlineMeetingProviderType - type: object nullable: true description: >- The default online meeting provider for meetings sent from this calendar. The possible values are: unknown, skypeForBusiness, skypeForConsumer, teamsForBusiness. hexColor: type: string description: >- The calendar color, expressed in a hex color code of three hexadecimal values, each ranging from 00 to FF and representing the red, green, or blue components of the color in the RGB color space. If the user has never explicitly set a color for the calendar, this property is empty. Read-only. nullable: true isDefaultCalendar: type: boolean description: >- true if this is the default calendar where new events are created by default, false otherwise. nullable: true isRemovable: type: boolean description: >- Indicates whether this user calendar can be deleted from the user mailbox. nullable: true isTallyingResponses: type: boolean description: >- Indicates whether this user calendar supports tracking of meeting responses. Only meeting invites sent from users' primary calendars support tracking of meeting responses. nullable: true name: type: string description: The calendar name. nullable: true owner: anyOf: - $ref: '#/components/schemas/microsoft.graph.emailAddress' - type: object nullable: true description: >- If set, this represents the user who created or added the calendar. For a calendar that the user created or added, the owner property is set to the user. For a calendar shared with the user, the owner property is set to the person who shared that calendar with the user. calendarPermissions: type: array items: $ref: '#/components/schemas/microsoft.graph.calendarPermission' description: The permissions of the users with whom the calendar is shared. x-ms-navigationProperty: true calendarView: type: array items: $ref: '#/components/schemas/microsoft.graph.event' description: >- The calendar view for the calendar. Navigation property. Read-only. x-ms-navigationProperty: true events: type: array items: $ref: '#/components/schemas/microsoft.graph.event' description: The events in the calendar. Navigation property. Read-only. x-ms-navigationProperty: true multiValueExtendedProperties: type: array items: $ref: >- #/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty description: >- The collection of multi-value extended properties defined for the calendar. Read-only. Nullable. x-ms-navigationProperty: true singleValueExtendedProperties: type: array items: $ref: >- #/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty description: >- The collection of single-value extended properties defined for the calendar. Read-only. Nullable. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.calendar' microsoft.graph.calendarPermission: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: calendarPermission required: - '@odata.type' type: object properties: allowedRoles: type: array items: anyOf: - $ref: '#/components/schemas/microsoft.graph.calendarRoleType' - type: object nullable: true description: >- List of allowed sharing or delegating permission levels for the calendar. The possible values are: none, freeBusyRead, limitedRead, read, write, delegateWithoutPrivateEventAccess, delegateWithPrivateEventAccess, custom. emailAddress: anyOf: - $ref: '#/components/schemas/microsoft.graph.emailAddress' - type: object nullable: true description: >- Represents a share recipient or delegate who has access to the calendar. For the 'My Organization' share recipient, the address property is null. Read-only. isInsideOrganization: type: boolean description: >- True if the user in context (recipient or delegate) is inside the same organization as the calendar owner. nullable: true isRemovable: type: boolean description: >- True if the user can be removed from the list of recipients or delegates for the specified calendar, false otherwise. The 'My organization' user determines the permissions other people within your organization have to the given calendar. You can't remove 'My organization' as a share recipient to a calendar. nullable: true role: anyOf: - $ref: '#/components/schemas/microsoft.graph.calendarRoleType' - type: object nullable: true description: >- Current permission level of the calendar share recipient or delegate. '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.calendarPermission' BaseDeltaFunctionResponse: title: Base delta function response type: object properties: '@odata.nextLink': type: string nullable: true '@odata.deltaLink': type: string nullable: true microsoft.graph.event: allOf: - $ref: '#/components/schemas/microsoft.graph.outlookItem' - title: event required: - '@odata.type' type: object properties: allowNewTimeProposals: type: boolean description: >- true if the meeting organizer allows invitees to propose a new time when responding; otherwise, false. Optional. The default is true. nullable: true attendees: type: array items: $ref: '#/components/schemas/microsoft.graph.attendee' description: The collection of attendees for the event. body: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemBody' - type: object nullable: true description: >- The body of the message associated with the event. It can be in HTML or text format. bodyPreview: type: string description: >- The preview of the message associated with the event. It's in text format. nullable: true cancelledOccurrences: type: array items: type: string description: >- Contains occurrenceId property values of canceled instances in a recurring series, if the event is the series master. Instances in a recurring series that are canceled are called canceled occurences.Returned only on $select in a Get operation which specifies the ID (seriesMasterId property value) of a series master event. end: anyOf: - $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' - type: object nullable: true description: >- The date, time, and time zone that the event ends. By default, the end time is in UTC. hasAttachments: type: boolean description: Set to true if the event has attachments. nullable: true hideAttendees: type: boolean description: >- When set to true, each attendee only sees themselves in the meeting request and meeting Tracking list. The default is false. nullable: true iCalUId: type: string description: >- A unique identifier for an event across calendars. This ID is different for each occurrence in a recurring series. Read-only. nullable: true importance: anyOf: - $ref: '#/components/schemas/microsoft.graph.importance' - type: object nullable: true description: >- The importance of the event. The possible values are: low, normal, high. isAllDay: type: boolean description: >- Set to true if the event lasts all day. If true, regardless of whether it's a single-day or multi-day event, start, and endtime must be set to midnight and be in the same time zone. nullable: true isCancelled: type: boolean description: Set to true if the event has been canceled. nullable: true isDraft: type: boolean description: >- Set to true if the user has updated the meeting in Outlook but hasn't sent the updates to attendees. Set to false if all changes are sent, or if the event is an appointment without any attendees. nullable: true isOnlineMeeting: type: boolean description: >- True if this event has online meeting information (that is, onlineMeeting points to an onlineMeetingInfo resource), false otherwise. Default is false (onlineMeeting is null). Optional. After you set isOnlineMeeting to true, Microsoft Graph initializes onlineMeeting. Subsequently, Outlook ignores any further changes to isOnlineMeeting, and the meeting remains available online. nullable: true isOrganizer: type: boolean description: >- Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). It also applies if a delegate organized the event on behalf of the owner. nullable: true isReminderOn: type: boolean description: Set to true if an alert is set to remind the user of the event. nullable: true location: anyOf: - $ref: '#/components/schemas/microsoft.graph.location' - type: object nullable: true description: The location of the event. locations: type: array items: $ref: '#/components/schemas/microsoft.graph.location' description: >- The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection are removed and replaced by the new location value. onlineMeeting: anyOf: - $ref: '#/components/schemas/microsoft.graph.onlineMeetingInfo' - type: object nullable: true description: >- Details for an attendee to join the meeting online. The default is null. Read-only. After you set the isOnlineMeeting and onlineMeetingProvider properties to enable a meeting online, Microsoft Graph initializes onlineMeeting. When set, the meeting remains available online, and you can't change the isOnlineMeeting, onlineMeetingProvider, and onlneMeeting properties again. onlineMeetingProvider: anyOf: - $ref: >- #/components/schemas/microsoft.graph.onlineMeetingProviderType - type: object nullable: true description: >- Represents the online meeting service provider. By default, onlineMeetingProvider is unknown. The possible values are unknown, teamsForBusiness, skypeForBusiness, and skypeForConsumer. Optional. After you set onlineMeetingProvider, Microsoft Graph initializes onlineMeeting. Subsequently, you can't change onlineMeetingProvider again, and the meeting remains available online. onlineMeetingUrl: type: string description: >- A URL for an online meeting. The property is set only when an organizer specifies in Outlook that an event is an online meeting such as Skype. Read-only.To access the URL to join an online meeting, use joinUrl which is exposed via the onlineMeeting property of the event. The onlineMeetingUrl property will be deprecated in the future. nullable: true organizer: anyOf: - $ref: '#/components/schemas/microsoft.graph.recipient' - type: object nullable: true description: The organizer of the event. originalEndTimeZone: type: string description: >- The end time zone that was set when the event was created. A value of tzone://Microsoft/Custom indicates that a legacy custom time zone was set in desktop Outlook. nullable: true originalStart: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Represents the start time of an event when it's initially created as an occurrence or exception in a recurring series. This property is not returned for events that are single instances. Its date and time information is expressed in ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z format: date-time nullable: true originalStartTimeZone: type: string description: >- The start time zone that was set when the event was created. A value of tzone://Microsoft/Custom indicates that a legacy custom time zone was set in desktop Outlook. nullable: true recurrence: anyOf: - $ref: '#/components/schemas/microsoft.graph.patternedRecurrence' - type: object nullable: true description: The recurrence pattern for the event. reminderMinutesBeforeStart: maximum: 2147483647 minimum: -2147483648 type: number description: >- The number of minutes before the event start time that the reminder alert occurs. format: int32 nullable: true responseRequested: type: boolean description: >- Default is true, which represents the organizer would like an invitee to send a response to the event. nullable: true responseStatus: anyOf: - $ref: '#/components/schemas/microsoft.graph.responseStatus' - type: object nullable: true description: >- Indicates the type of response sent in response to an event message. sensitivity: anyOf: - $ref: '#/components/schemas/microsoft.graph.sensitivity' - type: object nullable: true description: >- The possible values are: normal, personal, private, and confidential. seriesMasterId: type: string description: >- The ID for the recurring series master item, if this event is part of a recurring series. nullable: true showAs: anyOf: - $ref: '#/components/schemas/microsoft.graph.freeBusyStatus' - type: object nullable: true description: >- The status to show. The possible values are: free, tentative, busy, oof, workingElsewhere, unknown. start: anyOf: - $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' - type: object nullable: true description: >- The start date, time, and time zone of the event. By default, the start time is in UTC. subject: type: string description: The text of the event's subject line. nullable: true transactionId: type: string description: >- A custom identifier specified by a client app for the server to avoid redundant POST operations in case of client retries to create the same event. It's useful when low network connectivity causes the client to time out before receiving a response from the server for the client's prior create-event request. After you set transactionId when creating an event, you can't change transactionId in a subsequent update. This property is only returned in a response payload if an app has set it. Optional. nullable: true type: anyOf: - $ref: '#/components/schemas/microsoft.graph.eventType' - type: object nullable: true description: >- The event type. The possible values are: singleInstance, occurrence, exception, seriesMaster. Read-only webLink: type: string description: >- The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame. nullable: true attachments: type: array items: $ref: '#/components/schemas/microsoft.graph.attachment' description: >- The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. x-ms-navigationProperty: true calendar: anyOf: - $ref: '#/components/schemas/microsoft.graph.calendar' - type: object nullable: true description: >- The calendar that contains the event. Navigation property. Read-only. x-ms-navigationProperty: true exceptionOccurrences: type: array items: $ref: '#/components/schemas/microsoft.graph.event' description: >- Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event. x-ms-navigationProperty: true extensions: type: array items: $ref: '#/components/schemas/microsoft.graph.extension' description: >- The collection of open extensions defined for the event. Nullable. x-ms-navigationProperty: true instances: type: array items: $ref: '#/components/schemas/microsoft.graph.event' description: >- The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable. x-ms-navigationProperty: true multiValueExtendedProperties: type: array items: $ref: >- #/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty description: >- The collection of multi-value extended properties defined for the event. Read-only. Nullable. x-ms-navigationProperty: true singleValueExtendedProperties: type: array items: $ref: >- #/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty description: >- The collection of single-value extended properties defined for the event. Read-only. Nullable. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.event' x-ms-discriminator-value: '#microsoft.graph.event' microsoft.graph.attachment: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: attachment required: - '@odata.type' type: object properties: contentType: type: string description: The MIME type. nullable: true isInline: type: boolean description: >- true if the attachment is an inline attachment; otherwise, false. lastModifiedDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z format: date-time nullable: true name: type: string description: The attachment's file name. nullable: true size: maximum: 2147483647 minimum: -2147483648 type: number description: The length of the attachment in bytes. format: int32 '@odata.type': type: string discriminator: propertyName: '@odata.type' mapping: '#microsoft.graph.fileAttachment': '#/components/schemas/microsoft.graph.fileAttachment' '#microsoft.graph.itemAttachment': '#/components/schemas/microsoft.graph.itemAttachment' '#microsoft.graph.referenceAttachment': '#/components/schemas/microsoft.graph.referenceAttachment' microsoft.graph.attachmentItem: title: attachmentItem required: - '@odata.type' type: object properties: attachmentType: anyOf: - $ref: '#/components/schemas/microsoft.graph.attachmentType' - type: object nullable: true description: >- The type of attachment. The possible values are: file, item, reference. Required. contentId: type: string description: >- The CID or Content-Id of the attachment for referencing for the in-line attachments using the tag in HTML messages. Optional. nullable: true contentType: type: string description: The nature of the data in the attachment. Optional. nullable: true isInline: type: boolean description: >- true if the attachment is an inline attachment; otherwise, false. Optional. nullable: true name: type: string description: >- The display name of the attachment. This can be a descriptive string and doesn't have to be the actual file name. Required. nullable: true size: type: number description: The length of the attachment in bytes. Required. format: int64 nullable: true '@odata.type': type: string microsoft.graph.uploadSession: title: uploadSession required: - '@odata.type' type: object properties: expirationDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The date and time in UTC that the upload session expires. The complete file must be uploaded before this expiration time is reached. Each fragment uploaded during the session extends the expiration time. format: date-time nullable: true nextExpectedRanges: type: array items: type: string nullable: true description: >- A collection of byte ranges that the server is missing for the file. These ranges are zero indexed and of the format 'start-end' (for example '0-26' to indicate the first 27 bytes of the file). When uploading files as Outlook attachments, instead of a collection of ranges, this property always indicates a single value '{start}', the location in the file where the next upload should begin. uploadUrl: type: string description: >- The URL endpoint that accepts PUT requests for byte ranges of the file. nullable: true '@odata.type': type: string microsoft.graph.extension: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: extension required: - '@odata.type' type: object properties: '@odata.type': type: string discriminator: propertyName: '@odata.type' mapping: '#microsoft.graph.openTypeExtension': '#/components/schemas/microsoft.graph.openTypeExtension' microsoft.graph.timeSlot: title: timeSlot required: - '@odata.type' type: object properties: end: $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' start: $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' '@odata.type': type: string microsoft.graph.recipient: title: recipient required: - '@odata.type' type: object properties: emailAddress: anyOf: - $ref: '#/components/schemas/microsoft.graph.emailAddress' - type: object nullable: true description: The recipient's email address. '@odata.type': type: string discriminator: propertyName: '@odata.type' mapping: '#microsoft.graph.attendeeBase': '#/components/schemas/microsoft.graph.attendeeBase' '#microsoft.graph.attendee': '#/components/schemas/microsoft.graph.attendee' microsoft.graph.dateTimeTimeZone: title: dateTimeTimeZone required: - '@odata.type' type: object properties: dateTime: type: string description: >- A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000). timeZone: type: string description: >- Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values. nullable: true '@odata.type': type: string BaseCollectionPaginationCountResponse: title: Base collection pagination and count responses type: object properties: '@odata.count': type: integer format: int64 nullable: true '@odata.nextLink': type: string nullable: true microsoft.graph.conversation: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: conversation required: - '@odata.type' type: object properties: hasAttachments: type: boolean description: >- Indicates whether any of the posts within this Conversation has at least one attachment. Supports $filter (eq, ne) and $search. lastDeliveredDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z format: date-time preview: type: string description: >- A short summary from the body of the latest post in this conversation. Supports $filter (eq, ne, le, ge). topic: type: string description: >- The topic of the conversation. This property can be set when the conversation is created, but it cannot be updated. uniqueSenders: type: array items: type: string description: All the users that sent a message to this Conversation. threads: type: array items: $ref: '#/components/schemas/microsoft.graph.conversationThread' description: >- A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.conversation' microsoft.graph.conversationThread: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: conversationThread required: - '@odata.type' type: object properties: ccRecipients: type: array items: $ref: '#/components/schemas/microsoft.graph.recipient' description: 'The Cc: recipients for the thread. Returned only on $select.' hasAttachments: type: boolean description: >- Indicates whether any of the posts within this thread has at least one attachment. Returned by default. isLocked: type: boolean description: Indicates if the thread is locked. Returned by default. lastDeliveredDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.Returned by default. format: date-time preview: type: string description: >- A short summary from the body of the latest post in this conversation. Returned by default. topic: type: string description: >- The topic of the conversation. This property can be set when the conversation is created, but it cannot be updated. Returned by default. toRecipients: type: array items: $ref: '#/components/schemas/microsoft.graph.recipient' description: 'The To: recipients for the thread. Returned only on $select.' uniqueSenders: type: array items: type: string description: >- All the users that sent a message to this thread. Returned by default. posts: type: array items: $ref: '#/components/schemas/microsoft.graph.post' x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.conversationThread' microsoft.graph.post: allOf: - $ref: '#/components/schemas/microsoft.graph.outlookItem' - title: post required: - '@odata.type' type: object properties: body: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemBody' - type: object nullable: true description: >- The contents of the post. This is a default property. This property can be null. conversationId: type: string description: Unique ID of the conversation. Read-only. nullable: true conversationThreadId: type: string description: Unique ID of the conversation thread. Read-only. nullable: true from: $ref: '#/components/schemas/microsoft.graph.recipient' hasAttachments: type: boolean description: >- Indicates whether the post has at least one attachment. This is a default property. newParticipants: type: array items: $ref: '#/components/schemas/microsoft.graph.recipient' description: >- Conversation participants that were added to the thread as part of this post. receivedDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Specifies when the post was received. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z format: date-time sender: anyOf: - $ref: '#/components/schemas/microsoft.graph.recipient' - type: object nullable: true description: >- Contains the address of the sender. The value of Sender is assumed to be the address of the authenticated user in the case when Sender is not specified. This is a default property. attachments: type: array items: $ref: '#/components/schemas/microsoft.graph.attachment' description: Read-only. Nullable. Supports $expand. x-ms-navigationProperty: true extensions: type: array items: $ref: '#/components/schemas/microsoft.graph.extension' description: >- The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. x-ms-navigationProperty: true inReplyTo: anyOf: - $ref: '#/components/schemas/microsoft.graph.post' - type: object nullable: true description: Read-only. Supports $expand. x-ms-navigationProperty: true multiValueExtendedProperties: type: array items: $ref: >- #/components/schemas/microsoft.graph.multiValueLegacyExtendedProperty description: >- The collection of multi-value extended properties defined for the post. Read-only. Nullable. x-ms-navigationProperty: true singleValueExtendedProperties: type: array items: $ref: >- #/components/schemas/microsoft.graph.singleValueLegacyExtendedProperty description: >- The collection of single-value extended properties defined for the post. Read-only. Nullable. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.post' x-ms-discriminator-value: '#microsoft.graph.post' microsoft.graph.directoryObject: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: directoryObject required: - '@odata.type' type: object properties: deletedDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Date and time when this object was deleted. Always null when the object hasn't been deleted. format: date-time nullable: true '@odata.type': type: string discriminator: propertyName: '@odata.type' mapping: '#microsoft.graph.administrativeUnit': '#/components/schemas/microsoft.graph.administrativeUnit' '#microsoft.graph.application': '#/components/schemas/microsoft.graph.application' '#microsoft.graph.appRoleAssignment': '#/components/schemas/microsoft.graph.appRoleAssignment' '#microsoft.graph.certificateAuthorityDetail': '#/components/schemas/microsoft.graph.certificateAuthorityDetail' '#microsoft.graph.certificateBasedAuthPki': '#/components/schemas/microsoft.graph.certificateBasedAuthPki' '#microsoft.graph.contract': '#/components/schemas/microsoft.graph.contract' '#microsoft.graph.device': '#/components/schemas/microsoft.graph.device' '#microsoft.graph.directoryObjectPartnerReference': >- #/components/schemas/microsoft.graph.directoryObjectPartnerReference '#microsoft.graph.directoryRole': '#/components/schemas/microsoft.graph.directoryRole' '#microsoft.graph.directoryRoleTemplate': '#/components/schemas/microsoft.graph.directoryRoleTemplate' '#microsoft.graph.endpoint': '#/components/schemas/microsoft.graph.endpoint' '#microsoft.graph.extensionProperty': '#/components/schemas/microsoft.graph.extensionProperty' '#microsoft.graph.group': '#/components/schemas/microsoft.graph.group' '#microsoft.graph.groupSettingTemplate': '#/components/schemas/microsoft.graph.groupSettingTemplate' '#microsoft.graph.multiTenantOrganizationMember': >- #/components/schemas/microsoft.graph.multiTenantOrganizationMember '#microsoft.graph.organization': '#/components/schemas/microsoft.graph.organization' '#microsoft.graph.orgContact': '#/components/schemas/microsoft.graph.orgContact' '#microsoft.graph.policyBase': '#/components/schemas/microsoft.graph.policyBase' '#microsoft.graph.appManagementPolicy': '#/components/schemas/microsoft.graph.appManagementPolicy' '#microsoft.graph.authorizationPolicy': '#/components/schemas/microsoft.graph.authorizationPolicy' '#microsoft.graph.crossTenantAccessPolicy': '#/components/schemas/microsoft.graph.crossTenantAccessPolicy' '#microsoft.graph.identitySecurityDefaultsEnforcementPolicy': >- #/components/schemas/microsoft.graph.identitySecurityDefaultsEnforcementPolicy '#microsoft.graph.permissionGrantPolicy': '#/components/schemas/microsoft.graph.permissionGrantPolicy' '#microsoft.graph.stsPolicy': '#/components/schemas/microsoft.graph.stsPolicy' '#microsoft.graph.activityBasedTimeoutPolicy': '#/components/schemas/microsoft.graph.activityBasedTimeoutPolicy' '#microsoft.graph.claimsMappingPolicy': '#/components/schemas/microsoft.graph.claimsMappingPolicy' '#microsoft.graph.homeRealmDiscoveryPolicy': '#/components/schemas/microsoft.graph.homeRealmDiscoveryPolicy' '#microsoft.graph.tokenIssuancePolicy': '#/components/schemas/microsoft.graph.tokenIssuancePolicy' '#microsoft.graph.tokenLifetimePolicy': '#/components/schemas/microsoft.graph.tokenLifetimePolicy' '#microsoft.graph.tenantAppManagementPolicy': '#/components/schemas/microsoft.graph.tenantAppManagementPolicy' '#microsoft.graph.resourceSpecificPermissionGrant': >- #/components/schemas/microsoft.graph.resourceSpecificPermissionGrant '#microsoft.graph.servicePrincipal': '#/components/schemas/microsoft.graph.servicePrincipal' '#microsoft.graph.user': '#/components/schemas/microsoft.graph.user' microsoft.graph.drive: allOf: - $ref: '#/components/schemas/microsoft.graph.baseItem' - title: drive required: - '@odata.type' type: object properties: driveType: type: string description: >- Describes the type of drive represented by this resource. OneDrive personal drives return personal. OneDrive for Business returns business. SharePoint document libraries return documentLibrary. Read-only. nullable: true owner: anyOf: - $ref: '#/components/schemas/microsoft.graph.identitySet' - type: object nullable: true description: Optional. The user account that owns the drive. Read-only. quota: anyOf: - $ref: '#/components/schemas/microsoft.graph.quota' - type: object nullable: true description: >- Optional. Information about the drive's storage space quota. Read-only. sharePointIds: anyOf: - $ref: '#/components/schemas/microsoft.graph.sharepointIds' - type: object nullable: true system: anyOf: - $ref: '#/components/schemas/microsoft.graph.systemFacet' - type: object nullable: true description: >- If present, indicates that it's a system-managed drive. Read-only. bundles: type: array items: $ref: '#/components/schemas/microsoft.graph.driveItem' description: >- Collection of bundles (albums and multi-select-shared sets of items). Only in personal OneDrive. x-ms-navigationProperty: true following: type: array items: $ref: '#/components/schemas/microsoft.graph.driveItem' description: >- The list of items the user is following. Only in OneDrive for Business. x-ms-navigationProperty: true items: type: array items: $ref: '#/components/schemas/microsoft.graph.driveItem' description: All items contained in the drive. Read-only. Nullable. x-ms-navigationProperty: true list: anyOf: - $ref: '#/components/schemas/microsoft.graph.list' - type: object nullable: true description: >- For drives in SharePoint, the underlying document library list. Read-only. Nullable. x-ms-navigationProperty: true root: anyOf: - $ref: '#/components/schemas/microsoft.graph.driveItem' - type: object nullable: true description: The root folder of the drive. Read-only. x-ms-navigationProperty: true special: type: array items: $ref: '#/components/schemas/microsoft.graph.driveItem' description: >- Collection of common folders available in OneDrive. Read-only. Nullable. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.drive' x-ms-discriminator-value: '#microsoft.graph.drive' microsoft.graph.groupLifecyclePolicy: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: groupLifecyclePolicy required: - '@odata.type' type: object properties: alternateNotificationEmails: type: string description: >- List of email address to send notifications for groups without owners. Multiple email address can be defined by separating email address with a semicolon. nullable: true groupLifetimeInDays: maximum: 2147483647 minimum: -2147483648 type: number description: >- Number of days before a group expires and needs to be renewed. Once renewed, the group expiration is extended by the number of days defined. format: int32 nullable: true managedGroupTypes: type: string description: >- The group type for which the expiration policy applies. Possible values are All, Selected or None. nullable: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.groupLifecyclePolicy' microsoft.graph.administrativeUnit: allOf: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - title: administrativeUnit required: - '@odata.type' type: object properties: description: type: string description: >- An optional description for the administrative unit. Supports $filter (eq, ne, in, startsWith), $search. nullable: true displayName: type: string description: >- Display name for the administrative unit. Maximum length is 256 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderby. nullable: true isMemberManagementRestricted: type: boolean description: >- true if members of this administrative unit should be treated as sensitive, which requires specific permissions to manage. If not set, the default value is null and the default behavior is false. Use this property to define administrative units with roles that don't inherit from tenant-level administrators, and where the management of individual member objects is limited to administrators scoped to a restricted management administrative unit. This property is immutable and can't be changed later. For more information on how to work with restricted management administrative units, see Restricted management administrative units in Microsoft Entra ID. nullable: true membershipRule: type: string description: >- The dynamic membership rule for the administrative unit. For more information about the rules you can use for dynamic administrative units and dynamic groups, see Manage rules for dynamic membership groups in Microsoft Entra ID. nullable: true membershipRuleProcessingState: type: string description: >- Controls whether the dynamic membership rule is actively processed. Set to On to activate the dynamic membership rule, or Paused to stop updating membership dynamically. nullable: true membershipType: type: string description: >- Indicates the membership type for the administrative unit. The possible values are: dynamic, assigned. If not set, the default value is null and the default behavior is assigned. nullable: true visibility: type: string description: >- Controls whether the administrative unit and its members are hidden or public. Can be set to HiddenMembership. If not set, the default value is null and the default behavior is public. When set to HiddenMembership, only members of the administrative unit can list other members of the administrative unit. nullable: true extensions: type: array items: $ref: '#/components/schemas/microsoft.graph.extension' description: >- The collection of open extensions defined for this administrative unit. Nullable. x-ms-navigationProperty: true members: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- Users and groups that are members of this administrative unit. Supports $expand. x-ms-navigationProperty: true scopedRoleMembers: type: array items: $ref: '#/components/schemas/microsoft.graph.scopedRoleMembership' description: Scoped-role members of this administrative unit. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.administrativeUnit' x-ms-discriminator-value: '#microsoft.graph.administrativeUnit' microsoft.graph.application: allOf: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - title: application required: - '@odata.type' type: object properties: addIns: type: array items: $ref: '#/components/schemas/microsoft.graph.addIn' description: >- Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams can set the addIns property for its 'FileHandler' functionality. This lets services like Microsoft 365 call the application in the context of a document the user is working on. api: anyOf: - $ref: '#/components/schemas/microsoft.graph.apiApplication' - type: object nullable: true description: Specifies settings for an application that implements a web API. appId: type: string description: >- The unique identifier for the application that is assigned to an application by Microsoft Entra ID. Not nullable. Read-only. Alternate key. Supports $filter (eq). nullable: true applicationTemplateId: type: string description: >- Unique identifier of the applicationTemplate. Supports $filter (eq, not, ne). Read-only. null if the app wasn't created from an application template. nullable: true appRoles: type: array items: $ref: '#/components/schemas/microsoft.graph.appRole' description: >- The collection of roles defined for the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. authenticationBehaviors: anyOf: - $ref: '#/components/schemas/microsoft.graph.authenticationBehaviors' - type: object nullable: true certification: anyOf: - $ref: '#/components/schemas/microsoft.graph.certification' - type: object nullable: true description: Specifies the certification status of the application. createdDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The date and time the application was registered. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. Supports $filter (eq, ne, not, ge, le, in, and eq on null values) and $orderby. format: date-time nullable: true defaultRedirectUri: type: string nullable: true description: type: string description: >- Free text field to provide a description of the application object to end users. The maximum allowed size is 1,024 characters. Supports $filter (eq, ne, not, ge, le, startsWith) and $search. nullable: true disabledByMicrosoftStatus: type: string description: >- Specifies whether Microsoft has disabled the registered application. The possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, not). nullable: true displayName: type: string description: >- The display name for the application. Maximum length is 256 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderby. nullable: true groupMembershipClaims: type: string description: >- Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following valid string values: None, SecurityGroup (for security groups and Microsoft Entra roles), All (this gets all of the security groups, distribution groups, and Microsoft Entra directory roles that the signed-in user is a member of). nullable: true identifierUris: type: array items: type: string description: >- Also known as App ID URI, this value is set when an application is used as a resource app. The identifierUris acts as the prefix for the scopes you reference in your API's code, and it must be globally unique across Microsoft Entra ID. For more information on valid identifierUris patterns and best practices, see Microsoft Entra application registration security best practices. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). info: anyOf: - $ref: '#/components/schemas/microsoft.graph.informationalUrl' - type: object nullable: true description: >- Basic profile information of the application such as app's marketing, support, terms of service and privacy statement URLs. The terms of service and privacy statement are surfaced to users through the user consent experience. For more info, see How to: Add Terms of service and privacy statement for registered Microsoft Entra apps. Supports $filter (eq, ne, not, ge, le, and eq on null values). isDeviceOnlyAuthSupported: type: boolean description: >- Specifies whether this application supports device authentication without a user. The default is false. nullable: true isFallbackPublicClient: type: boolean description: >- Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false, which means the fallback application type is confidential client such as a web app. There are certain scenarios where Microsoft Entra ID can't determine the client application type. For example, the ROPC flow where it's configured without specifying a redirect URI. In those cases, Microsoft Entra ID interprets the application type based on the value of this property. nullable: true keyCredentials: type: array items: $ref: '#/components/schemas/microsoft.graph.keyCredential' description: >- The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, not, ge, le). logo: type: string description: The main logo for the application. Not nullable. format: base64url nativeAuthenticationApisEnabled: anyOf: - $ref: >- #/components/schemas/microsoft.graph.nativeAuthenticationApisEnabled - type: object nullable: true description: >- Specifies whether the Native Authentication APIs are enabled for the application. The possible values are: none and all. Default is none. For more information, see Native Authentication. notes: type: string description: Notes relevant for the management of the application. nullable: true oauth2RequirePostResponse: type: boolean optionalClaims: anyOf: - $ref: '#/components/schemas/microsoft.graph.optionalClaims' - type: object nullable: true description: >- Application developers can configure optional claims in their Microsoft Entra applications to specify the claims that are sent to their application by the Microsoft security token service. For more information, see How to: Provide optional claims to your app. parentalControlSettings: anyOf: - $ref: '#/components/schemas/microsoft.graph.parentalControlSettings' - type: object nullable: true description: Specifies parental control settings for an application. passwordCredentials: type: array items: $ref: '#/components/schemas/microsoft.graph.passwordCredential' description: >- The collection of password credentials associated with the application. Not nullable. publicClient: anyOf: - $ref: '#/components/schemas/microsoft.graph.publicClientApplication' - type: object nullable: true description: >- Specifies settings for installed clients such as desktop or mobile devices. publisherDomain: type: string description: >- The verified publisher domain for the application. Read-only. For more information, see How to: Configure an application's publisher domain. Supports $filter (eq, ne, ge, le, startsWith). nullable: true requestSignatureVerification: anyOf: - $ref: >- #/components/schemas/microsoft.graph.requestSignatureVerification - type: object nullable: true description: >- Specifies whether this application requires Microsoft Entra ID to verify the signed authentication requests. requiredResourceAccess: type: array items: $ref: '#/components/schemas/microsoft.graph.requiredResourceAccess' description: >- Specifies the resources that the application needs to access. This property also specifies the set of delegated permissions and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. No more than 50 resource services (APIs) can be configured. Beginning mid-October 2021, the total number of required permissions must not exceed 400. For more information, see Limits on requested permissions per app. Not nullable. Supports $filter (eq, not, ge, le). samlMetadataUrl: type: string description: >- The URL where the service exposes SAML metadata for federation. This property is valid only for single-tenant applications. Nullable. nullable: true serviceManagementReference: type: string description: >- References application or service contact information from a Service or Asset Management database. Nullable. nullable: true servicePrincipalLockConfiguration: anyOf: - $ref: >- #/components/schemas/microsoft.graph.servicePrincipalLockConfiguration - type: object nullable: true description: >- Specifies whether sensitive properties of a multitenant application should be locked for editing after the application is provisioned in a tenant. Nullable. null by default. signInAudience: type: string description: >- Specifies the Microsoft accounts that are supported for the current application. The possible values are: AzureADMyOrg (default), AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, and PersonalMicrosoftAccount. See more in the table. The value of this object also limits the number of permissions an app can request. For more information, see Limits on requested permissions per app. The value for this property has implications on other app object properties. As a result, if you change this property, you might need to change other properties first. For more information, see Validation differences for signInAudience.Supports $filter (eq, ne, not). nullable: true spa: anyOf: - $ref: '#/components/schemas/microsoft.graph.spaApplication' - type: object nullable: true description: >- Specifies settings for a single-page application, including sign out URLs and redirect URIs for authorization codes and access tokens. tags: type: array items: type: string description: >- Custom strings that can be used to categorize and identify the application. Not nullable. Strings added here will also appear in the tags property of any associated service principals.Supports $filter (eq, not, ge, le, startsWith) and $search. tokenEncryptionKeyId: pattern: >- ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ type: string description: >- Specifies the keyId of a public key from the keyCredentials collection. When configured, Microsoft Entra ID encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. format: uuid nullable: true uniqueName: type: string description: >- The unique identifier that can be assigned to an application and used as an alternate key. Immutable. Read-only. nullable: true verifiedPublisher: anyOf: - $ref: '#/components/schemas/microsoft.graph.verifiedPublisher' - type: object nullable: true description: >- Specifies the verified publisher of the application. For more information about how publisher verification helps support application security, trustworthiness, and compliance, see Publisher verification. web: anyOf: - $ref: '#/components/schemas/microsoft.graph.webApplication' - type: object nullable: true description: Specifies settings for a web application. appManagementPolicies: type: array items: $ref: '#/components/schemas/microsoft.graph.appManagementPolicy' description: The appManagementPolicy applied to this application. x-ms-navigationProperty: true createdOnBehalfOf: anyOf: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - type: object nullable: true description: Supports $filter (/$count eq 0, /$count ne 0). Read-only. x-ms-navigationProperty: true extensionProperties: type: array items: $ref: '#/components/schemas/microsoft.graph.extensionProperty' description: >- Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0). x-ms-navigationProperty: true federatedIdentityCredentials: type: array items: $ref: >- #/components/schemas/microsoft.graph.federatedIdentityCredential description: >- Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0). x-ms-navigationProperty: true homeRealmDiscoveryPolicies: type: array items: $ref: '#/components/schemas/microsoft.graph.homeRealmDiscoveryPolicy' x-ms-navigationProperty: true owners: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- Directory objects that are owners of this application. The owners are a set of nonadmin users or service principals who are allowed to modify this object. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand. x-ms-navigationProperty: true synchronization: anyOf: - $ref: '#/components/schemas/microsoft.graph.synchronization' - type: object nullable: true description: >- Represents the capability for Microsoft Entra identity synchronization through the Microsoft Graph API. x-ms-navigationProperty: true tokenIssuancePolicies: type: array items: $ref: '#/components/schemas/microsoft.graph.tokenIssuancePolicy' x-ms-navigationProperty: true tokenLifetimePolicies: type: array items: $ref: '#/components/schemas/microsoft.graph.tokenLifetimePolicy' x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.application' x-ms-discriminator-value: '#microsoft.graph.application' microsoft.graph.device: allOf: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - title: device required: - '@odata.type' type: object properties: accountEnabled: type: boolean description: >- true if the account is enabled; otherwise, false. Required. Default is true. Supports $filter (eq, ne, not, in). Only callers with at least the Cloud Device Administrator role can set this property. nullable: true alternativeSecurityIds: type: array items: $ref: '#/components/schemas/microsoft.graph.alternativeSecurityId' description: >- For internal use only. Not nullable. Supports $filter (eq, not, ge, le). approximateLastSignInDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. Supports $filter (eq, ne, not, ge, le, and eq on null values) and $orderby. format: date-time nullable: true complianceExpirationDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The timestamp when the device is no longer deemed compliant. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. format: date-time nullable: true deviceCategory: type: string description: >- User-defined property set by Intune to automatically add devices to groups and simplify managing devices. nullable: true deviceId: type: string description: >- Unique identifier set by Azure Device Registration Service at the time of registration. This alternate key can be used to reference the device object. Supports $filter (eq, ne, not, startsWith). nullable: true deviceMetadata: type: string description: For internal use only. Set to null. nullable: true deviceOwnership: type: string description: >- Ownership of the device. Intune sets this property. The possible values are: unknown, company, personal. nullable: true deviceVersion: maximum: 2147483647 minimum: -2147483648 type: number description: For internal use only. format: int32 nullable: true displayName: type: string description: >- The display name for the device. Maximum length is 256 characters. Required. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderby. nullable: true enrollmentProfileName: type: string description: >- Enrollment profile applied to the device. For example, Apple Device Enrollment Profile, Device enrollment - Corporate device identifiers, or Windows Autopilot profile name. This property is set by Intune. nullable: true enrollmentType: type: string description: >- Enrollment type of the device. Intune sets this property. The possible values are: unknown, userEnrollment, deviceEnrollmentManager, appleBulkWithUser, appleBulkWithoutUser, windowsAzureADJoin, windowsBulkUserless, windowsAutoEnrollment, windowsBulkAzureDomainJoin, windowsCoManagement, windowsAzureADJoinUsingDeviceAuth,appleUserEnrollment, appleUserEnrollmentWithServiceAccount. NOTE: This property might return other values apart from those listed. nullable: true isCompliant: type: boolean description: >- true if the device complies with Mobile Device Management (MDM) policies; otherwise, false. Read-only. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices. Supports $filter (eq, ne, not). nullable: true isManaged: type: boolean description: >- true if the device is managed by a Mobile Device Management (MDM) app; otherwise, false. This can only be updated by Intune for any device OS type or by an approved MDM app for Windows OS devices. Supports $filter (eq, ne, not). nullable: true isManagementRestricted: type: boolean description: >- Indicates whether the device is a member of a restricted management administrative unit. If not set, the default value is null and the default behavior is false. Read-only. To manage a device that's a member of a restricted management administrative unit, the administrator or calling app must be assigned a Microsoft Entra role at the scope of the restricted management administrative unit. Returned only on $select. nullable: true isRooted: type: boolean description: >- true if the device is rooted or jail-broken. This property can only be updated by Intune. nullable: true managementType: type: string description: >- The management channel of the device. This property is set by Intune. The possible values are: eas, mdm, easMdm, intuneClient, easIntuneClient, configurationManagerClient, configurationManagerClientMdm, configurationManagerClientMdmEas, unknown, jamf, googleCloudDevicePolicyController. nullable: true manufacturer: type: string description: Manufacturer of the device. Read-only. nullable: true mdmAppId: type: string description: >- Application identifier used to register device into MDM. Read-only. Supports $filter (eq, ne, not, startsWith). nullable: true model: type: string description: Model of the device. Read-only. nullable: true onPremisesLastSyncDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The last time at which the object was synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z Read-only. Supports $filter (eq, ne, not, ge, le, in). format: date-time nullable: true onPremisesSecurityIdentifier: type: string description: >- The on-premises security identifier (SID) for the user who was synchronized from on-premises to the cloud. Read-only. Returned only on $select. Supports $filter (eq). nullable: true onPremisesSyncEnabled: type: boolean description: >- true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced; null if this object has never been synced from an on-premises directory (default). Read-only. Supports $filter (eq, ne, not, in, and eq on null values). nullable: true operatingSystem: type: string description: >- The type of operating system on the device. Required. Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values). nullable: true operatingSystemVersion: type: string description: >- The version of the operating system on the device. Required. Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values). nullable: true physicalIds: type: array items: type: string description: >- For internal use only. Not nullable. Supports $filter (eq, not, ge, le, startsWith,/$count eq 0, /$count ne 0). profileType: type: string description: >- The profile type of the device. Possible values: RegisteredDevice (default), SecureVM, Printer, Shared, IoT. nullable: true registrationDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Date and time of when the device was registered. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. format: date-time nullable: true systemLabels: type: array items: type: string description: >- List of labels applied to the device by the system. Supports $filter (/$count eq 0, /$count ne 0). trustType: type: string description: >- Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud-only joined devices), ServerAd (on-premises domain joined devices joined to Microsoft Entra ID). For more information, see Introduction to device management in Microsoft Entra ID. Supports $filter (eq, ne, not, in). nullable: true extensions: type: array items: $ref: '#/components/schemas/microsoft.graph.extension' description: >- The collection of open extensions defined for the device. Read-only. Nullable. x-ms-navigationProperty: true memberOf: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- Groups and administrative units that this device is a member of. Read-only. Nullable. Supports $expand. x-ms-navigationProperty: true registeredOwners: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- The user that cloud joined the device or registered their personal device. The registered owner is set at the time of registration. Read-only. Nullable. Supports $expand. x-ms-navigationProperty: true registeredUsers: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- Collection of registered users of the device. For cloud joined devices and registered personal devices, registered users are set to the same value as registered owners at the time of registration. Read-only. Nullable. Supports $expand. x-ms-navigationProperty: true transitiveMemberOf: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- Groups and administrative units that the device is a member of. This operation is transitive. Supports $expand. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.device' x-ms-discriminator-value: '#microsoft.graph.device' microsoft.graph.orgContact: allOf: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - title: orgContact required: - '@odata.type' type: object properties: addresses: type: array items: $ref: '#/components/schemas/microsoft.graph.physicalOfficeAddress' description: >- Postal addresses for this organizational contact. For now a contact can only have one physical address. companyName: type: string description: >- Name of the company that this organizational contact belongs to. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). nullable: true department: type: string description: >- The name for the department in which the contact works. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). nullable: true displayName: type: string description: >- Display name for this organizational contact. Maximum length is 256 characters. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values), $search, and $orderby. nullable: true givenName: type: string description: >- First name for this organizational contact. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). nullable: true jobTitle: type: string description: >- Job title for this organizational contact. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). nullable: true mail: type: string description: >- The SMTP address for the contact, for example, 'jeff@contoso.com'. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). nullable: true mailNickname: type: string description: >- Email alias (portion of email address pre-pending the @ symbol) for this organizational contact. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). nullable: true onPremisesLastSyncDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Date and time when this organizational contact was last synchronized from on-premises AD. This date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Supports $filter (eq, ne, not, ge, le, in). format: date-time nullable: true onPremisesProvisioningErrors: type: array items: $ref: >- #/components/schemas/microsoft.graph.onPremisesProvisioningError description: >- List of any synchronization provisioning errors for this organizational contact. Supports $filter (eq, not for category and propertyCausingError), /$count eq 0, /$count ne 0. onPremisesSyncEnabled: type: boolean description: >- true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced and now mastered in Exchange; null if this object has never been synced from an on-premises directory (default). Supports $filter (eq, ne, not, in, and eq for null values). nullable: true phones: type: array items: $ref: '#/components/schemas/microsoft.graph.phone' description: >- List of phones for this organizational contact. Phone types can be mobile, business, and businessFax. Only one of each type can ever be present in the collection. proxyAddresses: type: array items: type: string description: >- For example: 'SMTP: bob@contoso.com', 'smtp: bob@sales.contoso.com'. The any operator is required for filter expressions on multi-valued properties. Supports $filter (eq, not, ge, le, startsWith, /$count eq 0, /$count ne 0). serviceProvisioningErrors: type: array items: $ref: '#/components/schemas/microsoft.graph.serviceProvisioningError' description: >- Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from an organizational contact object . Supports $filter (eq, not, for isResolved and serviceInstance). surname: type: string description: >- Last name for this organizational contact. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq for null values). nullable: true directReports: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- The contact's direct reports. (The users and contacts that have their manager property set to this contact.) Read-only. Nullable. Supports $expand. x-ms-navigationProperty: true manager: anyOf: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - type: object nullable: true description: >- The user or contact that is this contact's manager. Read-only. Supports $expand and $filter (eq) by id. x-ms-navigationProperty: true memberOf: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- Groups that this contact is a member of. Read-only. Nullable. Supports $expand. x-ms-navigationProperty: true onPremisesSyncBehavior: anyOf: - $ref: '#/components/schemas/microsoft.graph.onPremisesSyncBehavior' - type: object nullable: true x-ms-navigationProperty: true transitiveMemberOf: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- Groups that this contact is a member of, including groups that the contact is nested under. Read-only. Nullable. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.orgContact' x-ms-discriminator-value: '#microsoft.graph.orgContact' microsoft.graph.servicePrincipal: allOf: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - title: servicePrincipal required: - '@odata.type' type: object properties: accountEnabled: type: boolean description: >- true if the service principal account is enabled; otherwise, false. If set to false, then no users are able to sign in to this app, even if they're assigned to it. Supports $filter (eq, ne, not, in). nullable: true addIns: type: array items: $ref: '#/components/schemas/microsoft.graph.addIn' description: >- Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This lets services like Microsoft 365 call the application in the context of a document the user is working on. alternativeNames: type: array items: type: string description: >- Used to retrieve service principals by subscription, identify resource group and full resource IDs for managed identities. Supports $filter (eq, not, ge, le, startsWith). appDescription: type: string description: The description exposed by the associated application. nullable: true appDisplayName: type: string description: >- The display name exposed by the associated application. Maximum length is 256 characters. nullable: true appId: type: string description: >- The unique identifier for the associated application (its appId property). Alternate key. Supports $filter (eq, ne, not, in, startsWith). nullable: true applicationTemplateId: type: string description: >- Unique identifier of the applicationTemplate. Supports $filter (eq, not, ne). Read-only. null if the service principal wasn't created from an application template. nullable: true appOwnerOrganizationId: pattern: >- ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ type: string description: >- Contains the tenant ID where the application is registered. This is applicable only to service principals backed by applications. Supports $filter (eq, ne, NOT, ge, le). format: uuid nullable: true appRoleAssignmentRequired: type: boolean description: >- Specifies whether users or other service principals need to be granted an app role assignment for this service principal before users can sign in or apps can get tokens. The default value is false. Not nullable. Supports $filter (eq, ne, NOT). appRoles: type: array items: $ref: '#/components/schemas/microsoft.graph.appRole' description: >- The roles exposed by the application that's linked to this service principal. For more information, see the appRoles property definition on the application entity. Not nullable. customSecurityAttributes: anyOf: - $ref: >- #/components/schemas/microsoft.graph.customSecurityAttributeValue - type: object nullable: true description: >- An open complex type that holds the value of a custom security attribute that is assigned to a directory object. Nullable. Returned only on $select. Supports $filter (eq, ne, not, startsWith). Filter value is case sensitive. To read this property, the calling app must be assigned the CustomSecAttributeAssignment.Read.All permission. To write this property, the calling app must be assigned the CustomSecAttributeAssignment.ReadWrite.All permissions. To read or write this property in delegated scenarios, the admin must be assigned the Attribute Assignment Administrator role. description: type: string description: >- Free text field to provide an internal end-user facing description of the service principal. End-user portals such MyApps displays the application description in this field. The maximum allowed size is 1,024 characters. Supports $filter (eq, ne, not, ge, le, startsWith) and $search. nullable: true disabledByMicrosoftStatus: type: string description: >- Specifies whether Microsoft has disabled the registered application. The possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, not). nullable: true displayName: type: string description: >- The display name for the service principal. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values), $search, and $orderby. nullable: true homepage: type: string description: Home page or landing page of the application. nullable: true info: anyOf: - $ref: '#/components/schemas/microsoft.graph.informationalUrl' - type: object nullable: true description: >- Basic profile information of the acquired application such as app's marketing, support, terms of service and privacy statement URLs. The terms of service and privacy statement are surfaced to users through the user consent experience. For more info, see How to: Add Terms of service and privacy statement for registered Microsoft Entra apps. Supports $filter (eq, ne, not, ge, le, and eq on null values). keyCredentials: type: array items: $ref: '#/components/schemas/microsoft.graph.keyCredential' description: >- The collection of key credentials associated with the service principal. Not nullable. Supports $filter (eq, not, ge, le). loginUrl: type: string description: >- Specifies the URL where the service provider redirects the user to Microsoft Entra ID to authenticate. Microsoft Entra ID uses the URL to launch the application from Microsoft 365 or the Microsoft Entra My Apps. When blank, Microsoft Entra ID performs IdP-initiated sign-on for applications configured with SAML-based single sign-on. The user launches the application from Microsoft 365, the Microsoft Entra My Apps, or the Microsoft Entra SSO URL. nullable: true logoutUrl: type: string description: >- Specifies the URL that the Microsoft's authorization service uses to sign out a user using OpenID Connect front-channel, back-channel, or SAML sign out protocols. nullable: true notes: type: string description: >- Free text field to capture information about the service principal, typically used for operational purposes. Maximum allowed size is 1,024 characters. nullable: true notificationEmailAddresses: type: array items: type: string description: >- Specifies the list of email addresses where Microsoft Entra ID sends a notification when the active certificate is near the expiration date. This is only for the certificates used to sign the SAML token issued for Microsoft Entra Gallery applications. oauth2PermissionScopes: type: array items: $ref: '#/components/schemas/microsoft.graph.permissionScope' description: >- The delegated permissions exposed by the application. For more information, see the oauth2PermissionScopes property on the application entity's api property. Not nullable. passwordCredentials: type: array items: $ref: '#/components/schemas/microsoft.graph.passwordCredential' description: >- The collection of password credentials associated with the application. Not nullable. preferredSingleSignOnMode: type: string description: >- Specifies the single sign-on mode configured for this application. Microsoft Entra ID uses the preferred single sign-on mode to launch the application from Microsoft 365 or the My Apps portal. The supported values are password, saml, notSupported, and oidc. Note: This field might be null for older SAML apps and for OIDC applications where it isn't set automatically. nullable: true preferredTokenSigningKeyThumbprint: type: string description: >- This property can be used on SAML applications (apps that have preferredSingleSignOnMode set to saml) to control which certificate is used to sign the SAML responses. For applications that aren't SAML, don't write or otherwise rely on this property. nullable: true replyUrls: type: array items: type: string description: >- The URLs that user tokens are sent to for sign in with the associated application, or the redirect URIs that OAuth 2.0 authorization codes and access tokens are sent to for the associated application. Not nullable. resourceSpecificApplicationPermissions: type: array items: $ref: >- #/components/schemas/microsoft.graph.resourceSpecificPermission description: >- The resource-specific application permissions exposed by this application. Currently, resource-specific permissions are only supported for Teams apps accessing to specific chats and teams using Microsoft Graph. Read-only. samlSingleSignOnSettings: anyOf: - $ref: >- #/components/schemas/microsoft.graph.samlSingleSignOnSettings - type: object nullable: true description: The collection for settings related to saml single sign-on. servicePrincipalNames: type: array items: type: string description: >- Contains the list of identifiersUris, copied over from the associated application. Additional values can be added to hybrid applications. These values can be used to identify the permissions exposed by this app within Microsoft Entra ID. For example,Client apps can specify a resource URI that is based on the values of this property to acquire an access token, which is the URI returned in the 'aud' claim.The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, not, ge, le, startsWith). servicePrincipalType: type: string description: >- Identifies whether the service principal represents an application, a managed identity, or a legacy application. This is set by Microsoft Entra ID internally. The servicePrincipalType property can be set to three different values: Application - A service principal that represents an application or service. The appId property identifies the associated app registration, and matches the appId of an application, possibly from a different tenant. If the associated app registration is missing, tokens aren't issued for the service principal.ManagedIdentity - A service principal that represents a managed identity. Service principals representing managed identities can be granted access and permissions, but can't be updated or modified directly.Legacy - A service principal that represents an app created before app registrations, or through legacy experiences. A legacy service principal can have credentials, service principal names, reply URLs, and other properties that are editable by an authorized user, but doesn't have an associated app registration. The appId value doesn't associate the service principal with an app registration. The service principal can only be used in the tenant where it was created.SocialIdp - For internal use. nullable: true signInAudience: type: string description: >- Specifies the Microsoft accounts that are supported for the current application. Read-only. Supported values are:AzureADMyOrg: Users with a Microsoft work or school account in my organization's Microsoft Entra tenant (single-tenant).AzureADMultipleOrgs: Users with a Microsoft work or school account in any organization's Microsoft Entra tenant (multitenant).AzureADandPersonalMicrosoftAccount: Users with a personal Microsoft account, or a work or school account in any organization's Microsoft Entra tenant.PersonalMicrosoftAccount: Users with a personal Microsoft account only. nullable: true tags: type: array items: type: string description: >- Custom strings that can be used to categorize and identify the service principal. Not nullable. The value is the union of strings set here and on the associated application entity's tags property.Supports $filter (eq, not, ge, le, startsWith). tokenEncryptionKeyId: pattern: >- ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ type: string description: >- Specifies the keyId of a public key from the keyCredentials collection. When configured, Microsoft Entra ID issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. format: uuid nullable: true verifiedPublisher: anyOf: - $ref: '#/components/schemas/microsoft.graph.verifiedPublisher' - type: object nullable: true description: >- Specifies the verified publisher of the application that's linked to this service principal. appManagementPolicies: type: array items: $ref: '#/components/schemas/microsoft.graph.appManagementPolicy' description: The appManagementPolicy applied to this application. x-ms-navigationProperty: true appRoleAssignedTo: type: array items: $ref: '#/components/schemas/microsoft.graph.appRoleAssignment' description: >- App role assignments for this app or service, granted to users, groups, and other service principals. Supports $expand. x-ms-navigationProperty: true appRoleAssignments: type: array items: $ref: '#/components/schemas/microsoft.graph.appRoleAssignment' description: >- App role assignment for another app or service, granted to this service principal. Supports $expand. x-ms-navigationProperty: true claimsMappingPolicies: type: array items: $ref: '#/components/schemas/microsoft.graph.claimsMappingPolicy' description: >- The claimsMappingPolicies assigned to this service principal. Supports $expand. x-ms-navigationProperty: true createdObjects: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- Directory objects created by this service principal. Read-only. Nullable. x-ms-navigationProperty: true delegatedPermissionClassifications: type: array items: $ref: >- #/components/schemas/microsoft.graph.delegatedPermissionClassification x-ms-navigationProperty: true endpoints: type: array items: $ref: '#/components/schemas/microsoft.graph.endpoint' x-ms-navigationProperty: true federatedIdentityCredentials: type: array items: $ref: >- #/components/schemas/microsoft.graph.federatedIdentityCredential description: >- Federated identities for a specific type of service principal - managed identity. Supports $expand and $filter (/$count eq 0, /$count ne 0). x-ms-navigationProperty: true homeRealmDiscoveryPolicies: type: array items: $ref: '#/components/schemas/microsoft.graph.homeRealmDiscoveryPolicy' description: >- The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. x-ms-navigationProperty: true memberOf: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- Roles that this service principal is a member of. HTTP Methods: GET Read-only. Nullable. Supports $expand. x-ms-navigationProperty: true oauth2PermissionGrants: type: array items: $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant' description: >- Delegated permission grants authorizing this service principal to access an API on behalf of a signed-in user. Read-only. Nullable. x-ms-navigationProperty: true ownedObjects: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- Directory objects that this service principal owns. Read-only. Nullable. Supports $expand, $select nested in $expand, and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1). x-ms-navigationProperty: true owners: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- Directory objects that are owners of this servicePrincipal. The owners are a set of nonadmin users or servicePrincipals who are allowed to modify this object. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand. x-ms-navigationProperty: true remoteDesktopSecurityConfiguration: anyOf: - $ref: >- #/components/schemas/microsoft.graph.remoteDesktopSecurityConfiguration - type: object nullable: true description: >- The remoteDesktopSecurityConfiguration object applied to this service principal. Supports $filter (eq) for isRemoteDesktopProtocolEnabled property. x-ms-navigationProperty: true synchronization: anyOf: - $ref: '#/components/schemas/microsoft.graph.synchronization' - type: object nullable: true description: >- Represents the capability for Microsoft Entra identity synchronization through the Microsoft Graph API. x-ms-navigationProperty: true tokenIssuancePolicies: type: array items: $ref: '#/components/schemas/microsoft.graph.tokenIssuancePolicy' description: The tokenIssuancePolicies assigned to this service principal. x-ms-navigationProperty: true tokenLifetimePolicies: type: array items: $ref: '#/components/schemas/microsoft.graph.tokenLifetimePolicy' description: The tokenLifetimePolicies assigned to this service principal. x-ms-navigationProperty: true transitiveMemberOf: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.servicePrincipal' x-ms-discriminator-value: '#microsoft.graph.servicePrincipal' microsoft.graph.user: allOf: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - title: user required: - '@odata.type' type: object properties: aboutMe: type: string description: >- A freeform text entry field for the user to describe themselves. Returned only on $select. nullable: true accountEnabled: type: boolean description: >- true if the account is enabled; otherwise, false. This property is required when a user is created. Returned only on $select. Supports $filter (eq, ne, not, and in). nullable: true ageGroup: type: string description: >- Sets the age group of the user. Allowed values: null, Minor, NotAdult, and Adult. For more information, see legal age group property definitions. Returned only on $select. Supports $filter (eq, ne, not, and in). nullable: true assignedLicenses: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedLicense' description: >- The licenses that are assigned to the user, including inherited (group-based) licenses. This property doesn't differentiate between directly assigned and inherited licenses. Use the licenseAssignmentStates property to identify the directly assigned and inherited licenses. Not nullable. Returned only on $select. Supports $filter (eq, not, /$count eq 0, /$count ne 0). assignedPlans: type: array items: $ref: '#/components/schemas/microsoft.graph.assignedPlan' description: >- The plans that are assigned to the user. Read-only. Not nullable. Returned only on $select. Supports $filter (eq and not). authorizationInfo: anyOf: - $ref: '#/components/schemas/microsoft.graph.authorizationInfo' - type: object nullable: true birthday: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The birthday of the user. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014, is 2014-01-01T00:00:00Z. Returned only on $select. format: date-time businessPhones: type: array items: type: string description: >- The telephone numbers for the user. NOTE: Although it's a string collection, only one number can be set for this property. Read-only for users synced from the on-premises directory. Returned by default. Supports $filter (eq, not, ge, le, startsWith). city: type: string description: >- The city where the user is located. Maximum length is 128 characters. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). nullable: true companyName: type: string description: >- The name of the company that the user is associated with. This property can be useful for describing the company that a guest comes from. The maximum length is 64 characters.Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). nullable: true consentProvidedForMinor: type: string description: >- Sets whether consent was obtained for minors. Allowed values: null, Granted, Denied, and NotRequired. For more information, see legal age group property definitions. Returned only on $select. Supports $filter (eq, ne, not, and in). nullable: true country: type: string description: >- The country or region where the user is located; for example, US or UK. Maximum length is 128 characters. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). nullable: true createdDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The date and time the user was created, in ISO 8601 format and UTC. The value can't be modified and is automatically populated when the entity is created. Nullable. For on-premises users, the value represents when they were first created in Microsoft Entra ID. Property is null for some users created before June 2018 and on-premises users that were synced to Microsoft Entra ID before June 2018. Read-only. Returned only on $select. Supports $filter (eq, ne, not , ge, le, in). format: date-time nullable: true creationType: type: string description: >- Indicates whether the user account was created through one of the following methods: As a regular school or work account (null). As an external account (Invitation). As a local account for an Azure Active Directory B2C tenant (LocalAccount). Through self-service sign-up by an internal user using email verification (EmailVerified). Through self-service sign-up by a guest signing up through a link that is part of a user flow (SelfServiceSignUp). Read-only.Returned only on $select. Supports $filter (eq, ne, not, in). nullable: true customSecurityAttributes: anyOf: - $ref: >- #/components/schemas/microsoft.graph.customSecurityAttributeValue - type: object nullable: true description: >- An open complex type that holds the value of a custom security attribute that is assigned to a directory object. Nullable. Returned only on $select. Supports $filter (eq, ne, not, startsWith). The filter value is case-sensitive. To read this property, the calling app must be assigned the CustomSecAttributeAssignment.Read.All permission. To write this property, the calling app must be assigned the CustomSecAttributeAssignment.ReadWrite.All permissions. To read or write this property in delegated scenarios, the admin must be assigned the Attribute Assignment Administrator role. department: type: string description: >- The name of the department in which the user works. Maximum length is 64 characters. Returned only on $select. Supports $filter (eq, ne, not , ge, le, in, and eq on null values). nullable: true deviceEnrollmentLimit: maximum: 2147483647 minimum: -2147483648 type: number description: >- The limit on the maximum number of devices that the user is permitted to enroll. Allowed values are 5 or 1000. format: int32 displayName: type: string description: >- The name displayed in the address book for the user. This value is usually the combination of the user's first name, middle initial, and family name. This property is required when a user is created and it can't be cleared during updates. Maximum length is 256 characters. Returned by default. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values), $orderby, and $search. nullable: true employeeHireDate: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The date and time when the user was hired or will start work in a future hire. Returned only on $select. Supports $filter (eq, ne, not , ge, le, in). format: date-time nullable: true employeeId: type: string description: >- The employee identifier assigned to the user by the organization. The maximum length is 16 characters. Returned only on $select. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values). nullable: true employeeLeaveDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The date and time when the user left or will leave the organization. To read this property, the calling app must be assigned the User-LifeCycleInfo.Read.All permission. To write this property, the calling app must be assigned the User.Read.All and User-LifeCycleInfo.ReadWrite.All permissions. To read this property in delegated scenarios, the admin needs at least one of the following Microsoft Entra roles: Lifecycle Workflows Administrator (least privilege), Global Reader. To write this property in delegated scenarios, the admin needs the Global Administrator role. Supports $filter (eq, ne, not , ge, le, in). For more information, see Configure the employeeLeaveDateTime property for a user. format: date-time nullable: true employeeOrgData: anyOf: - $ref: '#/components/schemas/microsoft.graph.employeeOrgData' - type: object nullable: true description: >- Represents organization data (for example, division and costCenter) associated with a user. Returned only on $select. Supports $filter (eq, ne, not , ge, le, in). employeeType: type: string description: >- Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Returned only on $select. Supports $filter (eq, ne, not , ge, le, in, startsWith). nullable: true externalUserState: type: string description: >- For a guest invited to the tenant using the invitation API, this property represents the invited user's invitation status. For invited users, the state can be PendingAcceptance or Accepted, or null for all other users. Returned only on $select. Supports $filter (eq, ne, not , in). nullable: true externalUserStateChangeDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Shows the timestamp for the latest change to the externalUserState property. Returned only on $select. Supports $filter (eq, ne, not , in). format: date-time nullable: true faxNumber: type: string description: >- The fax number of the user. Returned only on $select. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values). nullable: true givenName: type: string description: >- The given name (first name) of the user. Maximum length is 64 characters. Returned by default. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values). nullable: true hireDate: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The hire date of the user. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014, is 2014-01-01T00:00:00Z. Returned only on $select. Note: This property is specific to SharePoint in Microsoft 365. We recommend using the native employeeHireDate property to set and update hire date values using Microsoft Graph APIs. format: date-time identities: type: array items: $ref: '#/components/schemas/microsoft.graph.objectIdentity' description: >- Represents the identities that can be used to sign in to this user account. Microsoft (also known as a local account), organizations, or social identity providers such as Facebook, Google, and Microsoft can provide identity and tie it to a user account. It might contain multiple items with the same signInType value. Returned only on $select. Supports $filter (eq) with limitations. imAddresses: type: array items: type: string nullable: true description: >- The instant message voice-over IP (VOIP) session initiation protocol (SIP) addresses for the user. Read-only. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith). interests: type: array items: type: string nullable: true description: >- A list for the user to describe their interests. Returned only on $select. isManagementRestricted: type: boolean description: >- true if the user is a member of a restricted management administrative unit. If not set, the default value is null and the default behavior is false. Read-only. To manage a user who is a member of a restricted management administrative unit, the administrator or calling app must be assigned a Microsoft Entra role at the scope of the restricted management administrative unit. Returned only on $select. nullable: true isResourceAccount: type: boolean description: Don't use – reserved for future use. nullable: true jobTitle: type: string description: >- The user's job title. Maximum length is 128 characters. Returned by default. Supports $filter (eq, ne, not , ge, le, in, startsWith, and eq on null values). nullable: true lastPasswordChangeDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The time when this Microsoft Entra user last changed their password or when their password was created, whichever date the latest action was performed. The date and time information uses ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Returned only on $select. format: date-time nullable: true legalAgeGroupClassification: type: string description: >- Used by enterprise applications to determine the legal age group of the user. This property is read-only and calculated based on ageGroup and consentProvidedForMinor properties. Allowed values: null, Undefined, MinorWithOutParentalConsent, MinorWithParentalConsent, MinorNoParentalConsentRequired, NotAdult, and Adult. For more information, see legal age group property definitions. Returned only on $select. nullable: true licenseAssignmentStates: type: array items: $ref: '#/components/schemas/microsoft.graph.licenseAssignmentState' description: >- State of license assignments for this user. Also indicates licenses that are directly assigned or the user inherited through group memberships. Read-only. Returned only on $select. mail: type: string description: >- The SMTP address for the user, for example, jeff@contoso.com. Changes to this property update the user's proxyAddresses collection to include the value as an SMTP address. This property can't contain accent characters. NOTE: We don't recommend updating this property for Azure AD B2C user profiles. Use the otherMails property instead. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith, and eq on null values). nullable: true mailboxSettings: anyOf: - $ref: '#/components/schemas/microsoft.graph.mailboxSettings' - type: object nullable: true description: >- Settings for the primary mailbox of the signed-in user. You can get or update settings for sending automatic replies to incoming messages, locale, and time zone. Returned only on $select. mailNickname: type: string description: >- The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). nullable: true mobilePhone: type: string description: >- The primary cellular telephone number for the user. Read-only for users synced from the on-premises directory. Maximum length is 64 characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values) and $search. nullable: true mySite: type: string description: The URL for the user's site. Returned only on $select. nullable: true officeLocation: type: string description: >- The office location in the user's place of business. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). nullable: true onPremisesDistinguishedName: type: string description: >- Contains the on-premises Active Directory distinguished name or DN. The property is only populated for customers who are synchronizing their on-premises directory to Microsoft Entra ID via Microsoft Entra Connect. Read-only. Returned only on $select. nullable: true onPremisesDomainName: type: string description: >- Contains the on-premises domainFQDN, also called dnsDomainName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Microsoft Entra ID via Microsoft Entra Connect. Read-only. Returned only on $select. nullable: true onPremisesExtensionAttributes: anyOf: - $ref: >- #/components/schemas/microsoft.graph.onPremisesExtensionAttributes - type: object nullable: true description: >- Contains extensionAttributes1-15 for the user. These extension attributes are also known as Exchange custom attributes 1-15. Each attribute can store up to 1024 characters. For an onPremisesSyncEnabled user, the source of authority for this set of properties is the on-premises and is read-only. For a cloud-only user (where onPremisesSyncEnabled is false), these properties can be set during the creation or update of a user object. For a cloud-only user previously synced from on-premises Active Directory, these properties are read-only in Microsoft Graph but can be fully managed through the Exchange Admin Center or the Exchange Online V2 module in PowerShell. Returned only on $select. Supports $filter (eq, ne, not, in). onPremisesImmutableId: type: string description: >- This property is used to associate an on-premises Active Directory user account to their Microsoft Entra user object. This property must be specified when creating a new user account in the Graph if you're using a federated domain for the user's userPrincipalName (UPN) property. NOTE: The $ and _ characters can't be used when specifying this property. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in). nullable: true onPremisesLastSyncDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Indicates the last time at which the object was synced with the on-premises directory; for example: 2013-02-16T03:04:54Z. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in). format: date-time nullable: true onPremisesProvisioningErrors: type: array items: $ref: >- #/components/schemas/microsoft.graph.onPremisesProvisioningError description: >- Errors when using Microsoft synchronization product during provisioning. Returned only on $select. Supports $filter (eq, not, ge, le). onPremisesSamAccountName: type: string description: >- Contains the on-premises samAccountName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Microsoft Entra ID via Microsoft Entra Connect. Read-only. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith). nullable: true onPremisesSecurityIdentifier: type: string description: >- Contains the on-premises security identifier (SID) for the user that was synchronized from on-premises to the cloud. Read-only. Returned only on $select. Supports $filter (eq including on null values). nullable: true onPremisesSyncEnabled: type: boolean description: >- true if this user object is currently being synced from an on-premises Active Directory (AD); otherwise the user isn't being synced and can be managed in Microsoft Entra ID. Read-only. Returned only on $select. Supports $filter (eq, ne, not, in, and eq on null values). nullable: true onPremisesUserPrincipalName: type: string description: >- Contains the on-premises userPrincipalName synchronized from the on-premises directory. The property is only populated for customers who are synchronizing their on-premises directory to Microsoft Entra ID via Microsoft Entra Connect. Read-only. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith). nullable: true otherMails: type: array items: type: string description: >- A list of other email addresses for the user; for example: ['bob@contoso.com', 'Robert@fabrikam.com']. Can store up to 250 values, each with a limit of 250 characters. NOTE: This property can't contain accent characters. Returned only on $select. Supports $filter (eq, not, ge, le, in, startsWith, endsWith, /$count eq 0, /$count ne 0). passwordPolicies: type: string description: >- Specifies password policies for the user. This value is an enumeration with one possible value being DisableStrongPassword, which allows weaker passwords than the default policy to be specified. DisablePasswordExpiration can also be specified. The two might be specified together; for example: DisablePasswordExpiration, DisableStrongPassword. Returned only on $select. For more information on the default password policies, see Microsoft Entra password policies. Supports $filter (ne, not, and eq on null values). nullable: true passwordProfile: anyOf: - $ref: '#/components/schemas/microsoft.graph.passwordProfile' - type: object nullable: true description: >- Specifies the password profile for the user. The profile contains the user's password. This property is required when a user is created. The password in the profile must satisfy minimum requirements as specified by the passwordPolicies property. By default, a strong password is required. Returned only on $select. Supports $filter (eq, ne, not, in, and eq on null values). To update this property: User-PasswordProfile.ReadWrite.All is the least privileged permission to update this property. In delegated scenarios, the User Administrator Microsoft Entra role is the least privileged admin role supported to update this property for nonadmin users. Privileged Authentication Administrator is the least privileged role that's allowed to update this property for all administrators in the tenant. In general, the signed-in user must have a higher privileged administrator role as indicated in Who can reset passwords. In app-only scenarios, the calling app must be assigned a supported permission and at least the User Administrator Microsoft Entra role. pastProjects: type: array items: type: string nullable: true description: >- A list for the user to enumerate their past projects. Returned only on $select. postalCode: type: string description: >- The postal code for the user's postal address. The postal code is specific to the user's country or region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). nullable: true preferredDataLocation: type: string description: >- The preferred data location for the user. For more information, see OneDrive Online Multi-Geo. nullable: true preferredLanguage: type: string description: >- The preferred language for the user. The preferred language format is based on RFC 4646. The name is a combination of an ISO 639 two-letter lowercase culture code associated with the language, and an ISO 3166 two-letter uppercase subculture code associated with the country or region. Example: 'en-US', or 'es-ES'. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values) nullable: true preferredName: type: string description: >- The preferred name for the user. Not Supported. This attribute returns an empty string.Returned only on $select. nullable: true print: anyOf: - $ref: '#/components/schemas/microsoft.graph.userPrint' - type: object nullable: true provisionedPlans: type: array items: $ref: '#/components/schemas/microsoft.graph.provisionedPlan' description: >- The plans that are provisioned for the user. Read-only. Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le). proxyAddresses: type: array items: type: string description: >- For example: ['SMTP: bob@contoso.com', 'smtp: bob@sales.contoso.com']. Changes to the mail property update this collection to include the value as an SMTP address. For more information, see mail and proxyAddresses properties. The proxy address prefixed with SMTP (capitalized) is the primary proxy address, while those addresses prefixed with smtp are the secondary proxy addresses. For Azure AD B2C accounts, this property has a limit of 10 unique addresses. Read-only in Microsoft Graph; you can update this property only through the Microsoft 365 admin center. Not nullable. Returned only on $select. Supports $filter (eq, not, ge, le, startsWith, endsWith, /$count eq 0, /$count ne 0). responsibilities: type: array items: type: string nullable: true description: >- A list for the user to enumerate their responsibilities. Returned only on $select. schools: type: array items: type: string nullable: true description: >- A list for the user to enumerate the schools they attended. Returned only on $select. securityIdentifier: type: string description: >- Security identifier (SID) of the user, used in Windows scenarios. Read-only. Returned by default. Supports $select and $filter (eq, not, ge, le, startsWith). nullable: true serviceProvisioningErrors: type: array items: $ref: '#/components/schemas/microsoft.graph.serviceProvisioningError' description: >- Errors published by a federated service describing a nontransient, service-specific error regarding the properties or link from a user object. Supports $filter (eq, not, for isResolved and serviceInstance). showInAddressList: type: boolean description: >- Do not use in Microsoft Graph. Manage this property through the Microsoft 365 admin center instead. Represents whether the user should be included in the Outlook global address list. See Known issue. nullable: true signInActivity: anyOf: - $ref: '#/components/schemas/microsoft.graph.signInActivity' - type: object nullable: true description: >- Get the last signed-in date and request ID of the sign-in for a given user. Read-only.Returned only on $select. Supports $filter (eq, ne, not, ge, le) but not with any other filterable properties. Note: Details for this property require a Microsoft Entra ID P1 or P2 license and the AuditLog.Read.All permission.This property isn't returned for a user who never signed in or last signed in before April 2020. signInSessionsValidFromDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Any refresh tokens or session tokens (session cookies) issued before this time are invalid. Applications get an error when using an invalid refresh or session token to acquire a delegated access token (to access APIs such as Microsoft Graph). If this happens, the application needs to acquire a new refresh token by requesting the authorized endpoint. Read-only. Use revokeSignInSessions to reset. Returned only on $select. format: date-time nullable: true skills: type: array items: type: string nullable: true description: >- A list for the user to enumerate their skills. Returned only on $select. state: type: string description: >- The state or province in the user's address. Maximum length is 128 characters. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). nullable: true streetAddress: type: string description: >- The street address of the user's place of business. Maximum length is 1,024 characters. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). nullable: true surname: type: string description: >- The user's surname (family name or last name). Maximum length is 64 characters. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). nullable: true usageLocation: type: string description: >- A two-letter country code (ISO standard 3166). Required for users that are assigned licenses due to legal requirements to check for availability of services in countries/regions. Examples include: US, JP, and GB. Not nullable. Returned only on $select. Supports $filter (eq, ne, not, ge, le, in, startsWith, and eq on null values). nullable: true userPrincipalName: type: string description: >- The user principal name (UPN) of the user. The UPN is an Internet-style sign-in name for the user based on the Internet standard RFC 822. By convention, this value should map to the user's email name. The general format is alias@domain, where the domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: This property can't contain accent characters. Only the following characters are allowed A - Z, a - z, 0 - 9, ' . - _ ! # ^ ~. For the complete list of allowed characters, see username policies. Returned by default. Supports $filter (eq, ne, not, ge, le, in, startsWith, endsWith) and $orderby. nullable: true userType: type: string description: >- A string value that can be used to classify user types in your directory. The possible values are Member and Guest. Returned only on $select. Supports $filter (eq, ne, not, in, and eq on null values). NOTE: For more information about the permissions for members and guests, see What are the default user permissions in Microsoft Entra ID? nullable: true activities: type: array items: $ref: '#/components/schemas/microsoft.graph.userActivity' description: The user's activities across devices. Read-only. Nullable. x-ms-navigationProperty: true agreementAcceptances: type: array items: $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' description: >- The user's terms of use acceptance statuses. Read-only. Nullable. x-ms-navigationProperty: true appRoleAssignments: type: array items: $ref: '#/components/schemas/microsoft.graph.appRoleAssignment' description: >- Represents the app roles a user is granted for an application. Supports $expand. x-ms-navigationProperty: true authentication: anyOf: - $ref: '#/components/schemas/microsoft.graph.authentication' - type: object nullable: true description: The authentication methods that are supported for the user. x-ms-navigationProperty: true calendar: anyOf: - $ref: '#/components/schemas/microsoft.graph.calendar' - type: object nullable: true description: The user's primary calendar. Read-only. x-ms-navigationProperty: true calendarGroups: type: array items: $ref: '#/components/schemas/microsoft.graph.calendarGroup' description: The user's calendar groups. Read-only. Nullable. x-ms-navigationProperty: true calendars: type: array items: $ref: '#/components/schemas/microsoft.graph.calendar' description: The user's calendars. Read-only. Nullable. x-ms-navigationProperty: true calendarView: type: array items: $ref: '#/components/schemas/microsoft.graph.event' description: The calendar view for the calendar. Read-only. Nullable. x-ms-navigationProperty: true chats: type: array items: $ref: '#/components/schemas/microsoft.graph.chat' x-ms-navigationProperty: true cloudClipboard: anyOf: - $ref: '#/components/schemas/microsoft.graph.cloudClipboardRoot' - type: object nullable: true x-ms-navigationProperty: true cloudPCs: type: array items: $ref: '#/components/schemas/microsoft.graph.cloudPC' description: The user's Cloud PCs. Read-only. Nullable. x-ms-navigationProperty: true contactFolders: type: array items: $ref: '#/components/schemas/microsoft.graph.contactFolder' description: The user's contacts folders. Read-only. Nullable. x-ms-navigationProperty: true contacts: type: array items: $ref: '#/components/schemas/microsoft.graph.contact' description: The user's contacts. Read-only. Nullable. x-ms-navigationProperty: true createdObjects: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: Directory objects that the user created. Read-only. Nullable. x-ms-navigationProperty: true dataSecurityAndGovernance: anyOf: - $ref: >- #/components/schemas/microsoft.graph.userDataSecurityAndGovernance - type: object nullable: true description: >- The data security and governance settings for the user. Read-only. Nullable. x-ms-navigationProperty: true deviceManagementTroubleshootingEvents: type: array items: $ref: >- #/components/schemas/microsoft.graph.deviceManagementTroubleshootingEvent description: The list of troubleshooting events for this user. x-ms-navigationProperty: true directReports: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- The users and contacts that report to the user. (The users and contacts that have their manager property set to this user.) Read-only. Nullable. Supports $expand. x-ms-navigationProperty: true drive: anyOf: - $ref: '#/components/schemas/microsoft.graph.drive' - type: object nullable: true description: The user's OneDrive. Read-only. x-ms-navigationProperty: true drives: type: array items: $ref: '#/components/schemas/microsoft.graph.drive' description: A collection of drives available for this user. Read-only. x-ms-navigationProperty: true employeeExperience: anyOf: - $ref: '#/components/schemas/microsoft.graph.employeeExperienceUser' - type: object nullable: true x-ms-navigationProperty: true events: type: array items: $ref: '#/components/schemas/microsoft.graph.event' description: >- The user's events. Default is to show Events under the Default Calendar. Read-only. Nullable. x-ms-navigationProperty: true extensions: type: array items: $ref: '#/components/schemas/microsoft.graph.extension' description: >- The collection of open extensions defined for the user. Read-only. Supports $expand. Nullable. x-ms-navigationProperty: true followedSites: type: array items: $ref: '#/components/schemas/microsoft.graph.site' x-ms-navigationProperty: true inferenceClassification: anyOf: - $ref: '#/components/schemas/microsoft.graph.inferenceClassification' - type: object nullable: true description: >- Relevance classification of the user's messages based on explicit designations that override inferred relevance or importance. x-ms-navigationProperty: true insights: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemInsights' - type: object nullable: true description: >- Represents relationships between a user and items such as OneDrive for work or school documents, calculated using advanced analytics and machine learning techniques. Read-only. Nullable. x-ms-navigationProperty: true joinedTeams: type: array items: $ref: '#/components/schemas/microsoft.graph.team' x-ms-navigationProperty: true licenseDetails: type: array items: $ref: '#/components/schemas/microsoft.graph.licenseDetails' description: A collection of this user's license details. Read-only. x-ms-navigationProperty: true mailFolders: type: array items: $ref: '#/components/schemas/microsoft.graph.mailFolder' description: The user's mail folders. Read-only. Nullable. x-ms-navigationProperty: true managedAppRegistrations: type: array items: $ref: '#/components/schemas/microsoft.graph.managedAppRegistration' description: Zero or more managed app registrations that belong to the user. x-ms-navigationProperty: true managedDevices: type: array items: $ref: '#/components/schemas/microsoft.graph.managedDevice' description: The managed devices associated with the user. x-ms-navigationProperty: true manager: anyOf: - $ref: '#/components/schemas/microsoft.graph.directoryObject' - type: object nullable: true description: >- The user or contact that is this user's manager. Read-only. Supports $expand. x-ms-navigationProperty: true memberOf: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- The groups and directory roles that the user is a member of. Read-only. Nullable. Supports $expand. x-ms-navigationProperty: true messages: type: array items: $ref: '#/components/schemas/microsoft.graph.message' description: The messages in a mailbox or folder. Read-only. Nullable. x-ms-navigationProperty: true oauth2PermissionGrants: type: array items: $ref: '#/components/schemas/microsoft.graph.oAuth2PermissionGrant' x-ms-navigationProperty: true onenote: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenote' - type: object nullable: true x-ms-navigationProperty: true onlineMeetings: type: array items: $ref: '#/components/schemas/microsoft.graph.onlineMeeting' description: >- Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. x-ms-navigationProperty: true outlook: anyOf: - $ref: '#/components/schemas/microsoft.graph.outlookUser' - type: object nullable: true x-ms-navigationProperty: true ownedDevices: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- Devices the user owns. Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1). x-ms-navigationProperty: true ownedObjects: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- Directory objects the user owns. Read-only. Nullable. Supports $expand, $select nested in $expand, and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1). x-ms-navigationProperty: true people: type: array items: $ref: '#/components/schemas/microsoft.graph.person' description: People that are relevant to the user. Read-only. Nullable. x-ms-navigationProperty: true permissionGrants: type: array items: $ref: >- #/components/schemas/microsoft.graph.resourceSpecificPermissionGrant description: List all resource-specific permission grants of a user. x-ms-navigationProperty: true photo: anyOf: - $ref: '#/components/schemas/microsoft.graph.profilePhoto' - type: object nullable: true description: The user's profile photo. Read-only. x-ms-navigationProperty: true photos: type: array items: $ref: '#/components/schemas/microsoft.graph.profilePhoto' description: >- The collection of the user's profile photos in different sizes. Read-only. x-ms-navigationProperty: true planner: anyOf: - $ref: '#/components/schemas/microsoft.graph.plannerUser' - type: object nullable: true description: >- Entry-point to the Planner resource that might exist for a user. Read-only. x-ms-navigationProperty: true presence: anyOf: - $ref: '#/components/schemas/microsoft.graph.presence' - type: object nullable: true x-ms-navigationProperty: true registeredDevices: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- Devices that are registered for the user. Read-only. Nullable. Supports $expand and returns up to 100 objects. x-ms-navigationProperty: true scopedRoleMemberOf: type: array items: $ref: '#/components/schemas/microsoft.graph.scopedRoleMembership' x-ms-navigationProperty: true settings: anyOf: - $ref: '#/components/schemas/microsoft.graph.userSettings' - type: object nullable: true x-ms-navigationProperty: true solutions: anyOf: - $ref: '#/components/schemas/microsoft.graph.userSolutionRoot' - type: object nullable: true description: >- The identifier that relates the user to the working time schedule triggers. Read-Only. Nullable x-ms-navigationProperty: true sponsors: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- The users and groups responsible for this guest's privileges in the tenant and keeping the guest's information and access updated. (HTTP Methods: GET, POST, DELETE.). Supports $expand. x-ms-navigationProperty: true teamwork: anyOf: - $ref: '#/components/schemas/microsoft.graph.userTeamwork' - type: object nullable: true description: >- A container for Microsoft Teams features available for the user. Read-only. Nullable. x-ms-navigationProperty: true todo: anyOf: - $ref: '#/components/schemas/microsoft.graph.todo' - type: object nullable: true description: Represents the To Do services available to a user. x-ms-navigationProperty: true transitiveMemberOf: type: array items: $ref: '#/components/schemas/microsoft.graph.directoryObject' description: >- The groups, including nested groups, and directory roles that a user is a member of. Nullable. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.user' description: Represents a Microsoft Entra user account. x-ms-discriminator-value: '#microsoft.graph.user' microsoft.graph.assignedLicense: title: assignedLicense required: - '@odata.type' type: object properties: disabledPlans: type: array items: pattern: >- ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ type: string format: uuid description: >- A collection of the unique identifiers for plans that have been disabled. IDs are available in servicePlans > servicePlanId in the tenant's subscribedSkus or serviceStatus > servicePlanId in the tenant's companySubscription. skuId: pattern: >- ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$ type: string description: >- The unique identifier for the SKU. Corresponds to the skuId from subscribedSkus or companySubscription. format: uuid nullable: true '@odata.type': type: string microsoft.graph.onenote: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: onenote required: - '@odata.type' type: object properties: notebooks: type: array items: $ref: '#/components/schemas/microsoft.graph.notebook' description: >- The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. x-ms-navigationProperty: true operations: type: array items: $ref: '#/components/schemas/microsoft.graph.onenoteOperation' description: >- The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. x-ms-navigationProperty: true pages: type: array items: $ref: '#/components/schemas/microsoft.graph.onenotePage' description: >- The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. x-ms-navigationProperty: true resources: type: array items: $ref: '#/components/schemas/microsoft.graph.onenoteResource' description: >- The image and other file resources in OneNote pages. Getting a resources collection isn't supported, but you can get the binary content of a specific resource. Read-only. Nullable. x-ms-navigationProperty: true sectionGroups: type: array items: $ref: '#/components/schemas/microsoft.graph.sectionGroup' description: >- The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. x-ms-navigationProperty: true sections: type: array items: $ref: '#/components/schemas/microsoft.graph.onenoteSection' description: >- The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.onenote' microsoft.graph.notebook: allOf: - $ref: '#/components/schemas/microsoft.graph.onenoteEntityHierarchyModel' - title: notebook required: - '@odata.type' type: object properties: isDefault: type: boolean description: >- Indicates whether this is the user's default notebook. Read-only. nullable: true isShared: type: boolean description: >- Indicates whether the notebook is shared. If true, the contents of the notebook can be seen by people other than the owner. Read-only. nullable: true links: anyOf: - $ref: '#/components/schemas/microsoft.graph.notebookLinks' - type: object nullable: true description: >- Links for opening the notebook. The oneNoteClientURL link opens the notebook in the OneNote native client if it's installed. The oneNoteWebURL link opens the notebook in OneNote on the web. sectionGroupsUrl: type: string description: >- The URL for the sectionGroups navigation property, which returns all the section groups in the notebook. Read-only. nullable: true sectionsUrl: type: string description: >- The URL for the sections navigation property, which returns all the sections in the notebook. Read-only. nullable: true userRole: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteUserRole' - type: object nullable: true description: >- The possible values are: Owner, Contributor, Reader, None. Owner represents owner-level access to the notebook. Contributor represents read/write access to the notebook. Reader represents read-only access to the notebook. Read-only. sectionGroups: type: array items: $ref: '#/components/schemas/microsoft.graph.sectionGroup' description: The section groups in the notebook. Read-only. Nullable. x-ms-navigationProperty: true sections: type: array items: $ref: '#/components/schemas/microsoft.graph.onenoteSection' description: The sections in the notebook. Read-only. Nullable. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.notebook' x-ms-discriminator-value: '#microsoft.graph.notebook' microsoft.graph.onenoteOperation: allOf: - $ref: '#/components/schemas/microsoft.graph.operation' - title: onenoteOperation required: - '@odata.type' type: object properties: error: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteOperationError' - type: object nullable: true description: The error returned by the operation. percentComplete: type: string description: >- The operation percent complete if the operation is still in running status. nullable: true resourceId: type: string description: The resource id. nullable: true resourceLocation: type: string description: >- The resource URI for the object. For example, the resource URI for a copied page or section. nullable: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.onenoteOperation' microsoft.graph.sectionGroup: allOf: - $ref: '#/components/schemas/microsoft.graph.onenoteEntityHierarchyModel' - title: sectionGroup required: - '@odata.type' type: object properties: sectionGroupsUrl: type: string description: >- The URL for the sectionGroups navigation property, which returns all the section groups in the section group. Read-only. nullable: true sectionsUrl: type: string description: >- The URL for the sections navigation property, which returns all the sections in the section group. Read-only. nullable: true parentNotebook: anyOf: - $ref: '#/components/schemas/microsoft.graph.notebook' - type: object nullable: true description: The notebook that contains the section group. Read-only. x-ms-navigationProperty: true parentSectionGroup: anyOf: - $ref: '#/components/schemas/microsoft.graph.sectionGroup' - type: object nullable: true description: The section group that contains the section group. Read-only. x-ms-navigationProperty: true sectionGroups: type: array items: $ref: '#/components/schemas/microsoft.graph.sectionGroup' description: The section groups in the section. Read-only. Nullable. x-ms-navigationProperty: true sections: type: array items: $ref: '#/components/schemas/microsoft.graph.onenoteSection' description: The sections in the section group. Read-only. Nullable. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.sectionGroup' x-ms-discriminator-value: '#microsoft.graph.sectionGroup' microsoft.graph.onenoteSection: allOf: - $ref: '#/components/schemas/microsoft.graph.onenoteEntityHierarchyModel' - title: onenoteSection required: - '@odata.type' type: object properties: isDefault: type: boolean description: Indicates whether this is the user's default section. Read-only. nullable: true links: anyOf: - $ref: '#/components/schemas/microsoft.graph.sectionLinks' - type: object nullable: true description: >- Links for opening the section. The oneNoteClientURL link opens the section in the OneNote native client if it's installed. The oneNoteWebURL link opens the section in OneNote on the web. pagesUrl: type: string description: >- The pages endpoint where you can get details for all the pages in the section. Read-only. nullable: true pages: type: array items: $ref: '#/components/schemas/microsoft.graph.onenotePage' description: The collection of pages in the section. Read-only. Nullable. x-ms-navigationProperty: true parentNotebook: anyOf: - $ref: '#/components/schemas/microsoft.graph.notebook' - type: object nullable: true description: The notebook that contains the section. Read-only. x-ms-navigationProperty: true parentSectionGroup: anyOf: - $ref: '#/components/schemas/microsoft.graph.sectionGroup' - type: object nullable: true description: The section group that contains the section. Read-only. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.onenoteSection' x-ms-discriminator-value: '#microsoft.graph.onenoteSection' microsoft.graph.onenotePage: allOf: - $ref: '#/components/schemas/microsoft.graph.onenoteEntitySchemaObjectModel' - title: onenotePage required: - '@odata.type' type: object properties: content: type: string description: The page's HTML content. format: base64url nullable: true contentUrl: type: string description: The URL for the page's HTML content. Read-only. nullable: true createdByAppId: type: string description: >- The unique identifier of the application that created the page. Read-only. nullable: true lastModifiedDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The date and time when the page was last modified. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. format: date-time nullable: true level: maximum: 2147483647 minimum: -2147483648 type: number description: The indentation level of the page. Read-only. format: int32 nullable: true links: anyOf: - $ref: '#/components/schemas/microsoft.graph.pageLinks' - type: object nullable: true description: >- Links for opening the page. The oneNoteClientURL link opens the page in the OneNote native client if it 's installed. The oneNoteWebUrl link opens the page in OneNote on the web. Read-only. order: maximum: 2147483647 minimum: -2147483648 type: number description: The order of the page within its parent section. Read-only. format: int32 nullable: true title: type: string description: The title of the page. nullable: true userTags: type: array items: type: string nullable: true parentNotebook: anyOf: - $ref: '#/components/schemas/microsoft.graph.notebook' - type: object nullable: true description: The notebook that contains the page. Read-only. x-ms-navigationProperty: true parentSection: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteSection' - type: object nullable: true description: The section that contains the page. Read-only. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.onenotePage' x-ms-discriminator-value: '#microsoft.graph.onenotePage' microsoft.graph.onenotePagePreview: title: onenotePagePreview required: - '@odata.type' type: object properties: links: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenotePagePreviewLinks' - type: object nullable: true previewText: type: string nullable: true '@odata.type': type: string microsoft.graph.CopyNotebookModel: title: CopyNotebookModel required: - '@odata.type' type: object properties: createdBy: type: string nullable: true createdByIdentity: anyOf: - $ref: '#/components/schemas/microsoft.graph.identitySet' - type: object nullable: true createdTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string format: date-time nullable: true id: type: string nullable: true isDefault: type: boolean nullable: true isShared: type: boolean nullable: true lastModifiedBy: type: string nullable: true lastModifiedByIdentity: anyOf: - $ref: '#/components/schemas/microsoft.graph.identitySet' - type: object nullable: true lastModifiedTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string format: date-time nullable: true links: anyOf: - $ref: '#/components/schemas/microsoft.graph.notebookLinks' - type: object nullable: true name: type: string nullable: true sectionGroupsUrl: type: string nullable: true sectionsUrl: type: string nullable: true self: type: string nullable: true userRole: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteUserRole' - type: object nullable: true '@odata.type': type: string microsoft.graph.recentNotebook: title: recentNotebook required: - '@odata.type' type: object properties: displayName: type: string description: The name of the notebook. nullable: true lastAccessedTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The date and time when the notebook was last modified. The timestamp represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. format: date-time nullable: true links: anyOf: - $ref: '#/components/schemas/microsoft.graph.recentNotebookLinks' - type: object nullable: true description: >- Links for opening the notebook. The oneNoteClientURL link opens the notebook in the OneNote client, if it's installed. The oneNoteWebURL link opens the notebook in OneNote on the web. sourceService: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenoteSourceService' - type: object nullable: true description: >- The backend store where the Notebook resides, either OneDriveForBusiness or OneDrive. '@odata.type': type: string microsoft.graph.onenoteResource: allOf: - $ref: '#/components/schemas/microsoft.graph.onenoteEntityBaseModel' - title: onenoteResource required: - '@odata.type' type: object properties: content: type: string description: The content stream format: base64url nullable: true contentUrl: type: string description: The URL for downloading the content nullable: true '@odata.type': type: string default: '#microsoft.graph.onenoteResource' x-ms-discriminator-value: '#microsoft.graph.onenoteResource' microsoft.graph.onPremisesSyncBehavior: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: onPremisesSyncBehavior required: - '@odata.type' type: object properties: isCloudManaged: type: boolean '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.onPremisesSyncBehavior' microsoft.graph.profilePhoto: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: profilePhoto required: - '@odata.type' type: object properties: height: maximum: 2147483647 minimum: -2147483648 type: number description: The height of the photo. Read-only. format: int32 nullable: true width: maximum: 2147483647 minimum: -2147483648 type: number description: The width of the photo. Read-only. format: int32 nullable: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.profilePhoto' microsoft.graph.plannerGroup: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: plannerGroup required: - '@odata.type' type: object properties: plans: type: array items: $ref: '#/components/schemas/microsoft.graph.plannerPlan' description: >- Read-only. Nullable. Returns the plannerPlans owned by the group. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.plannerGroup' microsoft.graph.plannerPlan: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: plannerPlan required: - '@odata.type' type: object properties: container: anyOf: - $ref: '#/components/schemas/microsoft.graph.plannerPlanContainer' - type: object nullable: true description: >- Identifies the container of the plan. Specify only the url, the containerId and type, or all properties. After it's set, this property can’t be updated. Required. createdBy: anyOf: - $ref: '#/components/schemas/microsoft.graph.identitySet' - type: object nullable: true description: Read-only. The user who created the plan. createdDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Read-only. Date and time at which the plan is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z format: date-time nullable: true owner: type: string description: >- Use the container property instead. ID of the group that owns the plan. After it's set, this property can’t be updated. This property won't return a valid group ID if the container of the plan isn't a group. nullable: true title: type: string description: Required. Title of the plan. buckets: type: array items: $ref: '#/components/schemas/microsoft.graph.plannerBucket' description: Read-only. Nullable. Collection of buckets in the plan. x-ms-navigationProperty: true details: anyOf: - $ref: '#/components/schemas/microsoft.graph.plannerPlanDetails' - type: object nullable: true description: Read-only. Nullable. Extra details about the plan. x-ms-navigationProperty: true tasks: type: array items: $ref: '#/components/schemas/microsoft.graph.plannerTask' description: Read-only. Nullable. Collection of tasks in the plan. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.plannerPlan' microsoft.graph.plannerBucket: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: plannerBucket required: - '@odata.type' type: object properties: name: type: string description: Name of the bucket. orderHint: type: string description: >- Hint used to order items of this type in a list view. For details about the supported format, see Using order hints in Planner. nullable: true planId: type: string description: Plan ID to which the bucket belongs. nullable: true tasks: type: array items: $ref: '#/components/schemas/microsoft.graph.plannerTask' description: Read-only. Nullable. The collection of tasks in the bucket. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.plannerBucket' microsoft.graph.plannerTask: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: plannerTask required: - '@odata.type' type: object properties: activeChecklistItemCount: maximum: 2147483647 minimum: -2147483648 type: number description: >- Number of checklist items with value set to false, representing incomplete items. format: int32 nullable: true appliedCategories: anyOf: - $ref: >- #/components/schemas/microsoft.graph.plannerAppliedCategories - type: object nullable: true description: >- The categories to which the task has been applied. See applied Categories for possible values. assigneePriority: type: string description: >- Hint used to order items of this type in a list view. The format is defined as outlined here. nullable: true assignments: anyOf: - $ref: '#/components/schemas/microsoft.graph.plannerAssignments' - type: object nullable: true description: The set of assignees the task is assigned to. bucketId: type: string description: >- Bucket ID to which the task belongs. The bucket needs to be in the plan that the task is in. It's 28 characters long and case-sensitive. Format validation is done on the service. nullable: true checklistItemCount: maximum: 2147483647 minimum: -2147483648 type: number description: Number of checklist items that are present on the task. format: int32 nullable: true completedBy: anyOf: - $ref: '#/components/schemas/microsoft.graph.identitySet' - type: object nullable: true description: Identity of the user that completed the task. completedDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Read-only. Date and time at which the 'percentComplete' of the task is set to '100'. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z format: date-time nullable: true conversationThreadId: type: string description: >- Thread ID of the conversation on the task. This is the ID of the conversation thread object created in the group. nullable: true createdBy: anyOf: - $ref: '#/components/schemas/microsoft.graph.identitySet' - type: object nullable: true description: Identity of the user that created the task. createdDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Read-only. Date and time at which the task is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z format: date-time nullable: true dueDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Date and time at which the task is due. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z format: date-time nullable: true hasDescription: type: boolean description: >- Read-only. Value is true if the details object of the task has a nonempty description and false otherwise. nullable: true orderHint: type: string description: >- Hint used to order items of this type in a list view. The format is defined as outlined here. nullable: true percentComplete: maximum: 2147483647 minimum: -2147483648 type: number description: >- Percentage of task completion. When set to 100, the task is considered completed. format: int32 nullable: true planId: type: string description: Plan ID to which the task belongs. nullable: true previewType: anyOf: - $ref: '#/components/schemas/microsoft.graph.plannerPreviewType' - type: object nullable: true description: >- This sets the type of preview that shows up on the task. The possible values are: automatic, noPreview, checklist, description, reference. priority: maximum: 2147483647 minimum: -2147483648 type: number description: >- Priority of the task. The valid range of values is between 0 and 10, with the increasing value being lower priority (0 has the highest priority and 10 has the lowest priority). Currently, Planner interprets values 0 and 1 as 'urgent', 2, 3 and 4 as 'important', 5, 6, and 7 as 'medium', and 8, 9, and 10 as 'low'. Additionally, Planner sets the value 1 for 'urgent', 3 for 'important', 5 for 'medium', and 9 for 'low'. format: int32 nullable: true referenceCount: maximum: 2147483647 minimum: -2147483648 type: number description: Number of external references that exist on the task. format: int32 nullable: true startDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Date and time at which the task starts. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z format: date-time nullable: true title: type: string description: Title of the task. assignedToTaskBoardFormat: anyOf: - $ref: >- #/components/schemas/microsoft.graph.plannerAssignedToTaskBoardTaskFormat - type: object nullable: true description: >- Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. x-ms-navigationProperty: true bucketTaskBoardFormat: anyOf: - $ref: >- #/components/schemas/microsoft.graph.plannerBucketTaskBoardTaskFormat - type: object nullable: true description: >- Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. x-ms-navigationProperty: true details: anyOf: - $ref: '#/components/schemas/microsoft.graph.plannerTaskDetails' - type: object nullable: true description: Read-only. Nullable. More details about the task. x-ms-navigationProperty: true progressTaskBoardFormat: anyOf: - $ref: >- #/components/schemas/microsoft.graph.plannerProgressTaskBoardTaskFormat - type: object nullable: true description: >- Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.plannerTask' microsoft.graph.plannerTaskDetails: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: plannerTaskDetails required: - '@odata.type' type: object properties: checklist: anyOf: - $ref: '#/components/schemas/microsoft.graph.plannerChecklistItems' - type: object nullable: true description: The collection of checklist items on the task. description: type: string description: Description of the task. nullable: true previewType: anyOf: - $ref: '#/components/schemas/microsoft.graph.plannerPreviewType' - type: object nullable: true description: >- This sets the type of preview that shows up on the task. The possible values are: automatic, noPreview, checklist, description, reference. When set to automatic the displayed preview is chosen by the app viewing the task. references: anyOf: - $ref: >- #/components/schemas/microsoft.graph.plannerExternalReferences - type: object nullable: true description: The collection of references on the task. '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.plannerTaskDetails' microsoft.graph.plannerPlanDetails: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: plannerPlanDetails required: - '@odata.type' type: object properties: categoryDescriptions: anyOf: - $ref: >- #/components/schemas/microsoft.graph.plannerCategoryDescriptions - type: object nullable: true description: >- An object that specifies the descriptions of the 25 categories that can be associated with tasks in the plan. sharedWith: anyOf: - $ref: '#/components/schemas/microsoft.graph.plannerUserIds' - type: object nullable: true description: >- Set of user IDs that this plan is shared with. If you're using Microsoft 365 groups, use the Groups API to manage group membership to share the group's plan. You can also add existing members of the group to this collection, although it isn't required for them to access the plan owned by the group. '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.plannerPlanDetails' microsoft.graph.groupSetting: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: groupSetting required: - '@odata.type' type: object properties: displayName: type: string description: >- Display name of this group of settings, which comes from the associated template. nullable: true templateId: type: string description: >- Unique identifier for the tenant-level groupSettingTemplates object that's been customized for this group-level settings object. Read-only. nullable: true values: type: array items: $ref: '#/components/schemas/microsoft.graph.settingValue' description: >- Collection of name-value pairs corresponding to the name and defaultValue properties in the referenced groupSettingTemplates object. '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.groupSetting' microsoft.graph.site: allOf: - $ref: '#/components/schemas/microsoft.graph.baseItem' - title: site required: - '@odata.type' type: object properties: displayName: type: string description: The full title for the site. Read-only. nullable: true error: anyOf: - $ref: '#/components/schemas/microsoft.graph.publicError' - type: object nullable: true isPersonalSite: type: boolean description: Identifies whether the site is personal or not. Read-only. nullable: true root: anyOf: - $ref: '#/components/schemas/microsoft.graph.root' - type: object nullable: true description: >- If present, provides the root site in the site collection. Read-only. sharepointIds: anyOf: - $ref: '#/components/schemas/microsoft.graph.sharepointIds' - type: object nullable: true description: >- Returns identifiers useful for SharePoint REST compatibility. Read-only. siteCollection: anyOf: - $ref: '#/components/schemas/microsoft.graph.siteCollection' - type: object nullable: true description: >- Provides details about the site's site collection. Available only on the root site. Read-only. analytics: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemAnalytics' - type: object nullable: true description: >- Analytics about the view activities that took place on this site. x-ms-navigationProperty: true columns: type: array items: $ref: '#/components/schemas/microsoft.graph.columnDefinition' description: >- The collection of column definitions reusable across lists under this site. x-ms-navigationProperty: true contentTypes: type: array items: $ref: '#/components/schemas/microsoft.graph.contentType' description: The collection of content types defined for this site. x-ms-navigationProperty: true drive: anyOf: - $ref: '#/components/schemas/microsoft.graph.drive' - type: object nullable: true description: The default drive (document library) for this site. x-ms-navigationProperty: true drives: type: array items: $ref: '#/components/schemas/microsoft.graph.drive' description: The collection of drives (document libraries) under this site. x-ms-navigationProperty: true externalColumns: type: array items: $ref: '#/components/schemas/microsoft.graph.columnDefinition' x-ms-navigationProperty: true items: type: array items: $ref: '#/components/schemas/microsoft.graph.baseItem' description: >- Used to address any item contained in this site. This collection can't be enumerated. x-ms-navigationProperty: true lists: type: array items: $ref: '#/components/schemas/microsoft.graph.list' description: The collection of lists under this site. x-ms-navigationProperty: true onenote: anyOf: - $ref: '#/components/schemas/microsoft.graph.onenote' - type: object nullable: true description: Calls the OneNote service for notebook related operations. x-ms-navigationProperty: true operations: type: array items: $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' description: The collection of long-running operations on the site. x-ms-navigationProperty: true pages: type: array items: $ref: '#/components/schemas/microsoft.graph.baseSitePage' description: The collection of pages in the baseSitePages list in this site. x-ms-navigationProperty: true permissions: type: array items: $ref: '#/components/schemas/microsoft.graph.permission' description: The permissions associated with the site. Nullable. x-ms-navigationProperty: true sites: type: array items: $ref: '#/components/schemas/microsoft.graph.site' description: The collection of the sub-sites under this site. x-ms-navigationProperty: true termStore: anyOf: - $ref: '#/components/schemas/microsoft.graph.termStore.store' - type: object nullable: true description: The default termStore under this site. x-ms-navigationProperty: true termStores: type: array items: $ref: '#/components/schemas/microsoft.graph.termStore.store' description: The collection of termStores under this site. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.site' x-ms-discriminator-value: '#microsoft.graph.site' microsoft.graph.itemAnalytics: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: itemAnalytics required: - '@odata.type' type: object properties: allTime: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemActivityStat' - type: object nullable: true x-ms-navigationProperty: true itemActivityStats: type: array items: $ref: '#/components/schemas/microsoft.graph.itemActivityStat' x-ms-navigationProperty: true lastSevenDays: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemActivityStat' - type: object nullable: true x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.itemAnalytics' microsoft.graph.itemActivityStat: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: itemActivityStat required: - '@odata.type' type: object properties: access: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemActionStat' - type: object nullable: true description: Statistics about the access actions in this interval. Read-only. create: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemActionStat' - type: object nullable: true description: Statistics about the create actions in this interval. Read-only. delete: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemActionStat' - type: object nullable: true description: Statistics about the delete actions in this interval. Read-only. edit: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemActionStat' - type: object nullable: true description: Statistics about the edit actions in this interval. Read-only. endDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: When the interval ends. Read-only. format: date-time nullable: true incompleteData: anyOf: - $ref: '#/components/schemas/microsoft.graph.incompleteData' - type: object nullable: true description: >- Indicates that the statistics in this interval are based on incomplete data. Read-only. isTrending: type: boolean description: Indicates whether the item is 'trending.' Read-only. nullable: true move: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemActionStat' - type: object nullable: true description: Statistics about the move actions in this interval. Read-only. startDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: When the interval starts. Read-only. format: date-time nullable: true activities: type: array items: $ref: '#/components/schemas/microsoft.graph.itemActivity' description: >- Exposes the itemActivities represented in this itemActivityStat resource. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.itemActivityStat' microsoft.graph.itemActivity: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: itemActivity required: - '@odata.type' type: object properties: access: anyOf: - $ref: '#/components/schemas/microsoft.graph.accessAction' - type: object nullable: true description: An item was accessed. activityDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: Details about when the activity took place. Read-only. format: date-time nullable: true actor: anyOf: - $ref: '#/components/schemas/microsoft.graph.identitySet' - type: object nullable: true description: Identity of who performed the action. Read-only. driveItem: anyOf: - $ref: '#/components/schemas/microsoft.graph.driveItem' - type: object nullable: true description: Exposes the driveItem that was the target of this activity. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.itemActivity' microsoft.graph.driveItem: allOf: - $ref: '#/components/schemas/microsoft.graph.baseItem' - title: driveItem required: - '@odata.type' type: object properties: audio: anyOf: - $ref: '#/components/schemas/microsoft.graph.audio' - type: object nullable: true description: >- Audio metadata, if the item is an audio file. Read-only. Read-only. Only on OneDrive Personal. bundle: anyOf: - $ref: '#/components/schemas/microsoft.graph.bundle' - type: object nullable: true description: Bundle metadata, if the item is a bundle. Read-only. content: type: string description: The content stream, if the item represents a file. format: base64url nullable: true cTag: type: string description: >- An eTag for the content of the item. This eTag isn't changed if only the metadata is changed. Note This property isn't returned if the item is a folder. Read-only. nullable: true deleted: anyOf: - $ref: '#/components/schemas/microsoft.graph.deleted' - type: object nullable: true description: Information about the deleted state of the item. Read-only. file: anyOf: - $ref: '#/components/schemas/microsoft.graph.file' - type: object nullable: true description: File metadata, if the item is a file. Read-only. fileSystemInfo: anyOf: - $ref: '#/components/schemas/microsoft.graph.fileSystemInfo' - type: object nullable: true description: File system information on client. Read-write. folder: anyOf: - $ref: '#/components/schemas/microsoft.graph.folder' - type: object nullable: true description: Folder metadata, if the item is a folder. Read-only. image: anyOf: - $ref: '#/components/schemas/microsoft.graph.image' - type: object nullable: true description: Image metadata, if the item is an image. Read-only. location: anyOf: - $ref: '#/components/schemas/microsoft.graph.geoCoordinates' - type: object nullable: true description: Location metadata, if the item has location data. Read-only. malware: anyOf: - $ref: '#/components/schemas/microsoft.graph.malware' - type: object nullable: true description: >- Malware metadata, if the item was detected to contain malware. Read-only. package: anyOf: - $ref: '#/components/schemas/microsoft.graph.package' - type: object nullable: true description: >- If present, indicates that this item is a package instead of a folder or file. Packages are treated like files in some contexts and folders in others. Read-only. pendingOperations: anyOf: - $ref: '#/components/schemas/microsoft.graph.pendingOperations' - type: object nullable: true description: >- If present, indicates that one or more operations that might affect the state of the driveItem are pending completion. Read-only. photo: anyOf: - $ref: '#/components/schemas/microsoft.graph.photo' - type: object nullable: true description: Photo metadata, if the item is a photo. Read-only. publication: anyOf: - $ref: '#/components/schemas/microsoft.graph.publicationFacet' - type: object nullable: true description: >- Provides information about the published or checked-out state of an item, in locations that support such actions. This property isn't returned by default. Read-only. remoteItem: anyOf: - $ref: '#/components/schemas/microsoft.graph.remoteItem' - type: object nullable: true description: >- Remote item data, if the item is shared from a drive other than the one being accessed. Read-only. root: anyOf: - $ref: '#/components/schemas/microsoft.graph.root' - type: object nullable: true description: >- If this property is non-null, it indicates that the driveItem is the top-most driveItem in the drive. searchResult: anyOf: - $ref: '#/components/schemas/microsoft.graph.searchResult' - type: object nullable: true description: Search metadata, if the item is from a search result. Read-only. shared: anyOf: - $ref: '#/components/schemas/microsoft.graph.shared' - type: object nullable: true description: >- Indicates that the item was shared with others and provides information about the shared state of the item. Read-only. sharepointIds: anyOf: - $ref: '#/components/schemas/microsoft.graph.sharepointIds' - type: object nullable: true description: >- Returns identifiers useful for SharePoint REST compatibility. Read-only. size: type: number description: Size of the item in bytes. Read-only. format: int64 nullable: true specialFolder: anyOf: - $ref: '#/components/schemas/microsoft.graph.specialFolder' - type: object nullable: true description: >- If the current item is also available as a special folder, this facet is returned. Read-only. video: anyOf: - $ref: '#/components/schemas/microsoft.graph.video' - type: object nullable: true description: Video metadata, if the item is a video. Read-only. webDavUrl: type: string description: WebDAV compatible URL for the item. nullable: true analytics: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemAnalytics' - type: object nullable: true description: >- Analytics about the view activities that took place on this item. x-ms-navigationProperty: true children: type: array items: $ref: '#/components/schemas/microsoft.graph.driveItem' description: >- Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. x-ms-navigationProperty: true listItem: anyOf: - $ref: '#/components/schemas/microsoft.graph.listItem' - type: object nullable: true description: >- For drives in SharePoint, the associated document library list item. Read-only. Nullable. x-ms-navigationProperty: true permissions: type: array items: $ref: '#/components/schemas/microsoft.graph.permission' description: The set of permissions for the item. Read-only. Nullable. x-ms-navigationProperty: true retentionLabel: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemRetentionLabel' - type: object nullable: true description: >- Information about retention label and settings enforced on the driveItem. Read-write. x-ms-navigationProperty: true subscriptions: type: array items: $ref: '#/components/schemas/microsoft.graph.subscription' description: >- The set of subscriptions on the item. Only supported on the root of a drive. x-ms-navigationProperty: true thumbnails: type: array items: $ref: '#/components/schemas/microsoft.graph.thumbnailSet' description: >- Collection of thumbnailSet objects associated with the item. For more information, see getting thumbnails. Read-only. Nullable. x-ms-navigationProperty: true versions: type: array items: $ref: '#/components/schemas/microsoft.graph.driveItemVersion' description: >- The list of previous versions of the item. For more info, see getting previous versions. Read-only. Nullable. x-ms-navigationProperty: true workbook: anyOf: - $ref: '#/components/schemas/microsoft.graph.workbook' - type: object nullable: true description: >- For files that are Excel spreadsheets, access to the workbook API to work with the spreadsheet's contents. Nullable. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.driveItem' x-ms-discriminator-value: '#microsoft.graph.driveItem' microsoft.graph.columnDefinition: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: columnDefinition required: - '@odata.type' type: object properties: boolean: anyOf: - $ref: '#/components/schemas/microsoft.graph.booleanColumn' - type: object nullable: true description: This column stores Boolean values. calculated: anyOf: - $ref: '#/components/schemas/microsoft.graph.calculatedColumn' - type: object nullable: true description: This column's data is calculated based on other columns. choice: anyOf: - $ref: '#/components/schemas/microsoft.graph.choiceColumn' - type: object nullable: true description: This column stores data from a list of choices. columnGroup: type: string description: >- For site columns, the name of the group this column belongs to. Helps organize related columns. nullable: true contentApprovalStatus: anyOf: - $ref: >- #/components/schemas/microsoft.graph.contentApprovalStatusColumn - type: object nullable: true description: This column stores content approval status. currency: anyOf: - $ref: '#/components/schemas/microsoft.graph.currencyColumn' - type: object nullable: true description: This column stores currency values. dateTime: anyOf: - $ref: '#/components/schemas/microsoft.graph.dateTimeColumn' - type: object nullable: true description: This column stores DateTime values. defaultValue: anyOf: - $ref: '#/components/schemas/microsoft.graph.defaultColumnValue' - type: object nullable: true description: The default value for this column. description: type: string description: The user-facing description of the column. nullable: true displayName: type: string description: The user-facing name of the column. nullable: true enforceUniqueValues: type: boolean description: >- If true, no two list items may have the same value for this column. nullable: true geolocation: anyOf: - $ref: '#/components/schemas/microsoft.graph.geolocationColumn' - type: object nullable: true description: This column stores a geolocation. hidden: type: boolean description: Specifies whether the column is displayed in the user interface. nullable: true hyperlinkOrPicture: anyOf: - $ref: >- #/components/schemas/microsoft.graph.hyperlinkOrPictureColumn - type: object nullable: true description: This column stores hyperlink or picture values. indexed: type: boolean description: >- Specifies whether the column values can be used for sorting and searching. nullable: true isDeletable: type: boolean description: Indicates whether this column can be deleted. nullable: true isReorderable: type: boolean description: >- Indicates whether values in the column can be reordered. Read-only. nullable: true isSealed: type: boolean description: Specifies whether the column can be changed. nullable: true lookup: anyOf: - $ref: '#/components/schemas/microsoft.graph.lookupColumn' - type: object nullable: true description: This column's data is looked up from another source in the site. name: type: string description: >- The API-facing name of the column as it appears in the fields on a listItem. For the user-facing name, see displayName. nullable: true number: anyOf: - $ref: '#/components/schemas/microsoft.graph.numberColumn' - type: object nullable: true description: This column stores number values. personOrGroup: anyOf: - $ref: '#/components/schemas/microsoft.graph.personOrGroupColumn' - type: object nullable: true description: This column stores Person or Group values. propagateChanges: type: boolean description: >- If 'true', changes to this column will be propagated to lists that implement the column. nullable: true readOnly: type: boolean description: Specifies whether the column values can be modified. nullable: true required: type: boolean description: Specifies whether the column value isn't optional. nullable: true sourceContentType: anyOf: - $ref: '#/components/schemas/microsoft.graph.contentTypeInfo' - type: object nullable: true description: >- ContentType from which this column is inherited from. Present only in contentTypes columns response. Read-only. term: anyOf: - $ref: '#/components/schemas/microsoft.graph.termColumn' - type: object nullable: true description: This column stores taxonomy terms. text: anyOf: - $ref: '#/components/schemas/microsoft.graph.textColumn' - type: object nullable: true description: This column stores text values. thumbnail: anyOf: - $ref: '#/components/schemas/microsoft.graph.thumbnailColumn' - type: object nullable: true description: This column stores thumbnail values. type: anyOf: - $ref: '#/components/schemas/microsoft.graph.columnTypes' - type: object nullable: true description: For site columns, the type of column. Read-only. validation: anyOf: - $ref: '#/components/schemas/microsoft.graph.columnValidation' - type: object nullable: true description: >- This column stores validation formula and message for the column. sourceColumn: anyOf: - $ref: '#/components/schemas/microsoft.graph.columnDefinition' - type: object nullable: true description: The source column for the content type column. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.columnDefinition' microsoft.graph.contentType: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: contentType required: - '@odata.type' type: object properties: associatedHubsUrls: type: array items: type: string nullable: true description: >- List of canonical URLs for hub sites with which this content type is associated to. This will contain all hub sites where this content type is queued to be enforced or is already enforced. Enforcing a content type means that the content type is applied to the lists in the enforced sites. description: type: string description: The descriptive text for the item. nullable: true documentSet: anyOf: - $ref: '#/components/schemas/microsoft.graph.documentSet' - type: object nullable: true description: Document Set metadata. documentTemplate: anyOf: - $ref: '#/components/schemas/microsoft.graph.documentSetContent' - type: object nullable: true description: >- Document template metadata. To make sure that documents have consistent content across a site and its subsites, you can associate a Word, Excel, or PowerPoint template with a site content type. group: type: string description: >- The name of the group this content type belongs to. Helps organize related content types. nullable: true hidden: type: boolean description: >- Indicates whether the content type is hidden in the list's 'New' menu. nullable: true inheritedFrom: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemReference' - type: object nullable: true description: >- If this content type is inherited from another scope (like a site), provides a reference to the item where the content type is defined. isBuiltIn: type: boolean description: Specifies if a content type is a built-in content type. nullable: true name: type: string description: The name of the content type. nullable: true order: anyOf: - $ref: '#/components/schemas/microsoft.graph.contentTypeOrder' - type: object nullable: true description: >- Specifies the order in which the content type appears in the selection UI. parentId: type: string description: The unique identifier of the content type. nullable: true propagateChanges: type: boolean description: >- If true, any changes made to the content type are pushed to inherited content types and lists that implement the content type. nullable: true readOnly: type: boolean description: >- If true, the content type can't be modified unless this value is first set to false. nullable: true sealed: type: boolean description: >- If true, the content type can't be modified by users or through push-down operations. Only site collection administrators can seal or unseal content types. nullable: true base: anyOf: - $ref: '#/components/schemas/microsoft.graph.contentType' - type: object nullable: true description: Parent contentType from which this content type is derived. x-ms-navigationProperty: true baseTypes: type: array items: $ref: '#/components/schemas/microsoft.graph.contentType' description: >- The collection of content types that are ancestors of this content type. x-ms-navigationProperty: true columnLinks: type: array items: $ref: '#/components/schemas/microsoft.graph.columnLink' description: >- The collection of columns that are required by this content type. x-ms-navigationProperty: true columnPositions: type: array items: $ref: '#/components/schemas/microsoft.graph.columnDefinition' description: Column order information in a content type. x-ms-navigationProperty: true columns: type: array items: $ref: '#/components/schemas/microsoft.graph.columnDefinition' description: The collection of column definitions for this content type. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.contentType' microsoft.graph.columnLink: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: columnLink required: - '@odata.type' type: object properties: name: type: string description: The name of the column in this content type. nullable: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.columnLink' microsoft.graph.itemReference: title: itemReference required: - '@odata.type' type: object properties: driveId: type: string description: >- Unique identifier of the drive instance that contains the driveItem. Only returned if the item is located in a drive. Read-only. nullable: true driveType: type: string description: >- Identifies the type of drive. Only returned if the item is located in a drive. See drive resource for values. nullable: true id: type: string description: >- Unique identifier of the driveItem in the drive or a listItem in a list. Read-only. nullable: true name: type: string description: The name of the item being referenced. Read-only. nullable: true path: type: string description: >- Percent-encoded path that can be used to navigate to the item. Read-only. nullable: true shareId: type: string description: >- A unique identifier for a shared resource that can be accessed via the Shares API. nullable: true sharepointIds: anyOf: - $ref: '#/components/schemas/microsoft.graph.sharepointIds' - type: object nullable: true description: >- Returns identifiers useful for SharePoint REST compatibility. Read-only. siteId: type: string description: >- For OneDrive for Business and SharePoint, this property represents the ID of the site that contains the parent document library of the driveItem resource or the parent list of the listItem resource. The value is the same as the id property of that site resource. It is an opaque string that consists of three identifiers of the site. For OneDrive, this property is not populated. nullable: true '@odata.type': type: string microsoft.graph.mailboxSettings: title: mailboxSettings required: - '@odata.type' type: object properties: archiveFolder: type: string description: Folder ID of an archive folder for the user. nullable: true automaticRepliesSetting: anyOf: - $ref: '#/components/schemas/microsoft.graph.automaticRepliesSetting' - type: object nullable: true description: >- Configuration settings to automatically notify the sender of an incoming email with a message from the signed-in user. dateFormat: type: string description: The date format for the user's mailbox. nullable: true delegateMeetingMessageDeliveryOptions: anyOf: - $ref: >- #/components/schemas/microsoft.graph.delegateMeetingMessageDeliveryOptions - type: object nullable: true description: >- If the user has a calendar delegate, this specifies whether the delegate, mailbox owner, or both receive meeting messages and meeting responses. The possible values are: sendToDelegateAndInformationToPrincipal, sendToDelegateAndPrincipal, sendToDelegateOnly. language: anyOf: - $ref: '#/components/schemas/microsoft.graph.localeInfo' - type: object nullable: true description: >- The locale information for the user, including the preferred language and country/region. timeFormat: type: string description: The time format for the user's mailbox. nullable: true timeZone: type: string description: The default time zone for the user's mailbox. nullable: true userPurpose: anyOf: - $ref: '#/components/schemas/microsoft.graph.userPurpose' - type: object nullable: true description: >- The purpose of the mailbox. Differentiates a mailbox for a single user from a shared mailbox and equipment mailbox in Exchange Online. The possible values are: user, linked, shared, room, equipment, others, unknownFutureValue. Read-only. workingHours: anyOf: - $ref: '#/components/schemas/microsoft.graph.workingHours' - type: object nullable: true description: >- The days of the week and hours in a specific time zone that the user works. '@odata.type': type: string microsoft.graph.baseItem: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: baseItem required: - '@odata.type' type: object properties: createdBy: anyOf: - $ref: '#/components/schemas/microsoft.graph.identitySet' - type: object nullable: true description: >- Identity of the user, device, or application that created the item. Read-only. createdDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: Date and time of item creation. Read-only. format: date-time description: type: string description: Provides a user-visible description of the item. Optional. nullable: true eTag: type: string description: ETag for the item. Read-only. nullable: true lastModifiedBy: anyOf: - $ref: '#/components/schemas/microsoft.graph.identitySet' - type: object nullable: true description: >- Identity of the user, device, and application that last modified the item. Read-only. lastModifiedDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: Date and time the item was last modified. Read-only. format: date-time name: type: string description: The name of the item. Read-write. nullable: true parentReference: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemReference' - type: object nullable: true description: Parent information, if the item has a parent. Read-write. webUrl: type: string description: >- URL that either displays the resource in the browser (for Office file formats), or is a direct link to the file (for other formats). Read-only. nullable: true createdByUser: anyOf: - $ref: '#/components/schemas/microsoft.graph.user' - type: object nullable: true description: Identity of the user who created the item. Read-only. x-ms-navigationProperty: true lastModifiedByUser: anyOf: - $ref: '#/components/schemas/microsoft.graph.user' - type: object nullable: true description: Identity of the user who last modified the item. Read-only. x-ms-navigationProperty: true '@odata.type': type: string discriminator: propertyName: '@odata.type' mapping: '#microsoft.graph.baseSitePage': '#/components/schemas/microsoft.graph.baseSitePage' '#microsoft.graph.sitePage': '#/components/schemas/microsoft.graph.sitePage' '#microsoft.graph.drive': '#/components/schemas/microsoft.graph.drive' '#microsoft.graph.driveItem': '#/components/schemas/microsoft.graph.driveItem' '#microsoft.graph.list': '#/components/schemas/microsoft.graph.list' '#microsoft.graph.listItem': '#/components/schemas/microsoft.graph.listItem' '#microsoft.graph.recycleBin': '#/components/schemas/microsoft.graph.recycleBin' '#microsoft.graph.recycleBinItem': '#/components/schemas/microsoft.graph.recycleBinItem' '#microsoft.graph.sharedDriveItem': '#/components/schemas/microsoft.graph.sharedDriveItem' '#microsoft.graph.site': '#/components/schemas/microsoft.graph.site' microsoft.graph.list: allOf: - $ref: '#/components/schemas/microsoft.graph.baseItem' - title: list required: - '@odata.type' type: object properties: displayName: type: string description: The displayable title of the list. nullable: true list: anyOf: - $ref: '#/components/schemas/microsoft.graph.listInfo' - type: object nullable: true description: Contains more details about the list. sharepointIds: anyOf: - $ref: '#/components/schemas/microsoft.graph.sharepointIds' - type: object nullable: true description: >- Returns identifiers useful for SharePoint REST compatibility. Read-only. system: anyOf: - $ref: '#/components/schemas/microsoft.graph.systemFacet' - type: object nullable: true description: >- If present, indicates that the list is system-managed. Read-only. columns: type: array items: $ref: '#/components/schemas/microsoft.graph.columnDefinition' description: The collection of field definitions for this list. x-ms-navigationProperty: true contentTypes: type: array items: $ref: '#/components/schemas/microsoft.graph.contentType' description: The collection of content types present in this list. x-ms-navigationProperty: true drive: anyOf: - $ref: '#/components/schemas/microsoft.graph.drive' - type: object nullable: true description: >- Allows access to the list as a drive resource with driveItems. Only present on document libraries. x-ms-navigationProperty: true items: type: array items: $ref: '#/components/schemas/microsoft.graph.listItem' description: All items contained in the list. x-ms-navigationProperty: true operations: type: array items: $ref: '#/components/schemas/microsoft.graph.richLongRunningOperation' description: The collection of long-running operations on the list. x-ms-navigationProperty: true subscriptions: type: array items: $ref: '#/components/schemas/microsoft.graph.subscription' description: The set of subscriptions on the list. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.list' x-ms-discriminator-value: '#microsoft.graph.list' microsoft.graph.listItem: allOf: - $ref: '#/components/schemas/microsoft.graph.baseItem' - title: listItem required: - '@odata.type' type: object properties: contentType: anyOf: - $ref: '#/components/schemas/microsoft.graph.contentTypeInfo' - type: object nullable: true description: The content type of this list item sharepointIds: anyOf: - $ref: '#/components/schemas/microsoft.graph.sharepointIds' - type: object nullable: true description: >- Returns identifiers useful for SharePoint REST compatibility. Read-only. analytics: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemAnalytics' - type: object nullable: true description: >- Analytics about the view activities that took place on this item. x-ms-navigationProperty: true documentSetVersions: type: array items: $ref: '#/components/schemas/microsoft.graph.documentSetVersion' description: >- Version information for a document set version created by a user. x-ms-navigationProperty: true driveItem: anyOf: - $ref: '#/components/schemas/microsoft.graph.driveItem' - type: object nullable: true description: >- For document libraries, the driveItem relationship exposes the listItem as a driveItem x-ms-navigationProperty: true fields: anyOf: - $ref: '#/components/schemas/microsoft.graph.fieldValueSet' - type: object nullable: true description: The values of the columns set on this list item. x-ms-navigationProperty: true versions: type: array items: $ref: '#/components/schemas/microsoft.graph.listItemVersion' description: The list of previous versions of the list item. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.listItem' x-ms-discriminator-value: '#microsoft.graph.listItem' microsoft.graph.documentSetVersion: allOf: - $ref: '#/components/schemas/microsoft.graph.listItemVersion' - title: documentSetVersion required: - '@odata.type' type: object properties: comment: type: string description: Comment about the captured version. nullable: true createdBy: anyOf: - $ref: '#/components/schemas/microsoft.graph.identitySet' - type: object nullable: true description: User who captured the version. createdDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: Date and time when this version was created. format: date-time nullable: true items: type: array items: $ref: '#/components/schemas/microsoft.graph.documentSetVersionItem' description: >- Items within the document set that are captured as part of this version. shouldCaptureMinorVersion: type: boolean description: >- If true, minor versions of items are also captured; otherwise, only major versions are captured. The default value is false. nullable: true '@odata.type': type: string default: '#microsoft.graph.documentSetVersion' x-ms-discriminator-value: '#microsoft.graph.documentSetVersion' microsoft.graph.fieldValueSet: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: fieldValueSet required: - '@odata.type' type: object properties: '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.fieldValueSet' microsoft.graph.driveRecipient: title: driveRecipient required: - '@odata.type' type: object properties: alias: type: string description: >- The alias of the domain object, for cases where an email address is unavailable (for example, security groups). nullable: true email: type: string description: >- The email address for the recipient, if the recipient has an associated email address. nullable: true objectId: type: string description: The unique identifier for the recipient in the directory. nullable: true '@odata.type': type: string microsoft.graph.permission: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: permission required: - '@odata.type' type: object properties: expirationDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- A format of yyyy-MM-ddTHH:mm:ssZ of DateTimeOffset indicates the expiration time of the permission. DateTime.MinValue indicates there's no expiration set for this permission. Optional. format: date-time nullable: true grantedTo: anyOf: - $ref: '#/components/schemas/microsoft.graph.identitySet' - type: object nullable: true description: >- For user type permissions, the details of the users and applications for this permission. Read-only. grantedToIdentities: type: array items: $ref: '#/components/schemas/microsoft.graph.identitySet' description: >- For type permissions, the details of the users to whom permission was granted. Read-only. grantedToIdentitiesV2: type: array items: $ref: '#/components/schemas/microsoft.graph.sharePointIdentitySet' description: >- For link type permissions, the details of the users to whom permission was granted. Read-only. grantedToV2: anyOf: - $ref: '#/components/schemas/microsoft.graph.sharePointIdentitySet' - type: object nullable: true description: >- For user type permissions, the details of the users and applications for this permission. Read-only. hasPassword: type: boolean description: >- Indicates whether the password is set for this permission. This property only appears in the response. Optional. Read-only. For OneDrive Personal only.. nullable: true inheritedFrom: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemReference' - type: object nullable: true description: >- Provides a reference to the ancestor of the current permission, if it's inherited from an ancestor. Read-only. invitation: anyOf: - $ref: '#/components/schemas/microsoft.graph.sharingInvitation' - type: object nullable: true description: >- Details of any associated sharing invitation for this permission. Read-only. link: anyOf: - $ref: '#/components/schemas/microsoft.graph.sharingLink' - type: object nullable: true description: >- Provides the link details of the current permission, if it's a link type permission. Read-only. roles: type: array items: type: string nullable: true description: >- The type of permission, for example, read. See below for the full list of roles. Read-only. shareId: type: string description: >- A unique token that can be used to access this shared item via the shares API. Read-only. nullable: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.permission' microsoft.graph.listItemVersion: allOf: - $ref: '#/components/schemas/microsoft.graph.baseItemVersion' - title: listItemVersion required: - '@odata.type' type: object properties: fields: anyOf: - $ref: '#/components/schemas/microsoft.graph.fieldValueSet' - type: object nullable: true description: >- A collection of the fields and values for this version of the list item. x-ms-navigationProperty: true '@odata.type': type: string default: '#microsoft.graph.listItemVersion' discriminator: propertyName: '@odata.type' mapping: '#microsoft.graph.documentSetVersion': '#/components/schemas/microsoft.graph.documentSetVersion' microsoft.graph.richLongRunningOperation: allOf: - $ref: '#/components/schemas/microsoft.graph.longRunningOperation' - title: richLongRunningOperation required: - '@odata.type' type: object properties: error: anyOf: - $ref: '#/components/schemas/microsoft.graph.publicError' - type: object nullable: true description: Error that caused the operation to fail. percentageComplete: maximum: 2147483647 minimum: -2147483648 type: number description: >- A value between 0 and 100 that indicates the progress of the operation. format: int32 nullable: true resourceId: type: string description: The unique identifier for the result. nullable: true type: type: string description: The type of the operation. nullable: true '@odata.type': type: string description: The status of a long-running operation. x-ms-discriminator-value: '#microsoft.graph.richLongRunningOperation' microsoft.graph.subscription: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: subscription required: - '@odata.type' type: object properties: applicationId: type: string description: >- Optional. Identifier of the application used to create the subscription. Read-only. nullable: true changeType: type: string description: >- Required. Indicates the type of change in the subscribed resource that raises a change notification. The supported values are: created, updated, deleted. Multiple values can be combined using a comma-separated list. Note: Drive root item and list change notifications support only the updated changeType. User and group change notifications support updated and deleted changeType. Use updated to receive notifications when user or group is created, updated, or soft deleted. Use deleted to receive notifications when user or group is permanently deleted. clientState: type: string description: >- Optional. Specifies the value of the clientState property sent by the service in each change notification. The maximum length is 128 characters. The client can check that the change notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each change notification. nullable: true creatorId: type: string description: >- Optional. Identifier of the user or service principal that created the subscription. If the app used delegated permissions to create the subscription, this field contains the ID of the signed-in user the app called on behalf of. If the app used application permissions, this field contains the ID of the service principal corresponding to the app. Read-only. nullable: true encryptionCertificate: type: string description: >- Optional. A base64-encoded representation of a certificate with a public key used to encrypt resource data in change notifications. Optional but required when includeResourceData is true. nullable: true encryptionCertificateId: type: string description: >- Optional. A custom app-provided identifier to help identify the certificate needed to decrypt resource data. nullable: true expirationDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Required. Specifies the date and time when the webhook subscription expires. The time is in UTC, and can be an amount of time from subscription creation that varies for the resource subscribed to. Any value under 45 minutes after the time of the request is automatically set to 45 minutes after the request time. For the maximum supported subscription length of time, see Subscription lifetime. format: date-time includeResourceData: type: boolean description: >- Optional. When set to true, change notifications include resource data (such as content of a chat message). nullable: true latestSupportedTlsVersion: type: string description: >- Optional. Specifies the latest version of Transport Layer Security (TLS) that the notification endpoint, specified by notificationUrl, supports. The possible values are: v10, v11, v12, v13. For subscribers whose notification endpoint supports a version lower than the currently recommended version (TLS 1.2), specifying this property by a set timeline allows them to temporarily use their deprecated version of TLS before completing their upgrade to TLS 1.2. For these subscribers, not setting this property per the timeline would result in subscription operations failing. For subscribers whose notification endpoint already supports TLS 1.2, setting this property is optional. In such cases, Microsoft Graph defaults the property to v1_2. nullable: true lifecycleNotificationUrl: type: string description: >- Required for Teams resources if the expirationDateTime value is more than 1 hour from now; optional otherwise. The URL of the endpoint that receives lifecycle notifications, including subscriptionRemoved, reauthorizationRequired, and missed notifications. This URL must make use of the HTTPS protocol. For more information, see Reduce missing subscriptions and change notifications. nullable: true notificationQueryOptions: type: string description: >- Optional. OData query options for specifying value for the targeting resource. Clients receive notifications when resource reaches the state matching the query options provided here. With this new property in the subscription creation payload along with all existing properties, Webhooks deliver notifications whenever a resource reaches the desired state mentioned in the notificationQueryOptions property. For example, when the print job is completed or when a print job resource isFetchable property value becomes true etc. Supported only for Universal Print Service. For more information, see Subscribe to change notifications from cloud printing APIs using Microsoft Graph. nullable: true notificationUrl: type: string description: >- Required. The URL of the endpoint that receives the change notifications. This URL must make use of the HTTPS protocol. Any query string parameter included in the notificationUrl property is included in the HTTP POST request when Microsoft Graph sends the change notifications. notificationUrlAppId: type: string description: >- Optional. The app ID that the subscription service can use to generate the validation token. The value allows the client to validate the authenticity of the notification received. nullable: true resource: type: string description: >- Required. Specifies the resource that is monitored for changes. Don't include the base URL (https://graph.microsoft.com/v1.0/). See the possible resource path values for each supported resource. '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.subscription' microsoft.graph.baseSitePage: allOf: - $ref: '#/components/schemas/microsoft.graph.baseItem' - title: baseSitePage required: - '@odata.type' type: object properties: pageLayout: anyOf: - $ref: '#/components/schemas/microsoft.graph.pageLayoutType' - type: object nullable: true description: >- The name of the page layout of the page. The possible values are: microsoftReserved, article, home, unknownFutureValue. publishingState: anyOf: - $ref: '#/components/schemas/microsoft.graph.publicationFacet' - type: object nullable: true description: The publishing status and the MM.mm version of the page. title: type: string description: Title of the sitePage. nullable: true '@odata.type': type: string default: '#microsoft.graph.baseSitePage' discriminator: propertyName: '@odata.type' mapping: '#microsoft.graph.sitePage': '#/components/schemas/microsoft.graph.sitePage' microsoft.graph.termStore.store: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: store required: - '@odata.type' type: object properties: defaultLanguageTag: type: string description: Default language of the term store. languageTags: type: array items: type: string description: List of languages for the term store. groups: type: array items: $ref: '#/components/schemas/microsoft.graph.termStore.group' description: Collection of all groups available in the term store. x-ms-navigationProperty: true sets: type: array items: $ref: '#/components/schemas/microsoft.graph.termStore.set' description: >- Collection of all sets available in the term store. This relationship can only be used to load a specific term set. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.termStore.store' microsoft.graph.sitePage: allOf: - $ref: '#/components/schemas/microsoft.graph.baseSitePage' - title: sitePage required: - '@odata.type' type: object properties: promotionKind: anyOf: - $ref: '#/components/schemas/microsoft.graph.pagePromotionType' - type: object nullable: true description: >- Indicates the promotion kind of the sitePage. The possible values are: microsoftReserved, page, newsPost, unknownFutureValue. reactions: anyOf: - $ref: '#/components/schemas/microsoft.graph.reactionsFacet' - type: object nullable: true description: Reactions information for the page. showComments: type: boolean description: >- Determines whether or not to show comments at the bottom of the page. nullable: true showRecommendedPages: type: boolean description: >- Determines whether or not to show recommended pages at the bottom of the page. nullable: true thumbnailWebUrl: type: string description: Url of the sitePage's thumbnail image nullable: true titleArea: anyOf: - $ref: '#/components/schemas/microsoft.graph.titleArea' - type: object nullable: true description: Title area on the SharePoint page. canvasLayout: anyOf: - $ref: '#/components/schemas/microsoft.graph.canvasLayout' - type: object nullable: true description: >- Indicates the layout of the content in a given SharePoint page, including horizontal sections and vertical sections. x-ms-navigationProperty: true webParts: type: array items: $ref: '#/components/schemas/microsoft.graph.webPart' description: Collection of webparts on the SharePoint page. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.sitePage' microsoft.graph.canvasLayout: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: canvasLayout required: - '@odata.type' type: object properties: horizontalSections: type: array items: $ref: '#/components/schemas/microsoft.graph.horizontalSection' description: Collection of horizontal sections on the SharePoint page. x-ms-navigationProperty: true verticalSection: anyOf: - $ref: '#/components/schemas/microsoft.graph.verticalSection' - type: object nullable: true description: Vertical section on the SharePoint page. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.canvasLayout' microsoft.graph.horizontalSection: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: horizontalSection required: - '@odata.type' type: object properties: emphasis: anyOf: - $ref: '#/components/schemas/microsoft.graph.sectionEmphasisType' - type: object nullable: true description: >- Enumeration value that indicates the emphasis of the section background. The possible values are: none, netural, soft, strong, unknownFutureValue. layout: anyOf: - $ref: >- #/components/schemas/microsoft.graph.horizontalSectionLayoutType - type: object nullable: true description: >- Layout type of the section. The possible values are: none, oneColumn, twoColumns, threeColumns, oneThirdLeftColumn, oneThirdRightColumn, fullWidth, unknownFutureValue. columns: type: array items: $ref: '#/components/schemas/microsoft.graph.horizontalSectionColumn' description: The set of vertical columns in this section. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.horizontalSection' microsoft.graph.horizontalSectionColumn: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: horizontalSectionColumn required: - '@odata.type' type: object properties: width: maximum: 2147483647 minimum: -2147483648 type: number description: >- Width of the column. A horizontal section is divided into 12 grids. A column should have a value of 1-12 to represent its range spans. For example, there can be two columns both have a width of 6 in a section. format: int32 nullable: true webparts: type: array items: $ref: '#/components/schemas/microsoft.graph.webPart' description: The collection of WebParts in this column. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.horizontalSectionColumn' microsoft.graph.webPart: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: webPart required: - '@odata.type' type: object properties: '@odata.type': type: string discriminator: propertyName: '@odata.type' mapping: '#microsoft.graph.standardWebPart': '#/components/schemas/microsoft.graph.standardWebPart' '#microsoft.graph.textWebPart': '#/components/schemas/microsoft.graph.textWebPart' microsoft.graph.webPartPosition: title: webPartPosition required: - '@odata.type' type: object properties: columnId: oneOf: - type: number format: double nullable: true - type: string nullable: true - $ref: '#/components/schemas/ReferenceNumeric' description: >- Indicates the identifier of the column where the web part is located. horizontalSectionId: oneOf: - type: number format: double nullable: true - type: string nullable: true - $ref: '#/components/schemas/ReferenceNumeric' description: Indicates the horizontal section where the web part is located. isInVerticalSection: type: boolean description: Indicates whether the web part is located in the vertical section. nullable: true webPartIndex: oneOf: - type: number format: double nullable: true - type: string nullable: true - $ref: '#/components/schemas/ReferenceNumeric' description: >- Index of the current web part. Represents the order of the web part in this column or section. '@odata.type': type: string microsoft.graph.verticalSection: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: verticalSection required: - '@odata.type' type: object properties: emphasis: anyOf: - $ref: '#/components/schemas/microsoft.graph.sectionEmphasisType' - type: object nullable: true description: >- Enumeration value that indicates the emphasis of the section background. The possible values are: none, netural, soft, strong, unknownFutureValue. webparts: type: array items: $ref: '#/components/schemas/microsoft.graph.webPart' description: The set of web parts in this section. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.verticalSection' microsoft.graph.termStore.group: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: group required: - '@odata.type' type: object properties: createdDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: Date and time of the group creation. Read-only. format: date-time nullable: true description: type: string description: Description that gives details on the term usage. nullable: true displayName: type: string description: Name of the group. nullable: true parentSiteId: type: string description: ID of the parent site of this group. nullable: true scope: anyOf: - $ref: >- #/components/schemas/microsoft.graph.termStore.termGroupScope - type: object nullable: true description: >- Returns the type of the group. The possible values are: global, system, and siteCollection. sets: type: array items: $ref: '#/components/schemas/microsoft.graph.termStore.set' description: All sets under the group in a term [store]. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.termStore.group' microsoft.graph.termStore.set: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: set required: - '@odata.type' type: object properties: createdDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: Date and time of set creation. Read-only. format: date-time nullable: true description: type: string description: Description that gives details on the term usage. nullable: true localizedNames: type: array items: $ref: '#/components/schemas/microsoft.graph.termStore.localizedName' description: Name of the set for each languageTag. properties: type: array items: $ref: '#/components/schemas/microsoft.graph.keyValue' description: Custom properties for the set. children: type: array items: $ref: '#/components/schemas/microsoft.graph.termStore.term' description: Children terms of set in term [store]. x-ms-navigationProperty: true parentGroup: $ref: '#/components/schemas/microsoft.graph.termStore.group' relations: type: array items: $ref: '#/components/schemas/microsoft.graph.termStore.relation' description: >- Indicates which terms have been pinned or reused directly under the set. x-ms-navigationProperty: true terms: type: array items: $ref: '#/components/schemas/microsoft.graph.termStore.term' description: All the terms under the set. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.termStore.set' microsoft.graph.termStore.term: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: term required: - '@odata.type' type: object properties: createdDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: Date and time of term creation. Read-only. format: date-time nullable: true descriptions: type: array items: $ref: >- #/components/schemas/microsoft.graph.termStore.localizedDescription description: Description about term that is dependent on the languageTag. labels: type: array items: $ref: '#/components/schemas/microsoft.graph.termStore.localizedLabel' description: Label metadata for a term. lastModifiedDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: Last date and time of term modification. Read-only. format: date-time nullable: true properties: type: array items: $ref: '#/components/schemas/microsoft.graph.keyValue' description: Collection of properties on the term. children: type: array items: $ref: '#/components/schemas/microsoft.graph.termStore.term' description: Children of current term. x-ms-navigationProperty: true relations: type: array items: $ref: '#/components/schemas/microsoft.graph.termStore.relation' description: >- To indicate which terms are related to the current term as either pinned or reused. x-ms-navigationProperty: true set: anyOf: - $ref: '#/components/schemas/microsoft.graph.termStore.set' - type: object nullable: true description: The [set] in which the term is created. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.termStore.term' microsoft.graph.termStore.relation: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: relation required: - '@odata.type' type: object properties: relationship: anyOf: - $ref: '#/components/schemas/microsoft.graph.termStore.relationType' - type: object nullable: true description: 'The type of relation. The possible values are: pin, reuse.' fromTerm: anyOf: - $ref: '#/components/schemas/microsoft.graph.termStore.term' - type: object nullable: true description: >- The from [term] of the relation. The term from which the relationship is defined. A null value would indicate the relation is directly with the [set]. x-ms-navigationProperty: true set: anyOf: - $ref: '#/components/schemas/microsoft.graph.termStore.set' - type: object nullable: true description: The [set] in which the relation is relevant. x-ms-navigationProperty: true toTerm: anyOf: - $ref: '#/components/schemas/microsoft.graph.termStore.term' - type: object nullable: true description: >- The to [term] of the relation. The term to which the relationship is defined. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.termStore.relation' microsoft.graph.team: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: team required: - '@odata.type' type: object properties: classification: type: string description: >- An optional label. Typically describes the data or business sensitivity of the team. Must match one of a preconfigured set in the tenant's directory. nullable: true createdDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: Timestamp at which the team was created. format: date-time nullable: true description: type: string description: >- An optional description for the team. Maximum length: 1,024 characters. nullable: true displayName: type: string description: The name of the team. nullable: true firstChannelName: type: string description: >- The name of the first channel in the team. This is an optional property, only used during team creation and isn't returned in methods to get and list teams. nullable: true funSettings: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamFunSettings' - type: object nullable: true description: >- Settings to configure use of Giphy, memes, and stickers in the team. guestSettings: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamGuestSettings' - type: object nullable: true description: >- Settings to configure whether guests can create, update, or delete channels in the team. internalId: type: string description: >- A unique ID for the team that was used in a few places such as the audit log/Office 365 Management Activity API. nullable: true isArchived: type: boolean description: Whether this team is in read-only mode. nullable: true memberSettings: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamMemberSettings' - type: object nullable: true description: >- Settings to configure whether members can perform certain actions, for example, create channels and add bots, in the team. messagingSettings: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamMessagingSettings' - type: object nullable: true description: Settings to configure messaging and mentions in the team. specialization: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamSpecialization' - type: object nullable: true description: >- Optional. Indicates whether the team is intended for a particular use case. Each team specialization has access to unique behaviors and experiences targeted to its use case. summary: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamSummary' - type: object nullable: true description: >- Contains summary information about the team, including number of owners, members, and guests. tenantId: type: string description: The ID of the Microsoft Entra tenant. nullable: true visibility: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamVisibilityType' - type: object nullable: true description: The visibility of the group and team. Defaults to Public. webUrl: type: string description: >- A hyperlink that goes to the team in the Microsoft Teams client. You get this URL when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed. nullable: true allChannels: type: array items: $ref: '#/components/schemas/microsoft.graph.channel' description: >- List of channels either hosted in or shared with the team (incoming channels). x-ms-navigationProperty: true channels: type: array items: $ref: '#/components/schemas/microsoft.graph.channel' description: >- The collection of channels and messages associated with the team. x-ms-navigationProperty: true group: anyOf: - $ref: '#/components/schemas/microsoft.graph.group' - type: object nullable: true x-ms-navigationProperty: true incomingChannels: type: array items: $ref: '#/components/schemas/microsoft.graph.channel' description: List of channels shared with the team. x-ms-navigationProperty: true installedApps: type: array items: $ref: '#/components/schemas/microsoft.graph.teamsAppInstallation' description: The apps installed in this team. x-ms-navigationProperty: true members: type: array items: $ref: '#/components/schemas/microsoft.graph.conversationMember' description: Members and owners of the team. x-ms-navigationProperty: true operations: type: array items: $ref: '#/components/schemas/microsoft.graph.teamsAsyncOperation' description: The async operations that ran or are running on this team. x-ms-navigationProperty: true permissionGrants: type: array items: $ref: >- #/components/schemas/microsoft.graph.resourceSpecificPermissionGrant description: A collection of permissions granted to apps to access the team. x-ms-navigationProperty: true photo: anyOf: - $ref: '#/components/schemas/microsoft.graph.profilePhoto' - type: object nullable: true description: The profile photo for the team. x-ms-navigationProperty: true primaryChannel: anyOf: - $ref: '#/components/schemas/microsoft.graph.channel' - type: object nullable: true description: The general channel for the team. x-ms-navigationProperty: true schedule: anyOf: - $ref: '#/components/schemas/microsoft.graph.schedule' - type: object nullable: true description: The schedule of shifts for this team. x-ms-navigationProperty: true tags: type: array items: $ref: '#/components/schemas/microsoft.graph.teamworkTag' description: The tags associated with the team. x-ms-navigationProperty: true template: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamsTemplate' - type: object nullable: true description: >- The template this team was created from. See available templates. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.team' microsoft.graph.channel: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: channel required: - '@odata.type' type: object properties: createdDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: Read only. Timestamp at which the channel was created. format: date-time nullable: true description: type: string description: Optional textual description for the channel. nullable: true displayName: type: string description: >- Channel name as it will appear to the user in Microsoft Teams. The maximum length is 50 characters. email: type: string description: >- The email address for sending messages to the channel. Read-only. nullable: true isArchived: type: boolean description: Indicates whether the channel is archived. Read-only. nullable: true isFavoriteByDefault: type: boolean description: >- Indicates whether the channel should be marked as recommended for all members of the team to show in their channel list. Note: All recommended channels automatically show in the channels list for education and frontline worker users. The property can only be set programmatically via the Create team method. The default value is false. nullable: true membershipType: anyOf: - $ref: '#/components/schemas/microsoft.graph.channelMembershipType' - type: object nullable: true description: >- The type of the channel. Can be set during creation and can't be changed. The possible values are: standard, private, unknownFutureValue, shared. The default value is standard. Use the Prefer: include-unknown-enum-members request header to get the following members in this evolvable enum: shared. summary: anyOf: - $ref: '#/components/schemas/microsoft.graph.channelSummary' - type: object nullable: true description: >- Contains summary information about the channel, including number of owners, members, guests, and an indicator for members from other tenants. The summary property will only be returned if it is specified in the $select clause of the Get channel method. tenantId: type: string description: The ID of the Microsoft Entra tenant. nullable: true webUrl: type: string description: >- A hyperlink that will go to the channel in Microsoft Teams. This is the URL that you get when you right-click a channel in Microsoft Teams and select Get link to channel. This URL should be treated as an opaque blob, and not parsed. Read-only. nullable: true allMembers: type: array items: $ref: '#/components/schemas/microsoft.graph.conversationMember' description: >- A collection of membership records associated with the channel, including both direct and indirect members of shared channels. x-ms-navigationProperty: true filesFolder: anyOf: - $ref: '#/components/schemas/microsoft.graph.driveItem' - type: object nullable: true description: Metadata for the location where the channel's files are stored. x-ms-navigationProperty: true members: type: array items: $ref: '#/components/schemas/microsoft.graph.conversationMember' description: A collection of membership records associated with the channel. x-ms-navigationProperty: true messages: type: array items: $ref: '#/components/schemas/microsoft.graph.chatMessage' description: >- A collection of all the messages in the channel. A navigation property. Nullable. x-ms-navigationProperty: true sharedWithTeams: type: array items: $ref: '#/components/schemas/microsoft.graph.sharedWithChannelTeamInfo' description: A collection of teams with which a channel is shared. x-ms-navigationProperty: true tabs: type: array items: $ref: '#/components/schemas/microsoft.graph.teamsTab' description: >- A collection of all the tabs in the channel. A navigation property. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.channel' microsoft.graph.conversationMember: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: conversationMember required: - '@odata.type' type: object properties: displayName: type: string description: The display name of the user. nullable: true roles: type: array items: type: string nullable: true description: >- The roles for that user. This property contains more qualifiers only when relevant - for example, if the member has owner privileges, the roles property contains owner as one of the values. Similarly, if the member is an in-tenant guest, the roles property contains guest as one of the values. A basic member shouldn't have any values specified in the roles property. An Out-of-tenant external member is assigned the owner role. visibleHistoryStartDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The timestamp denoting how far back a conversation's history is shared with the conversation member. This property is settable only for members of a chat. format: date-time nullable: true '@odata.type': type: string discriminator: propertyName: '@odata.type' mapping: '#microsoft.graph.aadUserConversationMember': '#/components/schemas/microsoft.graph.aadUserConversationMember' '#microsoft.graph.anonymousGuestConversationMember': >- #/components/schemas/microsoft.graph.anonymousGuestConversationMember '#microsoft.graph.azureCommunicationServicesUserConversationMember': >- #/components/schemas/microsoft.graph.azureCommunicationServicesUserConversationMember '#microsoft.graph.microsoftAccountUserConversationMember': >- #/components/schemas/microsoft.graph.microsoftAccountUserConversationMember '#microsoft.graph.phoneUserConversationMember': '#/components/schemas/microsoft.graph.phoneUserConversationMember' '#microsoft.graph.skypeForBusinessUserConversationMember': >- #/components/schemas/microsoft.graph.skypeForBusinessUserConversationMember '#microsoft.graph.skypeUserConversationMember': '#/components/schemas/microsoft.graph.skypeUserConversationMember' microsoft.graph.chatMessage: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: chatMessage required: - '@odata.type' type: object properties: attachments: type: array items: $ref: '#/components/schemas/microsoft.graph.chatMessageAttachment' description: References to attached objects like files, tabs, meetings etc. body: $ref: '#/components/schemas/microsoft.graph.itemBody' channelIdentity: anyOf: - $ref: '#/components/schemas/microsoft.graph.channelIdentity' - type: object nullable: true description: >- If the message was sent in a channel, represents identity of the channel. chatId: type: string description: >- If the message was sent in a chat, represents the identity of the chat. nullable: true createdDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: Timestamp of when the chat message was created. format: date-time nullable: true deletedDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Read only. Timestamp at which the chat message was deleted, or null if not deleted. format: date-time nullable: true etag: type: string description: Read-only. Version number of the chat message. nullable: true eventDetail: anyOf: - $ref: '#/components/schemas/microsoft.graph.eventMessageDetail' - type: object nullable: true description: >- Read-only. If present, represents details of an event that happened in a chat, a channel, or a team, for example, adding new members. For event messages, the messageType property will be set to systemEventMessage. from: anyOf: - $ref: >- #/components/schemas/microsoft.graph.chatMessageFromIdentitySet - type: object nullable: true description: >- Details of the sender of the chat message. Can only be set during migration. importance: $ref: '#/components/schemas/microsoft.graph.chatMessageImportance' lastEditedDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Read only. Timestamp when edits to the chat message were made. Triggers an 'Edited' flag in the Teams UI. If no edits are made the value is null. format: date-time nullable: true lastModifiedDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- Read only. Timestamp when the chat message is created (initial setting) or modified, including when a reaction is added or removed. format: date-time nullable: true locale: type: string description: >- Locale of the chat message set by the client. Always set to en-us. mentions: type: array items: $ref: '#/components/schemas/microsoft.graph.chatMessageMention' description: >- List of entities mentioned in the chat message. Supported entities are: user, bot, team, channel, chat, and tag. messageHistory: type: array items: $ref: '#/components/schemas/microsoft.graph.chatMessageHistoryItem' description: >- List of activity history of a message item, including modification time and actions, such as reactionAdded, reactionRemoved, or reaction changes, on the message. messageType: $ref: '#/components/schemas/microsoft.graph.chatMessageType' policyViolation: anyOf: - $ref: >- #/components/schemas/microsoft.graph.chatMessagePolicyViolation - type: object nullable: true description: >- Defines the properties of a policy violation set by a data loss prevention (DLP) application. reactions: type: array items: $ref: '#/components/schemas/microsoft.graph.chatMessageReaction' description: Reactions for this chat message (for example, Like). replyToId: type: string description: >- Read-only. ID of the parent chat message or root chat message of the thread. (Only applies to chat messages in channels, not chats.) nullable: true subject: type: string description: The subject of the chat message, in plaintext. nullable: true summary: type: string description: >- Summary text of the chat message that could be used for push notifications and summary views or fall back views. Only applies to channel chat messages, not chat messages in a chat. nullable: true webUrl: type: string description: Read-only. Link to the message in Microsoft Teams. nullable: true hostedContents: type: array items: $ref: '#/components/schemas/microsoft.graph.chatMessageHostedContent' description: >- Content in a message hosted by Microsoft Teams - for example, images or code snippets. x-ms-navigationProperty: true replies: type: array items: $ref: '#/components/schemas/microsoft.graph.chatMessage' description: >- Replies for a specified message. Supports $expand for channel messages. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.chatMessage' microsoft.graph.chatMessageHostedContent: allOf: - $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' - title: chatMessageHostedContent required: - '@odata.type' type: object properties: '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.chatMessageHostedContent' microsoft.graph.sharedWithChannelTeamInfo: allOf: - $ref: '#/components/schemas/microsoft.graph.teamInfo' - title: sharedWithChannelTeamInfo required: - '@odata.type' type: object properties: isHostTeam: type: boolean description: Indicates whether the team is the host of the channel. nullable: true allowedMembers: type: array items: $ref: '#/components/schemas/microsoft.graph.conversationMember' description: >- A collection of team members who have access to the shared channel. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.sharedWithChannelTeamInfo' microsoft.graph.teamsTab: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: teamsTab required: - '@odata.type' type: object properties: configuration: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamsTabConfiguration' - type: object nullable: true description: >- Container for custom settings applied to a tab. The tab is considered configured only once this property is set. displayName: type: string description: Name of the tab. nullable: true webUrl: type: string description: Deep link URL of the tab instance. Read-only. nullable: true teamsApp: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamsApp' - type: object nullable: true description: >- The application that is linked to the tab. This can't be changed after tab creation. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.teamsTab' microsoft.graph.teamsApp: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: teamsApp required: - '@odata.type' type: object properties: displayName: type: string description: >- The name of the catalog app provided by the app developer in the Microsoft Teams zip app package. nullable: true distributionMethod: anyOf: - $ref: >- #/components/schemas/microsoft.graph.teamsAppDistributionMethod - type: object nullable: true description: The method of distribution for the app. Read-only. externalId: type: string description: >- The ID of the catalog provided by the app developer in the Microsoft Teams zip app package. nullable: true appDefinitions: type: array items: $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition' description: The details for each version of the app. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.teamsApp' microsoft.graph.teamsAppInstallation: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: teamsAppInstallation required: - '@odata.type' type: object properties: consentedPermissionSet: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamsAppPermissionSet' - type: object nullable: true description: >- The set of resource-specific permissions consented to while installing or upgrading the teamsApp. teamsApp: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamsApp' - type: object nullable: true description: The app that is installed. x-ms-navigationProperty: true teamsAppDefinition: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition' - type: object nullable: true description: The details of this version of the app. x-ms-navigationProperty: true '@odata.type': type: string discriminator: propertyName: '@odata.type' mapping: '#microsoft.graph.userScopeTeamsAppInstallation': >- #/components/schemas/microsoft.graph.userScopeTeamsAppInstallation microsoft.graph.teamsAppDefinition: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: teamsAppDefinition required: - '@odata.type' type: object properties: authorization: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamsAppAuthorization' - type: object nullable: true description: Authorization requirements specified in the Teams app manifest. createdBy: anyOf: - $ref: '#/components/schemas/microsoft.graph.identitySet' - type: object nullable: true description: type: string description: Verbose description of the application. nullable: true displayName: type: string description: The name of the app provided by the app developer. nullable: true lastModifiedDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string format: date-time nullable: true publishingState: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamsAppPublishingState' - type: object nullable: true description: >- The published status of a specific version of a Teams app. The possible values are:submitted—The specific version of the Teams app was submitted and is under review.published—The request to publish the specific version of the Teams app was approved by the admin and the app is published.rejected—The admin rejected the request to publish the specific version of the Teams app. shortDescription: type: string description: Short description of the application. nullable: true teamsAppId: type: string description: The ID from the Teams app manifest. nullable: true version: type: string description: The version number of the application. nullable: true bot: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamworkBot' - type: object nullable: true description: The details of the bot specified in the Teams app manifest. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.teamsAppDefinition' microsoft.graph.teamVisibilityType: title: teamVisibilityType enum: - private - public - hiddenMembership - unknownFutureValue type: string microsoft.graph.clonableTeamParts: title: clonableTeamParts enum: - apps - tabs - settings - channels - members type: string x-ms-enum-flags: isFlags: true microsoft.graph.itemBody: title: itemBody required: - '@odata.type' type: object properties: content: type: string description: The content of the item. nullable: true contentType: anyOf: - $ref: '#/components/schemas/microsoft.graph.bodyType' - type: object nullable: true description: The type of the content. Possible values are text and html. '@odata.type': type: string microsoft.graph.keyValuePair: title: keyValuePair required: - '@odata.type' type: object properties: name: type: string description: Name for this key-value pair value: type: string description: Value for this key-value pair nullable: true '@odata.type': type: string microsoft.graph.teamsAsyncOperation: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: teamsAsyncOperation required: - '@odata.type' type: object properties: attemptsCount: maximum: 2147483647 minimum: -2147483648 type: number description: >- Number of times the operation was attempted before being marked successful or failed. format: int32 createdDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: Time when the operation was created. format: date-time error: anyOf: - $ref: '#/components/schemas/microsoft.graph.operationError' - type: object nullable: true description: Any error that causes the async operation to fail. lastActionDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: Time when the async operation was last updated. format: date-time operationType: $ref: '#/components/schemas/microsoft.graph.teamsAsyncOperationType' status: $ref: '#/components/schemas/microsoft.graph.teamsAsyncOperationStatus' targetResourceId: type: string description: >- The ID of the object that's created or modified as result of this async operation, typically a team. nullable: true targetResourceLocation: type: string description: >- The location of the object that's created or modified as result of this async operation. This URL should be treated as an opaque value and not parsed into its component paths. nullable: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.teamsAsyncOperation' microsoft.graph.schedule: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: schedule required: - '@odata.type' type: object properties: enabled: type: boolean description: >- Indicates whether the schedule is enabled for the team. Required. nullable: true isActivitiesIncludedWhenCopyingShiftsEnabled: type: boolean description: >- Indicates whether copied shifts include activities from the original shift. nullable: true offerShiftRequestsEnabled: type: boolean description: >- Indicates whether offer shift requests are enabled for the schedule. nullable: true openShiftsEnabled: type: boolean description: Indicates whether open shifts are enabled for the schedule. nullable: true provisionStatus: anyOf: - $ref: '#/components/schemas/microsoft.graph.operationStatus' - type: object nullable: true description: >- The status of the schedule provisioning. The possible values are notStarted, running, completed, failed. readOnly: true provisionStatusCode: type: string description: Additional information about why schedule provisioning failed. nullable: true readOnly: true startDayOfWeek: anyOf: - $ref: '#/components/schemas/microsoft.graph.dayOfWeek' - type: object nullable: true description: >- Indicates the start day of the week. The possible values are: sunday, monday, tuesday, wednesday, thursday, friday, saturday. swapShiftsRequestsEnabled: type: boolean description: >- Indicates whether swap shifts requests are enabled for the schedule. nullable: true timeClockEnabled: type: boolean description: Indicates whether time clock is enabled for the schedule. nullable: true timeClockSettings: anyOf: - $ref: '#/components/schemas/microsoft.graph.timeClockSettings' - type: object nullable: true description: The time clock location settings for this schedule. timeOffRequestsEnabled: type: boolean description: >- Indicates whether time off requests are enabled for the schedule. nullable: true timeZone: type: string description: >- Indicates the time zone of the schedule team using tz database format. Required. nullable: true workforceIntegrationIds: type: array items: type: string nullable: true description: >- The IDs for the workforce integrations associated with this schedule. dayNotes: type: array items: $ref: '#/components/schemas/microsoft.graph.dayNote' description: The day notes in the schedule. x-ms-navigationProperty: true offerShiftRequests: type: array items: $ref: '#/components/schemas/microsoft.graph.offerShiftRequest' description: The offer requests for shifts in the schedule. x-ms-navigationProperty: true openShiftChangeRequests: type: array items: $ref: '#/components/schemas/microsoft.graph.openShiftChangeRequest' description: The open shift requests in the schedule. x-ms-navigationProperty: true openShifts: type: array items: $ref: '#/components/schemas/microsoft.graph.openShift' description: The set of open shifts in a scheduling group in the schedule. x-ms-navigationProperty: true schedulingGroups: type: array items: $ref: '#/components/schemas/microsoft.graph.schedulingGroup' description: The logical grouping of users in the schedule (usually by role). x-ms-navigationProperty: true shifts: type: array items: $ref: '#/components/schemas/microsoft.graph.shift' description: The shifts in the schedule. x-ms-navigationProperty: true swapShiftsChangeRequests: type: array items: $ref: '#/components/schemas/microsoft.graph.swapShiftsChangeRequest' description: The swap requests for shifts in the schedule. x-ms-navigationProperty: true timeCards: type: array items: $ref: '#/components/schemas/microsoft.graph.timeCard' description: The time cards in the schedule. x-ms-navigationProperty: true timeOffReasons: type: array items: $ref: '#/components/schemas/microsoft.graph.timeOffReason' description: The set of reasons for a time off in the schedule. x-ms-navigationProperty: true timeOffRequests: type: array items: $ref: '#/components/schemas/microsoft.graph.timeOffRequest' description: The time off requests in the schedule. x-ms-navigationProperty: true timesOff: type: array items: $ref: '#/components/schemas/microsoft.graph.timeOff' description: The instances of times off in the schedule. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.schedule' microsoft.graph.dayNote: allOf: - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity' - title: dayNote required: - '@odata.type' type: object properties: dayNoteDate: pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$ type: string description: The date of the day note. format: date nullable: true draftDayNote: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemBody' - type: object nullable: true description: >- The draft version of this day note that is viewable by managers. Only contentType text is supported. sharedDayNote: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemBody' - type: object nullable: true description: >- The shared version of this day note that is viewable by both employees and managers. Only contentType text is supported. '@odata.type': type: string default: '#microsoft.graph.dayNote' x-ms-discriminator-value: '#microsoft.graph.dayNote' microsoft.graph.offerShiftRequest: allOf: - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest' - title: offerShiftRequest required: - '@odata.type' type: object properties: recipientActionDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The date and time when the recipient approved or declined the request. format: date-time nullable: true readOnly: true recipientActionMessage: type: string description: The message sent by the recipient regarding the request. nullable: true recipientUserId: type: string description: The recipient's user ID. nullable: true senderShiftId: type: string description: The sender's shift ID. nullable: true '@odata.type': type: string default: '#microsoft.graph.offerShiftRequest' discriminator: propertyName: '@odata.type' mapping: '#microsoft.graph.swapShiftsChangeRequest': '#/components/schemas/microsoft.graph.swapShiftsChangeRequest' microsoft.graph.openShiftChangeRequest: allOf: - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest' - title: openShiftChangeRequest required: - '@odata.type' type: object properties: openShiftId: type: string description: ID for the open shift. nullable: true '@odata.type': type: string default: '#microsoft.graph.openShiftChangeRequest' x-ms-discriminator-value: '#microsoft.graph.openShiftChangeRequest' microsoft.graph.openShift: allOf: - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity' - title: openShift required: - '@odata.type' type: object properties: draftOpenShift: anyOf: - $ref: '#/components/schemas/microsoft.graph.openShiftItem' - type: object nullable: true description: >- Draft changes in the openShift are only visible to managers until they're shared. isStagedForDeletion: type: boolean description: >- The openShift is marked for deletion, a process that is finalized when the schedule is shared. nullable: true schedulingGroupId: type: string description: The ID of the schedulingGroup that contains the openShift. nullable: true sharedOpenShift: anyOf: - $ref: '#/components/schemas/microsoft.graph.openShiftItem' - type: object nullable: true description: >- The shared version of this openShift that is viewable by both employees and managers. '@odata.type': type: string default: '#microsoft.graph.openShift' x-ms-discriminator-value: '#microsoft.graph.openShift' microsoft.graph.schedulingGroup: allOf: - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity' - title: schedulingGroup required: - '@odata.type' type: object properties: code: type: string description: >- The code for the schedulingGroup to represent an external identifier. This field must be unique within the team in Microsoft Teams and uses an alphanumeric format, with a maximum of 100 characters. nullable: true displayName: type: string description: The display name for the schedulingGroup. Required. nullable: true isActive: type: boolean description: >- Indicates whether the schedulingGroup can be used when creating new entities or updating existing ones. Required. nullable: true readOnly: true userIds: type: array items: type: string nullable: true description: >- The list of user IDs that are a member of the schedulingGroup. Required. '@odata.type': type: string default: '#microsoft.graph.schedulingGroup' x-ms-discriminator-value: '#microsoft.graph.schedulingGroup' microsoft.graph.shift: allOf: - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity' - title: shift required: - '@odata.type' type: object properties: draftShift: anyOf: - $ref: '#/components/schemas/microsoft.graph.shiftItem' - type: object nullable: true description: >- Draft changes in the shift. Draft changes are only visible to managers. The changes are visible to employees when they're shared, which copies the changes from the draftShift to the sharedShift property. isStagedForDeletion: type: boolean description: >- The shift is marked for deletion, a process that is finalized when the schedule is shared. nullable: true schedulingGroupId: type: string description: ID of the scheduling group the shift is part of. Required. nullable: true sharedShift: anyOf: - $ref: '#/components/schemas/microsoft.graph.shiftItem' - type: object nullable: true description: >- The shared version of this shift that is viewable by both employees and managers. Updates to the sharedShift property send notifications to users in the Teams client. userId: type: string description: ID of the user assigned to the shift. Required. nullable: true '@odata.type': type: string default: '#microsoft.graph.shift' x-ms-discriminator-value: '#microsoft.graph.shift' microsoft.graph.swapShiftsChangeRequest: allOf: - $ref: '#/components/schemas/microsoft.graph.offerShiftRequest' - title: swapShiftsChangeRequest required: - '@odata.type' type: object properties: recipientShiftId: type: string description: The recipient's Shift ID nullable: true '@odata.type': type: string default: '#microsoft.graph.swapShiftsChangeRequest' x-ms-discriminator-value: '#microsoft.graph.swapShiftsChangeRequest' microsoft.graph.timeCard: allOf: - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity' - title: timeCard required: - '@odata.type' type: object properties: breaks: type: array items: $ref: '#/components/schemas/microsoft.graph.timeCardBreak' description: The list of breaks associated with the timeCard. clockInEvent: anyOf: - $ref: '#/components/schemas/microsoft.graph.timeCardEvent' - type: object nullable: true description: The clock-in event of the timeCard. clockOutEvent: anyOf: - $ref: '#/components/schemas/microsoft.graph.timeCardEvent' - type: object nullable: true description: The clock-out event of the timeCard. confirmedBy: anyOf: - $ref: '#/components/schemas/microsoft.graph.confirmedBy' - type: object nullable: true description: >- Indicates whether this timeCard entry is confirmed. The possible values are: none, user, manager, unknownFutureValue. notes: anyOf: - $ref: '#/components/schemas/microsoft.graph.itemBody' - type: object nullable: true description: Notes about the timeCard. originalEntry: anyOf: - $ref: '#/components/schemas/microsoft.graph.timeCardEntry' - type: object nullable: true description: The original timeCardEntry of the timeCard before it was edited. state: anyOf: - $ref: '#/components/schemas/microsoft.graph.timeCardState' - type: object nullable: true description: >- The current state of the timeCard during its life cycle. The possible values are: clockedIn, onBreak, clockedOut, unknownFutureValue. userId: type: string description: User ID to which the timeCard belongs. nullable: true '@odata.type': type: string default: '#microsoft.graph.timeCard' x-ms-discriminator-value: '#microsoft.graph.timeCard' microsoft.graph.timeOffReason: allOf: - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity' - title: timeOffReason required: - '@odata.type' type: object properties: code: type: string description: >- The code of the timeOffReason to represent an external identifier. This field must be unique within the team in Microsoft Teams and uses an alphanumeric format, with a maximum of 100 characters. nullable: true displayName: type: string description: The name of the timeOffReason. Required. nullable: true iconType: anyOf: - $ref: '#/components/schemas/microsoft.graph.timeOffReasonIconType' - type: object nullable: true description: >- Supported icon types are: none, car, calendar, running, plane, firstAid, doctor, notWorking, clock, juryDuty, globe, cup, phone, weather, umbrella, piggyBank, dog, cake, trafficCone, pin, sunny. Required. isActive: type: boolean description: >- Indicates whether the timeOffReason can be used when creating new entities or updating existing ones. Required. nullable: true '@odata.type': type: string default: '#microsoft.graph.timeOffReason' x-ms-discriminator-value: '#microsoft.graph.timeOffReason' microsoft.graph.timeOffRequest: allOf: - $ref: '#/components/schemas/microsoft.graph.scheduleChangeRequest' - title: timeOffRequest required: - '@odata.type' type: object properties: endDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The date and time the time off ends in ISO 8601 format and in UTC time. format: date-time nullable: true startDateTime: pattern: >- ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$ type: string description: >- The date and time the time off starts in ISO 8601 format and in UTC time. format: date-time nullable: true timeOffReasonId: type: string description: The reason for the time off. nullable: true '@odata.type': type: string default: '#microsoft.graph.timeOffRequest' x-ms-discriminator-value: '#microsoft.graph.timeOffRequest' microsoft.graph.timeOff: allOf: - $ref: '#/components/schemas/microsoft.graph.changeTrackedEntity' - title: timeOff required: - '@odata.type' type: object properties: draftTimeOff: anyOf: - $ref: '#/components/schemas/microsoft.graph.timeOffItem' - type: object nullable: true description: >- The draft version of this timeOff item that is viewable by managers. It must be shared before it's visible to team members. Required. isStagedForDeletion: type: boolean description: >- The timeOff is marked for deletion, a process that is finalized when the schedule is shared. nullable: true sharedTimeOff: anyOf: - $ref: '#/components/schemas/microsoft.graph.timeOffItem' - type: object nullable: true description: >- The shared version of this timeOff that is viewable by both employees and managers. Updates to the sharedTimeOff property send notifications to users in the Teams client. Required. userId: type: string description: ID of the user assigned to the timeOff. Required. nullable: true '@odata.type': type: string default: '#microsoft.graph.timeOff' x-ms-discriminator-value: '#microsoft.graph.timeOff' microsoft.graph.teamworkTag: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: teamworkTag required: - '@odata.type' type: object properties: description: type: string description: >- The description of the tag as it appears to the user in Microsoft Teams. A teamworkTag can't have more than 200 teamworkTagMembers. nullable: true displayName: type: string description: >- The name of the tag as it appears to the user in Microsoft Teams. nullable: true memberCount: maximum: 2147483647 minimum: -2147483648 type: number description: The number of users assigned to the tag. format: int32 nullable: true tagType: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamworkTagType' - type: object nullable: true description: The type of the tag. Default is standard. teamId: type: string description: ID of the team in which the tag is defined. nullable: true members: type: array items: $ref: '#/components/schemas/microsoft.graph.teamworkTagMember' description: Users assigned to the tag. x-ms-navigationProperty: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.teamworkTag' microsoft.graph.teamworkTagMember: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: teamworkTagMember required: - '@odata.type' type: object properties: displayName: type: string description: The member's display name. nullable: true tenantId: type: string description: The ID of the tenant that the tag member is a part of. nullable: true userId: type: string description: The user ID of the member. nullable: true '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.teamworkTagMember' microsoft.graph.teamsTemplate: allOf: - $ref: '#/components/schemas/microsoft.graph.entity' - title: teamsTemplate required: - '@odata.type' type: object properties: '@odata.type': type: string x-ms-discriminator-value: '#microsoft.graph.teamsTemplate' parameters: top: name: $top in: query description: Show only the first n items style: form explode: false schema: minimum: 0 type: integer example: 50 skip: name: $skip in: query description: Skip the first n items style: form explode: false schema: minimum: 0 type: integer search: name: $search in: query description: Search items by search phrases style: form explode: false schema: type: string filter: name: $filter in: query description: Filter items by property values style: form explode: false schema: type: string count: name: $count in: query description: Include count of items style: form explode: false schema: type: boolean examples: {} responses: error: description: error content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ODataErrors.ODataError' ODataCountResponse: description: The count of the resource content: text/plain: schema: $ref: '#/components/schemas/ODataCountResponse' microsoft.graph.groupCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.groupCollectionResponse' StringCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/StringCollectionResponse' microsoft.graph.eventCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.eventCollectionResponse' microsoft.graph.attachmentCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attachmentCollectionResponse' microsoft.graph.extensionCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extensionCollectionResponse' microsoft.graph.postCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.postCollectionResponse' microsoft.graph.driveCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.driveCollectionResponse' microsoft.graph.applicationCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.applicationCollectionResponse' microsoft.graph.deviceCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCollectionResponse' microsoft.graph.orgContactCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.orgContactCollectionResponse' microsoft.graph.userCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.userCollectionResponse' microsoft.graph.notebookCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.notebookCollectionResponse' microsoft.graph.onenotePageCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onenotePageCollectionResponse' microsoft.graph.plannerPlanCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerPlanCollectionResponse' microsoft.graph.plannerTaskCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.plannerTaskCollectionResponse' microsoft.graph.siteCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.siteCollectionResponse' microsoft.graph.contentTypeCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentTypeCollectionResponse' microsoft.graph.columnLinkCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.columnLinkCollectionResponse' microsoft.graph.baseItemCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.baseItemCollectionResponse' microsoft.graph.listCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.listCollectionResponse' microsoft.graph.listItemCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.listItemCollectionResponse' microsoft.graph.permissionCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.permissionCollectionResponse' microsoft.graph.webPartCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.webPartCollectionResponse' microsoft.graph.sitePageCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sitePageCollectionResponse' microsoft.graph.channelCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.channelCollectionResponse' microsoft.graph.chatMessageCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageCollectionResponse' microsoft.graph.teamsTabCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsTabCollectionResponse' microsoft.graph.dayNoteCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.dayNoteCollectionResponse' microsoft.graph.openShiftCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.openShiftCollectionResponse' microsoft.graph.shiftCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.shiftCollectionResponse' microsoft.graph.timeCardCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeCardCollectionResponse' microsoft.graph.timeOffCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.timeOffCollectionResponse' microsoft.graph.teamworkTagCollectionResponse: description: Retrieved collection content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkTagCollectionResponse' tags: - name: connections.externalGroup - name: external.externalConnection - name: groups.appRoleAssignment - name: Groups.calendar - name: Groups.conversation - name: groups.conversationThread - name: groups.directoryObject - name: Groups.drive - name: Groups.event - name: Groups.extension - name: Groups.group - name: groups.group.Actions - name: groups.group.Functions - name: groups.groupLifecyclePolicy - name: groups.groupSetting - name: Groups.onenote - name: groups.onPremisesSyncBehavior - name: groups.plannerGroup - name: groups.profilePhoto - name: groups.resourceSpecificPermissionGrant - name: groups.serviceProvisioningError - name: Groups.site - name: Groups.team - name: Sites.store