openapi: 3.0.4 info: title: OData Service for namespace microsoft.graph description: This OData service is located at https://graph.microsoft.com/beta version: beta x-ms-generated-by: toolName: Microsoft.OpenApi.OData toolVersion: 1.0.9.0 servers: - url: https://graph.microsoft.com/beta paths: /accessReviewDecisions: description: Provides operations to manage the collection of accessReviewDecision entities. get: tags: - accessReviewDecisions.accessReviewDecision summary: Get entities from accessReviewDecisions operationId: accessReviewDecisions.accessReviewDecision.ListAccessReviewDecision 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.accessReviewDecisionCollectionResponse' 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: - accessReviewDecisions.accessReviewDecision summary: Add new entity to accessReviewDecisions operationId: accessReviewDecisions.accessReviewDecision.CreateAccessReviewDecision requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/accessReviewDecisions/{accessReviewDecision-id}': description: Provides operations to manage the collection of accessReviewDecision entities. get: tags: - accessReviewDecisions.accessReviewDecision summary: Get entity from accessReviewDecisions by key operationId: accessReviewDecisions.accessReviewDecision.GetAccessReviewDecision parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.accessReviewDecision' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - accessReviewDecisions.accessReviewDecision summary: Update entity in accessReviewDecisions operationId: accessReviewDecisions.accessReviewDecision.UpdateAccessReviewDecision requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - accessReviewDecisions.accessReviewDecision summary: Delete entity from accessReviewDecisions operationId: accessReviewDecisions.accessReviewDecision.DeleteAccessReviewDecision parameters: - 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: accessReviewDecision-id in: path description: The unique identifier of accessReviewDecision required: true schema: type: string x-ms-docs-key-type: accessReviewDecision /accessReviewDecisions/$count: description: Provides operations to count the resources in the collection. get: tags: - accessReviewDecisions.accessReviewDecision summary: Get the number of the resource operationId: accessReviewDecisions.GetCount-c5db 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' /accessReviews: description: Provides operations to manage the collection of accessReview entities. get: tags: - accessReviews.accessReview summary: List accessReviews (deprecated) description: 'Retrieve the accessReview objects for a particular businessFlowTemplate. A list of zero or more accessReview objects are returned, for each one-time and recurring access review that was created with that business flow template. Business flow template IDs are case sensitive. If many access reviews match the filter, to improve efficiency and avoid timeouts, retrieve the result set in pages, by including both the $top query parameter with a page size, for example 100, and the $skip=0 query parameter in the request. These parameters can be included even when you don''t anticipate that the request spans multiple pages. When a result set spans multiple pages, Microsoft Graph returns that page with an @odata.nextLink property in the response that contains a URL to the next page of results. If that property is present, continue making requests with the @odata.nextLink URL in each response, until all the results are returned, as described in paging Microsoft Graph data in your app. The accessReview objects returned by this API don''t include nested structure properties such as settings, or relationships. To retrieve an access review settings or relationships, use the get accessReview API.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/accessreview-list?view=graph-rest-beta operationId: accessReviews.accessReview.ListAccessReview 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.accessReviewCollectionResponse' 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: - accessReviews.accessReview summary: Create accessReview (deprecated) description: 'In the Microsoft Entra access reviews feature, create a new accessReview object. Before making this request, the caller must have previously retrieved the list of business flow templates, to have the value of businessFlowTemplateId to include in the request. After making this request, the caller should create a programControl, to link the access review to a program. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/accessreview-create?view=graph-rest-beta operationId: accessReviews.accessReview.CreateAccessReview requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReview' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReview' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/accessReviews/{accessReview-id}': description: Provides operations to manage the collection of accessReview entities. get: tags: - accessReviews.accessReview summary: Get accessReview (deprecated) description: 'In the Microsoft Entra access reviews feature, retrieve an accessReview object. To retrieve the reviewers of the access review, use the list accessReview reviewers API. To retrieve the decisions of the access review, use the list accessReview decisions API, or the list my accessReview decisions API. If this is a recurring access review, no decisions will be associated with the recurring access review series. Instead, use the instances relationship of that series to retrieve an accessReview collection of the past, current, and future instances of the access review. Each past and current instance will have decisions.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/accessreview-get?view=graph-rest-beta operationId: accessReviews.accessReview.GetAccessReview parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.accessReview' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - accessReviews.accessReview summary: Update accessReview (deprecated) description: 'In the Microsoft Entra access reviews feature, update an existing accessReview object to change one or more of its properties. This API is not intended to change the reviewers or decisions of a review. To change the reviewers, use the addReviewer or removeReviewer APIs. To stop an already-started one-time review, or an already-started instance of a recurring review, early, use the stop API. To apply the decisions to the target group or app access rights, use the apply API. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/accessreview-update?view=graph-rest-beta operationId: accessReviews.accessReview.UpdateAccessReview requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReview' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReview' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - accessReviews.accessReview summary: Delete accessReview (deprecated) description: 'In the Microsoft Entra access reviews feature, delete an accessReview object.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/accessreview-delete?view=graph-rest-beta operationId: accessReviews.accessReview.DeleteAccessReview parameters: - 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: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview '/accessReviews/{accessReview-id}/decisions': description: Provides operations to manage the decisions property of the microsoft.graph.accessReview entity. get: tags: - accessReviews.accessReviewDecision summary: List accessReview decisions (deprecated) description: 'In the Microsoft Entra access reviews feature, retrieve the decisions of an accessReview object. Note that a recurring access review will not have a decisions relationship. Instead, the caller must navigate the instance relationship to find an accessReview object for a current or past instance of the access review.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/accessreview-listdecisions?view=graph-rest-beta operationId: accessReviews.ListDecisions 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.accessReviewDecisionCollectionResponse' 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: - accessReviews.accessReviewDecision summary: Create new navigation property to decisions for accessReviews operationId: accessReviews.CreateDecisions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions' '/accessReviews/{accessReview-id}/decisions/{accessReviewDecision-id}': description: Provides operations to manage the decisions property of the microsoft.graph.accessReview entity. get: tags: - accessReviews.accessReviewDecision summary: Get decisions from accessReviews description: The collection of decisions for this access review. operationId: accessReviews.GetDecisions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - accessReviews.accessReviewDecision summary: Update the navigation property decisions in accessReviews operationId: accessReviews.UpdateDecisions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - accessReviews.accessReviewDecision summary: Delete navigation property decisions for accessReviews operationId: accessReviews.DeleteDecisions parameters: - 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: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReviewDecision-id in: path description: The unique identifier of accessReviewDecision required: true schema: type: string x-ms-docs-key-type: accessReviewDecision x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions/{accessReviewDecision-id}' '/accessReviews/{accessReview-id}/decisions/$count': description: Provides operations to count the resources in the collection. get: tags: - accessReviews.accessReviewDecision summary: Get the number of the resource operationId: accessReviews.decisions.GetCount-e283 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: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview '/accessReviews/{accessReview-id}/instances': description: Provides operations to manage the instances property of the microsoft.graph.accessReview entity. get: tags: - accessReviews.accessReview summary: Get instances from accessReviews description: 'The collection of access reviews instances past, present, and future, if this object is a recurring access review.' operationId: accessReviews.ListInstances 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.accessReviewCollectionResponse' 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: - accessReviews.accessReview summary: Create new navigation property to instances for accessReviews operationId: accessReviews.CreateInstances requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReview' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReview' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview '/accessReviews/{accessReview-id}/instances/{accessReview-id1}': description: Provides operations to manage the instances property of the microsoft.graph.accessReview entity. get: tags: - accessReviews.accessReview summary: Get instances from accessReviews description: 'The collection of access reviews instances past, present, and future, if this object is a recurring access review.' operationId: accessReviews.GetInstances parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReview' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - accessReviews.accessReview summary: Update the navigation property instances in accessReviews operationId: accessReviews.UpdateInstances requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReview' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReview' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - accessReviews.accessReview summary: Delete navigation property instances for accessReviews operationId: accessReviews.DeleteInstances parameters: - 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: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReview-id1 in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions': description: Provides operations to manage the decisions property of the microsoft.graph.accessReview entity. get: tags: - accessReviews.accessReview summary: Get decisions from accessReviews description: The collection of decisions for this access review. operationId: accessReviews.instances.ListDecisions 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.accessReviewDecisionCollectionResponse' 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: - accessReviews.accessReview summary: Create new navigation property to decisions for accessReviews operationId: accessReviews.instances.CreateDecisions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReview-id1 in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/decisions' '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions/{accessReviewDecision-id}': description: Provides operations to manage the decisions property of the microsoft.graph.accessReview entity. get: tags: - accessReviews.accessReview summary: Get decisions from accessReviews description: The collection of decisions for this access review. operationId: accessReviews.instances.GetDecisions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - accessReviews.accessReview summary: Update the navigation property decisions in accessReviews operationId: accessReviews.instances.UpdateDecisions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - accessReviews.accessReview summary: Delete navigation property decisions for accessReviews operationId: accessReviews.instances.DeleteDecisions parameters: - 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: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReview-id1 in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReviewDecision-id in: path description: The unique identifier of accessReviewDecision required: true schema: type: string x-ms-docs-key-type: accessReviewDecision x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/decisions/{accessReviewDecision-id}' '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions/$count': description: Provides operations to count the resources in the collection. get: tags: - accessReviews.accessReview summary: Get the number of the resource operationId: accessReviews.instances.decisions.GetCount-00c9 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: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReview-id1 in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/applyDecisions': description: Provides operations to call the applyDecisions method. post: tags: - accessReviews.accessReview summary: Invoke action applyDecisions description: 'In the Microsoft Entra access reviews feature, apply the decisions of a completed accessReview. The target object can be either a one-time access review, or an instance of a recurring access review. After an access review is finished, either because it reached the end date or an administrator stopped it manually, and auto-apply wasn''t configured for the review, you can call Apply to apply the changes. Until apply occurs, the decisions to remove access rights do not appear on the source resource, the users for instance retain their group memberships. By calling apply, the outcome of the review is implemented by updating the group or application. If a user''s access was denied in the review, when an administrator calls this API, Microsoft Entra ID removes their membership or application assignment. After an access review is finished, and auto-apply was configured, then the status of the review will change from Completed through intermediate states and finally will change to state Applied. You should expect to see denied users, if any, being removed from the resource group membership or app assignment in a few minutes. A configured auto applying review, or selecting Apply doesn''t have an effect on a group that originates in an on-premises directory or a dynamic group. If you want to change a group that originates on-premises, download the results and apply those changes to the representation of the group in that directory.' operationId: accessReviews.accessReview.instances.accessReview.applyDecisions responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReview-id1 in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/applyDecisions' '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/resetDecisions': description: Provides operations to call the resetDecisions method. post: tags: - accessReviews.accessReview summary: Invoke action resetDecisions description: 'In the Microsoft Entra access reviews feature, reset the decisions of a currently active accessReview. The target object can be either a one-time access review, or an instance of a recurring access review. Previous decisions are no longer recorded, but reviewers can continue to update decisions.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/accessreview-reset?view=graph-rest-beta operationId: accessReviews.accessReview.instances.accessReview.resetDecisions responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReview-id1 in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/resetDecisions' '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/sendReminder': description: Provides operations to call the sendReminder method. post: tags: - accessReviews.accessReview summary: Invoke action sendReminder description: 'In the Microsoft Entra access reviews feature, send a reminder to the reviewers of a currently active accessReview. The target object can be either a one-time access review, or an instance of a recurring access review. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/accessreview-sendreminder?view=graph-rest-beta operationId: accessReviews.accessReview.instances.accessReview.sendReminder responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReview-id1 in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/sendReminder' '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/stop': description: Provides operations to call the stop method. post: tags: - accessReviews.accessReview summary: Invoke action stop description: 'In the Microsoft Entra access reviews feature, stop a currently active accessReview. The target object can be either a one-time access review, or an instance of a recurring access review. (To prevent a recurring access review from starting future instances, update it to change its scheduled end date). After the access review stops, reviewers can no longer give input, and the access review decisions can be applied.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/accessreview-stop?view=graph-rest-beta operationId: accessReviews.accessReview.instances.accessReview.stop responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReview-id1 in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/stop' '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions': description: Provides operations to manage the myDecisions property of the microsoft.graph.accessReview entity. get: tags: - accessReviews.accessReview summary: Get myDecisions from accessReviews description: 'The collection of decisions for the caller, if the caller is a reviewer.' operationId: accessReviews.instances.ListMyDecisions 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.accessReviewDecisionCollectionResponse' 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: - accessReviews.accessReview summary: Create new navigation property to myDecisions for accessReviews operationId: accessReviews.instances.CreateMyDecisions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReview-id1 in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/myDecisions' '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions/{accessReviewDecision-id}': description: Provides operations to manage the myDecisions property of the microsoft.graph.accessReview entity. get: tags: - accessReviews.accessReview summary: Get myDecisions from accessReviews description: 'The collection of decisions for the caller, if the caller is a reviewer.' operationId: accessReviews.instances.GetMyDecisions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - accessReviews.accessReview summary: Update the navigation property myDecisions in accessReviews operationId: accessReviews.instances.UpdateMyDecisions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - accessReviews.accessReview summary: Delete navigation property myDecisions for accessReviews operationId: accessReviews.instances.DeleteMyDecisions parameters: - 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: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReview-id1 in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReviewDecision-id in: path description: The unique identifier of accessReviewDecision required: true schema: type: string x-ms-docs-key-type: accessReviewDecision x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/myDecisions/{accessReviewDecision-id}' '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions/$count': description: Provides operations to count the resources in the collection. get: tags: - accessReviews.accessReview summary: Get the number of the resource operationId: accessReviews.instances.myDecisions.GetCount-8fe5 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: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReview-id1 in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers': description: Provides operations to manage the reviewers property of the microsoft.graph.accessReview entity. get: tags: - accessReviews.accessReview summary: Get reviewers from accessReviews description: 'The collection of reviewers for an access review, if access review reviewerType is of type delegated.' operationId: accessReviews.instances.ListReviewers 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.accessReviewReviewerCollectionResponse' 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: - accessReviews.accessReview summary: Create new navigation property to reviewers for accessReviews operationId: accessReviews.instances.CreateReviewers requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewer' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewer' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReview-id1 in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/reviewers' '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers/{accessReviewReviewer-id}': description: Provides operations to manage the reviewers property of the microsoft.graph.accessReview entity. get: tags: - accessReviews.accessReview summary: Get reviewers from accessReviews description: 'The collection of reviewers for an access review, if access review reviewerType is of type delegated.' operationId: accessReviews.instances.GetReviewers parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewer' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - accessReviews.accessReview summary: Update the navigation property reviewers in accessReviews operationId: accessReviews.instances.UpdateReviewers requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewer' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewer' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - accessReviews.accessReview summary: Delete navigation property reviewers for accessReviews operationId: accessReviews.instances.DeleteReviewers parameters: - 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: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReview-id1 in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReviewReviewer-id in: path description: The unique identifier of accessReviewReviewer required: true schema: type: string x-ms-docs-key-type: accessReviewReviewer x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/reviewers/{accessReviewReviewer-id}' '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers/$count': description: Provides operations to count the resources in the collection. get: tags: - accessReviews.accessReview summary: Get the number of the resource operationId: accessReviews.instances.reviewers.GetCount-0f39 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: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReview-id1 in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview '/accessReviews/{accessReview-id}/instances/$count': description: Provides operations to count the resources in the collection. get: tags: - accessReviews.accessReview summary: Get the number of the resource operationId: accessReviews.instances.GetCount-6b79 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: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview '/accessReviews/{accessReview-id}/applyDecisions': description: Provides operations to call the applyDecisions method. post: tags: - accessReviews.accessReview.Actions summary: Invoke action applyDecisions description: 'In the Microsoft Entra access reviews feature, apply the decisions of a completed accessReview. The target object can be either a one-time access review, or an instance of a recurring access review. After an access review is finished, either because it reached the end date or an administrator stopped it manually, and auto-apply wasn''t configured for the review, you can call Apply to apply the changes. Until apply occurs, the decisions to remove access rights do not appear on the source resource, the users for instance retain their group memberships. By calling apply, the outcome of the review is implemented by updating the group or application. If a user''s access was denied in the review, when an administrator calls this API, Microsoft Entra ID removes their membership or application assignment. After an access review is finished, and auto-apply was configured, then the status of the review will change from Completed through intermediate states and finally will change to state Applied. You should expect to see denied users, if any, being removed from the resource group membership or app assignment in a few minutes. A configured auto applying review, or selecting Apply doesn''t have an effect on a group that originates in an on-premises directory or a dynamic group. If you want to change a group that originates on-premises, download the results and apply those changes to the representation of the group in that directory.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/accessreview-apply?view=graph-rest-beta operationId: accessReviews.accessReview.applyDecisions responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/applyDecisions' '/accessReviews/{accessReview-id}/resetDecisions': description: Provides operations to call the resetDecisions method. post: tags: - accessReviews.accessReview.Actions summary: Invoke action resetDecisions description: 'In the Microsoft Entra access reviews feature, reset the decisions of a currently active accessReview. The target object can be either a one-time access review, or an instance of a recurring access review. Previous decisions are no longer recorded, but reviewers can continue to update decisions.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/accessreview-reset?view=graph-rest-beta operationId: accessReviews.accessReview.resetDecisions responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/resetDecisions' '/accessReviews/{accessReview-id}/sendReminder': description: Provides operations to call the sendReminder method. post: tags: - accessReviews.accessReview.Actions summary: Invoke action sendReminder description: 'In the Microsoft Entra access reviews feature, send a reminder to the reviewers of a currently active accessReview. The target object can be either a one-time access review, or an instance of a recurring access review. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/accessreview-sendreminder?view=graph-rest-beta operationId: accessReviews.accessReview.sendReminder responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/sendReminder' '/accessReviews/{accessReview-id}/stop': description: Provides operations to call the stop method. post: tags: - accessReviews.accessReview.Actions summary: Invoke action stop description: 'In the Microsoft Entra access reviews feature, stop a currently active accessReview. The target object can be either a one-time access review, or an instance of a recurring access review. (To prevent a recurring access review from starting future instances, update it to change its scheduled end date). After the access review stops, reviewers can no longer give input, and the access review decisions can be applied.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/accessreview-stop?view=graph-rest-beta operationId: accessReviews.accessReview.stop responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/stop' '/accessReviews/{accessReview-id}/myDecisions': description: Provides operations to manage the myDecisions property of the microsoft.graph.accessReview entity. get: tags: - accessReviews.accessReviewDecision summary: List my accessReview decisions (deprecated) description: 'In the Microsoft Entra access reviews feature, retrieve the decisions of an accessReview object for the calling user as reviewer.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/accessreview-listmydecisions?view=graph-rest-beta operationId: accessReviews.ListMyDecisions 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.accessReviewDecisionCollectionResponse' 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: - accessReviews.accessReviewDecision summary: Create new navigation property to myDecisions for accessReviews operationId: accessReviews.CreateMyDecisions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions' '/accessReviews/{accessReview-id}/myDecisions/{accessReviewDecision-id}': description: Provides operations to manage the myDecisions property of the microsoft.graph.accessReview entity. get: tags: - accessReviews.accessReviewDecision summary: Get myDecisions from accessReviews description: 'The collection of decisions for the caller, if the caller is a reviewer.' operationId: accessReviews.GetMyDecisions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - accessReviews.accessReviewDecision summary: Update the navigation property myDecisions in accessReviews operationId: accessReviews.UpdateMyDecisions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewDecision' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - accessReviews.accessReviewDecision summary: Delete navigation property myDecisions for accessReviews operationId: accessReviews.DeleteMyDecisions parameters: - 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: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReviewDecision-id in: path description: The unique identifier of accessReviewDecision required: true schema: type: string x-ms-docs-key-type: accessReviewDecision x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions/{accessReviewDecision-id}' '/accessReviews/{accessReview-id}/myDecisions/$count': description: Provides operations to count the resources in the collection. get: tags: - accessReviews.accessReviewDecision summary: Get the number of the resource operationId: accessReviews.myDecisions.GetCount-096b 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: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview '/accessReviews/{accessReview-id}/reviewers': description: Provides operations to manage the reviewers property of the microsoft.graph.accessReview entity. get: tags: - accessReviews.accessReviewReviewer summary: List accessReview reviewers (deprecated) description: 'In the Microsoft Entra access reviews feature, retrieve the reviewers of an accessReview object.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/accessreview-listreviewers?view=graph-rest-beta operationId: accessReviews.ListReviewers 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.accessReviewReviewerCollectionResponse' 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: - accessReviews.accessReviewReviewer summary: Add accessReview reviewer (deprecated) description: 'In the Microsoft Entra access reviews feature, update an existing accessReview object to add another user as a reviewer. This operation is only permitted for an access review that isn''t yet completed, and only for an access review where the reviewers are explicitly specified. This operation isn''t permitted for an access review in which users review their own access, and not intended for an access review in which the group owners are assigned as the reviewers. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/accessreview-addreviewer?view=graph-rest-beta operationId: accessReviews.CreateReviewers requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewer' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewer' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers' '/accessReviews/{accessReview-id}/reviewers/{accessReviewReviewer-id}': description: Provides operations to manage the reviewers property of the microsoft.graph.accessReview entity. get: tags: - accessReviews.accessReviewReviewer summary: Get reviewers from accessReviews description: 'The collection of reviewers for an access review, if access review reviewerType is of type delegated.' operationId: accessReviews.GetReviewers parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewer' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - accessReviews.accessReviewReviewer summary: Update the navigation property reviewers in accessReviews operationId: accessReviews.UpdateReviewers requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewer' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.accessReviewReviewer' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - accessReviews.accessReviewReviewer summary: Remove accessReview reviewer (deprecated) description: 'In the Microsoft Entra access reviews feature, update an existing accessReview object to remove a user as a reviewer. This operation is only permitted for an access review that isn''t yet completed, and only for an access review where the reviewers are explicitly specified. This operation isn''t permitted for an access review in which users review their own access, and not intended for an access review in which the group owners are assigned as the reviewers. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/accessreview-removereviewer?view=graph-rest-beta operationId: accessReviews.DeleteReviewers parameters: - 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: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview - name: accessReviewReviewer-id in: path description: The unique identifier of accessReviewReviewer required: true schema: type: string x-ms-docs-key-type: accessReviewReviewer x-ms-docs-grouped-path: - '/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers/{accessReviewReviewer-id}' '/accessReviews/{accessReview-id}/reviewers/$count': description: Provides operations to count the resources in the collection. get: tags: - accessReviews.accessReviewReviewer summary: Get the number of the resource operationId: accessReviews.reviewers.GetCount-11fa 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: accessReview-id in: path description: The unique identifier of accessReview required: true schema: type: string x-ms-docs-key-type: accessReview /accessReviews/$count: description: Provides operations to count the resources in the collection. get: tags: - accessReviews.accessReview summary: Get the number of the resource operationId: accessReviews.GetCount-27b1 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' /activitystatistics: description: Provides operations to manage the collection of activityStatistics entities. get: tags: - activitystatistics.activityStatistics summary: Get entities from activitystatistics operationId: activitystatistics.activityStatistics.ListActivityStatistics 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: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: $ref: '#/components/responses/microsoft.graph.activityStatisticsCollectionResponse' 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: - activitystatistics.activityStatistics summary: Add new entity to activitystatistics operationId: activitystatistics.activityStatistics.CreateActivityStatistics requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.activityStatistics' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.activityStatistics' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/activitystatistics/{activityStatistics-id}': description: Provides operations to manage the collection of activityStatistics entities. get: tags: - activitystatistics.activityStatistics summary: Get entity from activitystatistics by key operationId: activitystatistics.activityStatistics.GetActivityStatistics parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.activityStatistics' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - activitystatistics.activityStatistics summary: Update entity in activitystatistics operationId: activitystatistics.activityStatistics.UpdateActivityStatistics requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.activityStatistics' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.activityStatistics' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - activitystatistics.activityStatistics summary: Delete entity from activitystatistics operationId: activitystatistics.activityStatistics.DeleteActivityStatistics parameters: - 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: activityStatistics-id in: path description: The unique identifier of activityStatistics required: true schema: type: string x-ms-docs-key-type: activityStatistics /activitystatistics/$count: description: Provides operations to count the resources in the collection. get: tags: - activitystatistics.activityStatistics summary: Get the number of the resource operationId: activitystatistics.GetCount-c9c7 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' /admin: description: Provides operations to manage the admin singleton. get: tags: - admin.admin summary: Get admin operationId: admin.admin.GetAdmin parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.admin' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.admin summary: Update admin operationId: admin.admin.UpdateAdmin requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.admin' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.admin' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation /admin/appsAndServices: description: Provides operations to manage the appsAndServices property of the microsoft.graph.admin entity. get: tags: - admin.adminAppsAndServices summary: Get adminAppsAndServices description: Read the properties and relationships of a adminAppsAndServices object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/adminappsandservices-get?view=graph-rest-beta operationId: admin.GetAppsAndServices parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminAppsAndServices' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminAppsAndServices summary: Update adminAppsAndServices description: Update the properties of a adminAppsAndServices object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/adminappsandservices-update?view=graph-rest-beta operationId: admin.UpdateAppsAndServices requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminAppsAndServices' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminAppsAndServices' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminAppsAndServices summary: Delete navigation property appsAndServices for admin operationId: admin.DeleteAppsAndServices parameters: - 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 /admin/dynamics: description: Provides operations to manage the dynamics property of the microsoft.graph.admin entity. get: tags: - admin.adminDynamics summary: Get adminDynamics description: Read the properties and relationships of a adminDynamics object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/admindynamics-get?view=graph-rest-beta operationId: admin.GetDynamics parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminDynamics' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminDynamics summary: Update adminDynamics description: Update the properties of a adminDynamics object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/admindynamics-update?view=graph-rest-beta operationId: admin.UpdateDynamics requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminDynamics' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminDynamics' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminDynamics summary: Delete navigation property dynamics for admin operationId: admin.DeleteDynamics parameters: - 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 /admin/edge: description: Provides operations to manage the edge property of the microsoft.graph.admin entity. get: tags: - admin.edge summary: Get edge from admin description: A container for Microsoft Edge resources. Read-only. operationId: admin.GetEdge parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.edge' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.edge summary: Update the navigation property edge in admin operationId: admin.UpdateEdge requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.edge' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.edge' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.edge summary: Delete navigation property edge for admin operationId: admin.DeleteEdge parameters: - 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 /admin/edge/internetExplorerMode: description: Provides operations to manage the internetExplorerMode property of the microsoft.graph.edge entity. get: tags: - admin.edge summary: Get internetExplorerMode from admin description: A container for Internet Explorer mode resources. operationId: admin.edge.GetInternetExplorerMode parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.internetExplorerMode' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.edge summary: Update the navigation property internetExplorerMode in admin operationId: admin.edge.UpdateInternetExplorerMode requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.internetExplorerMode' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.internetExplorerMode' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.edge summary: Delete navigation property internetExplorerMode for admin operationId: admin.edge.DeleteInternetExplorerMode parameters: - 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 /admin/edge/internetExplorerMode/siteLists: description: Provides operations to manage the siteLists property of the microsoft.graph.internetExplorerMode entity. get: tags: - admin.edge summary: List browserSiteLists description: Get a list of the browserSiteList objects and their properties. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/internetexplorermode-list-sitelists?view=graph-rest-beta operationId: admin.edge.internetExplorerMode.ListSiteLists 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.browserSiteListCollectionResponse' 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: - admin.edge summary: Create browserSiteList description: Create a new browserSiteList object to support Internet Explorer mode. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/internetexplorermode-post-sitelists?view=graph-rest-beta operationId: admin.edge.internetExplorerMode.CreateSiteLists requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.browserSiteList' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.browserSiteList' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}': description: Provides operations to manage the siteLists property of the microsoft.graph.internetExplorerMode entity. get: tags: - admin.edge summary: Get browserSiteList description: Get a browserSiteList that contains browserSite and browserSharedCookie resources. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/browsersitelist-get?view=graph-rest-beta operationId: admin.edge.internetExplorerMode.GetSiteLists parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.browserSiteList' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.edge summary: Update browserSiteList description: Update the properties of a browserSiteList object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/browsersitelist-update?view=graph-rest-beta operationId: admin.edge.internetExplorerMode.UpdateSiteLists requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.browserSiteList' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.browserSiteList' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.edge summary: Delete browserSiteList description: Delete a browserSiteList object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/internetexplorermode-delete-sitelists?view=graph-rest-beta operationId: admin.edge.internetExplorerMode.DeleteSiteLists parameters: - 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: browserSiteList-id in: path description: The unique identifier of browserSiteList required: true schema: type: string x-ms-docs-key-type: browserSiteList '/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/publish': description: Provides operations to call the publish method. post: tags: - admin.edge summary: Invoke action publish description: Publish the specified browserSiteList for devices to download. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/browsersitelist-publish?view=graph-rest-beta operationId: admin.edge.internetExplorerMode.siteLists.browserSiteList.publish requestBody: description: Action parameters content: application/json: schema: type: object properties: revision: type: string sites: type: array items: $ref: '#/components/schemas/microsoft.graph.browserSite' sharedCookies: type: array items: $ref: '#/components/schemas/microsoft.graph.browserSharedCookie' required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.browserSiteList' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: browserSiteList-id in: path description: The unique identifier of browserSiteList required: true schema: type: string x-ms-docs-key-type: browserSiteList '/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies': description: Provides operations to manage the sharedCookies property of the microsoft.graph.browserSiteList entity. get: tags: - admin.edge summary: List browserSharedCookies description: Get a list of the browserSharedCookie objects and their properties. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/browsersitelist-list-sharedcookies?view=graph-rest-beta operationId: admin.edge.internetExplorerMode.siteLists.ListSharedCookies 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.browserSharedCookieCollectionResponse' 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: - admin.edge summary: Create browserSharedCookie description: Create a new browserSharedCookie object in a browserSiteList. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/browsersitelist-post-sharedcookies?view=graph-rest-beta operationId: admin.edge.internetExplorerMode.siteLists.CreateSharedCookies requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.browserSharedCookie' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.browserSharedCookie' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: browserSiteList-id in: path description: The unique identifier of browserSiteList required: true schema: type: string x-ms-docs-key-type: browserSiteList '/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/{browserSharedCookie-id}': description: Provides operations to manage the sharedCookies property of the microsoft.graph.browserSiteList entity. get: tags: - admin.edge summary: Get browserSharedCookie description: 'Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/browsersharedcookie-get?view=graph-rest-beta operationId: admin.edge.internetExplorerMode.siteLists.GetSharedCookies parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.browserSharedCookie' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.edge summary: Update browserSharedCookie description: Update the properties of a browserSharedCookie object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/browsersharedcookie-update?view=graph-rest-beta operationId: admin.edge.internetExplorerMode.siteLists.UpdateSharedCookies requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.browserSharedCookie' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.browserSharedCookie' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.edge summary: Delete browserSharedCookie description: Delete a browserSharedCookie from a browserSiteList. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/browsersitelist-delete-sharedcookies?view=graph-rest-beta operationId: admin.edge.internetExplorerMode.siteLists.DeleteSharedCookies parameters: - 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: browserSiteList-id in: path description: The unique identifier of browserSiteList required: true schema: type: string x-ms-docs-key-type: browserSiteList - name: browserSharedCookie-id in: path description: The unique identifier of browserSharedCookie required: true schema: type: string x-ms-docs-key-type: browserSharedCookie '/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.edge summary: Get the number of the resource operationId: admin.edge.internetExplorerMode.siteLists.sharedCookies.GetCount-0de2 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: browserSiteList-id in: path description: The unique identifier of browserSiteList required: true schema: type: string x-ms-docs-key-type: browserSiteList '/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites': description: Provides operations to manage the sites property of the microsoft.graph.browserSiteList entity. get: tags: - admin.edge summary: List browserSites description: Get a list of the browserSite objects and their properties. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/browsersitelist-list-sites?view=graph-rest-beta operationId: admin.edge.internetExplorerMode.siteLists.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.browserSiteCollectionResponse' 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: - admin.edge summary: Create browserSite description: Create a new browserSite object in a browserSiteList. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/browsersitelist-post-sites?view=graph-rest-beta operationId: admin.edge.internetExplorerMode.siteLists.CreateSites requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.browserSite' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.browserSite' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: browserSiteList-id in: path description: The unique identifier of browserSiteList required: true schema: type: string x-ms-docs-key-type: browserSiteList '/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/{browserSite-id}': description: Provides operations to manage the sites property of the microsoft.graph.browserSiteList entity. get: tags: - admin.edge summary: Get browserSite description: Get a browserSite that resides on a browserSiteList. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/browsersite-get?view=graph-rest-beta operationId: admin.edge.internetExplorerMode.siteLists.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.browserSite' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.edge summary: Update browserSite description: Update the properties of a browserSite object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/browsersite-update?view=graph-rest-beta operationId: admin.edge.internetExplorerMode.siteLists.UpdateSites requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.browserSite' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.browserSite' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.edge summary: Delete browserSite description: Delete a browserSite from a browserSiteList. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/browsersitelist-delete-sites?view=graph-rest-beta operationId: admin.edge.internetExplorerMode.siteLists.DeleteSites parameters: - 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: browserSiteList-id in: path description: The unique identifier of browserSiteList required: true schema: type: string x-ms-docs-key-type: browserSiteList - name: browserSite-id in: path description: The unique identifier of browserSite required: true schema: type: string x-ms-docs-key-type: browserSite '/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.edge summary: Get the number of the resource operationId: admin.edge.internetExplorerMode.siteLists.sites.GetCount-da97 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: browserSiteList-id in: path description: The unique identifier of browserSiteList required: true schema: type: string x-ms-docs-key-type: browserSiteList /admin/edge/internetExplorerMode/siteLists/$count: description: Provides operations to count the resources in the collection. get: tags: - admin.edge summary: Get the number of the resource operationId: admin.edge.internetExplorerMode.siteLists.GetCount-d3d6 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' /admin/entra: description: Provides operations to manage the entra property of the microsoft.graph.admin entity. get: tags: - admin.entra summary: Get entra from admin description: A container for Microsoft Entra resources. Read-only. operationId: admin.GetEntra parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.entra' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.entra summary: Update the navigation property entra in admin operationId: admin.UpdateEntra requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.entra' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.entra' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.entra summary: Delete navigation property entra for admin operationId: admin.DeleteEntra parameters: - 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 /admin/entra/uxSetting: description: Provides operations to manage the uxSetting property of the microsoft.graph.entra entity. get: tags: - admin.entra summary: Get uxSetting description: Get the properties and relationships of a uxSetting object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/uxsetting-get?view=graph-rest-beta operationId: admin.entra.GetUxSetting parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.uxSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.entra summary: Update uxSetting description: Update the properties of a uxSetting object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/uxsetting-update?view=graph-rest-beta operationId: admin.entra.UpdateUxSetting requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.uxSetting' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.uxSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.entra summary: Delete navigation property uxSetting for admin operationId: admin.entra.DeleteUxSetting parameters: - 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 /admin/exchange: description: Provides operations to manage the exchange property of the microsoft.graph.admin entity. get: tags: - admin.exchangeAdmin summary: Get exchange from admin description: A container for the Exchange admin functionality. Read-only. operationId: admin.GetExchange parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exchangeAdmin' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation patch: tags: - admin.exchangeAdmin summary: Update the navigation property exchange in admin operationId: admin.UpdateExchange requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exchangeAdmin' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exchangeAdmin' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation delete: tags: - admin.exchangeAdmin summary: Delete navigation property exchange for admin operationId: admin.DeleteExchange parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation /admin/exchange/mailboxes: description: Provides operations to manage the mailboxes property of the microsoft.graph.exchangeAdmin entity. get: tags: - admin.exchangeAdmin summary: Get mailboxes from admin description: Represents a user's mailboxes. operationId: admin.exchange.ListMailboxes 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.mailboxCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - admin.exchangeAdmin summary: Create new navigation property to mailboxes for admin operationId: admin.exchange.CreateMailboxes requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailbox' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailbox' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation '/admin/exchange/mailboxes/{mailbox-id}': description: Provides operations to manage the mailboxes property of the microsoft.graph.exchangeAdmin entity. get: tags: - admin.exchangeAdmin summary: Get mailboxes from admin description: Represents a user's mailboxes. operationId: admin.exchange.GetMailboxes parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailbox' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation patch: tags: - admin.exchangeAdmin summary: Update the navigation property mailboxes in admin operationId: admin.exchange.UpdateMailboxes requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailbox' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailbox' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation delete: tags: - admin.exchangeAdmin summary: Delete navigation property mailboxes for admin operationId: admin.exchange.DeleteMailboxes parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox '/admin/exchange/mailboxes/{mailbox-id}/folders': description: Provides operations to manage the folders property of the microsoft.graph.mailbox entity. get: tags: - admin.exchangeAdmin summary: List folders description: 'Get all the mailboxFolder objects in the specified mailbox, including any search folders.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/mailbox-list-folders?view=graph-rest-beta operationId: admin.exchange.mailboxes.ListFolders 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.mailboxFolderCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}': description: Provides operations to manage the folders property of the microsoft.graph.mailbox entity. get: tags: - admin.exchangeAdmin summary: Get mailboxFolder description: Read the properties and relationships of a mailboxFolder object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/mailboxfolder-get?view=graph-rest-beta operationId: admin.exchange.mailboxes.GetFolders parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxFolder' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox - name: mailboxFolder-id in: path description: The unique identifier of mailboxFolder required: true schema: type: string x-ms-docs-key-type: mailboxFolder '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/childFolders': description: Provides operations to manage the childFolders property of the microsoft.graph.mailboxFolder entity. get: tags: - admin.exchangeAdmin summary: List childFolders description: Get the mailboxFolder collection under the specified mailboxFolder in a mailbox. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/mailboxfolder-list-childfolders?view=graph-rest-beta operationId: admin.exchange.mailboxes.folders.ListChildFolders 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.mailboxFolderCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox - name: mailboxFolder-id in: path description: The unique identifier of mailboxFolder required: true schema: type: string x-ms-docs-key-type: mailboxFolder '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/childFolders/{mailboxFolder-id1}': description: Provides operations to manage the childFolders property of the microsoft.graph.mailboxFolder entity. get: tags: - admin.exchangeAdmin summary: Get childFolders from admin description: The collection of child folders in this folder. operationId: admin.exchange.mailboxes.folders.GetChildFolders parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxFolder' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox - name: mailboxFolder-id in: path description: The unique identifier of mailboxFolder required: true schema: type: string x-ms-docs-key-type: mailboxFolder - name: mailboxFolder-id1 in: path description: The unique identifier of mailboxFolder required: true schema: type: string x-ms-docs-key-type: mailboxFolder '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/childFolders/{mailboxFolder-id1}/items': description: Provides operations to manage the items property of the microsoft.graph.mailboxFolder entity. get: tags: - admin.exchangeAdmin summary: Get items from admin description: The collection of items in this folder. operationId: admin.exchange.mailboxes.folders.childFolders.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.mailboxItemCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox - name: mailboxFolder-id in: path description: The unique identifier of mailboxFolder required: true schema: type: string x-ms-docs-key-type: mailboxFolder - name: mailboxFolder-id1 in: path description: The unique identifier of mailboxFolder required: true schema: type: string x-ms-docs-key-type: mailboxFolder x-ms-docs-grouped-path: - '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/items' '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/childFolders/{mailboxFolder-id1}/items/{mailboxItem-id}': description: Provides operations to manage the items property of the microsoft.graph.mailboxFolder entity. get: tags: - admin.exchangeAdmin summary: Get items from admin description: The collection of items in this folder. operationId: admin.exchange.mailboxes.folders.childFolders.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.mailboxItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox - name: mailboxFolder-id in: path description: The unique identifier of mailboxFolder required: true schema: type: string x-ms-docs-key-type: mailboxFolder - name: mailboxFolder-id1 in: path description: The unique identifier of mailboxFolder required: true schema: type: string x-ms-docs-key-type: mailboxFolder - name: mailboxItem-id in: path description: The unique identifier of mailboxItem required: true schema: type: string x-ms-docs-key-type: mailboxItem x-ms-docs-grouped-path: - '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/items/{mailboxItem-id}' '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/childFolders/{mailboxFolder-id1}/items/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.exchangeAdmin summary: Get the number of the resource operationId: admin.exchange.mailboxes.folders.childFolders.items.GetCount-de79 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' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox - name: mailboxFolder-id in: path description: The unique identifier of mailboxFolder required: true schema: type: string x-ms-docs-key-type: mailboxFolder - name: mailboxFolder-id1 in: path description: The unique identifier of mailboxFolder required: true schema: type: string x-ms-docs-key-type: mailboxFolder '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/childFolders/{mailboxFolder-id1}/items/delta()': description: Provides operations to call the delta method. get: tags: - admin.exchangeAdmin summary: Invoke function delta description: 'Get a set of mailboxItem objects that have been added, deleted, or updated in a specified mailboxFolder. A delta function call for items in a folder is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls, you can query for incremental changes in the items in that folder. This approach allows you to maintain and synchronize a local store of a user''s mailbox items without having to fetch the entire set of items from the server every time.' operationId: admin.exchange.mailboxes.mailbox.folders.mailboxFolder.childFolders.mailboxFolder.items.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 mailboxItem type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.mailboxItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox - name: mailboxFolder-id in: path description: The unique identifier of mailboxFolder required: true schema: type: string x-ms-docs-key-type: mailboxFolder - name: mailboxFolder-id1 in: path description: The unique identifier of mailboxFolder required: true schema: type: string x-ms-docs-key-type: mailboxFolder x-ms-docs-grouped-path: - '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/childFolders/delta()' - '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/items/delta()' - '/admin/exchange/mailboxes/{mailbox-id}/folders/delta()' '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/childFolders/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.exchangeAdmin summary: Get the number of the resource operationId: admin.exchange.mailboxes.folders.childFolders.GetCount-268c 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' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox - name: mailboxFolder-id in: path description: The unique identifier of mailboxFolder required: true schema: type: string x-ms-docs-key-type: mailboxFolder '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/childFolders/delta()': description: Provides operations to call the delta method. get: tags: - admin.exchangeAdmin summary: Invoke function delta description: 'Get a set of mailboxFolder objects that have been added, deleted, or removed from the user''s mailbox. A delta function call for folders in a mailbox is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls, you can query for incremental changes in the folders. This approach allows you to maintain and synchronize a local store of a user''s mail folders without having to fetch all the folders of that mailbox from the server every time.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/mailboxfolder-delta?view=graph-rest-beta operationId: admin.exchange.mailboxes.mailbox.folders.mailboxFolder.childFolders.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 mailboxFolder type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.mailboxFolder' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox - name: mailboxFolder-id in: path description: The unique identifier of mailboxFolder required: true schema: type: string x-ms-docs-key-type: mailboxFolder x-ms-docs-grouped-path: - '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/childFolders/{mailboxFolder-id1}/items/delta()' - '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/items/delta()' - '/admin/exchange/mailboxes/{mailbox-id}/folders/delta()' '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/items': description: Provides operations to manage the items property of the microsoft.graph.mailboxFolder entity. get: tags: - admin.exchangeAdmin summary: List items description: Get the mailboxItem collection within a specified mailboxFolder in a mailbox. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/mailboxfolder-list-items?view=graph-rest-beta operationId: admin.exchange.mailboxes.folders.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.mailboxItemCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox - name: mailboxFolder-id in: path description: The unique identifier of mailboxFolder required: true schema: type: string x-ms-docs-key-type: mailboxFolder x-ms-docs-grouped-path: - '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/childFolders/{mailboxFolder-id1}/items' '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/items/{mailboxItem-id}': description: Provides operations to manage the items property of the microsoft.graph.mailboxFolder entity. get: tags: - admin.exchangeAdmin summary: Get mailboxItem description: Read the properties and relationships of a mailboxItem object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/mailboxitem-get?view=graph-rest-beta operationId: admin.exchange.mailboxes.folders.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.mailboxItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox - name: mailboxFolder-id in: path description: The unique identifier of mailboxFolder required: true schema: type: string x-ms-docs-key-type: mailboxFolder - name: mailboxItem-id in: path description: The unique identifier of mailboxItem required: true schema: type: string x-ms-docs-key-type: mailboxItem x-ms-docs-grouped-path: - '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/childFolders/{mailboxFolder-id1}/items/{mailboxItem-id}' '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/items/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.exchangeAdmin summary: Get the number of the resource operationId: admin.exchange.mailboxes.folders.items.GetCount-d4b5 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' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox - name: mailboxFolder-id in: path description: The unique identifier of mailboxFolder required: true schema: type: string x-ms-docs-key-type: mailboxFolder '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/items/delta()': description: Provides operations to call the delta method. get: tags: - admin.exchangeAdmin summary: Invoke function delta description: 'Get a set of mailboxItem objects that have been added, deleted, or updated in a specified mailboxFolder. A delta function call for items in a folder is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls, you can query for incremental changes in the items in that folder. This approach allows you to maintain and synchronize a local store of a user''s mailbox items without having to fetch the entire set of items from the server every time.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/mailboxitem-delta?view=graph-rest-beta operationId: admin.exchange.mailboxes.mailbox.folders.mailboxFolder.items.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 mailboxItem type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.mailboxItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox - name: mailboxFolder-id in: path description: The unique identifier of mailboxFolder required: true schema: type: string x-ms-docs-key-type: mailboxFolder x-ms-docs-grouped-path: - '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/childFolders/{mailboxFolder-id1}/items/delta()' - '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/childFolders/delta()' - '/admin/exchange/mailboxes/{mailbox-id}/folders/delta()' '/admin/exchange/mailboxes/{mailbox-id}/folders/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.exchangeAdmin summary: Get the number of the resource operationId: admin.exchange.mailboxes.folders.GetCount-0a5e 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' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox '/admin/exchange/mailboxes/{mailbox-id}/folders/delta()': description: Provides operations to call the delta method. get: tags: - admin.exchangeAdmin summary: Invoke function delta description: 'Get a set of mailboxFolder objects that have been added, deleted, or removed from the user''s mailbox. A delta function call for folders in a mailbox is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls, you can query for incremental changes in the folders. This approach allows you to maintain and synchronize a local store of a user''s mail folders without having to fetch all the folders of that mailbox from the server every time.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/mailboxfolder-delta?view=graph-rest-beta operationId: admin.exchange.mailboxes.mailbox.folders.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 mailboxFolder type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.mailboxFolder' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox x-ms-docs-grouped-path: - '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/childFolders/{mailboxFolder-id1}/items/delta()' - '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/childFolders/delta()' - '/admin/exchange/mailboxes/{mailbox-id}/folders/{mailboxFolder-id}/items/delta()' '/admin/exchange/mailboxes/{mailbox-id}/createImportSession': description: Provides operations to call the createImportSession method. post: tags: - admin.exchangeAdmin summary: Invoke action createImportSession description: Create a session to import an Exchange mailbox item using its FastTransfer stream (FTS) format. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/mailbox-createimportsession?view=graph-rest-beta operationId: admin.exchange.mailboxes.mailbox.createImportSession responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mailboxItemImportSession' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: action parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox '/admin/exchange/mailboxes/{mailbox-id}/exportItems': description: Provides operations to call the exportItems method. post: tags: - admin.exchangeAdmin summary: Invoke action exportItems description: Export Exchange mailboxItem objects in full-fidelity FastTransfer stream format for backup purposes. This item format can be restored to the same mailbox or a different one. You can export up to 20 items in a single export request. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/mailbox-exportitems?view=graph-rest-beta operationId: admin.exchange.mailboxes.mailbox.exportItems requestBody: description: Action parameters content: application/json: schema: type: object properties: ItemIds: 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: $ref: '#/components/schemas/microsoft.graph.exportItemResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-06-30' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: mailbox-id in: path description: The unique identifier of mailbox required: true schema: type: string x-ms-docs-key-type: mailbox /admin/exchange/mailboxes/$count: description: Provides operations to count the resources in the collection. get: tags: - admin.exchangeAdmin summary: Get the number of the resource operationId: admin.exchange.mailboxes.GetCount-490f 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' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs /admin/exchange/messageTraces: description: Provides operations to manage the messageTraces property of the microsoft.graph.exchangeAdmin entity. get: tags: - admin.exchangeAdmin summary: Get messageTraces from admin operationId: admin.exchange.ListMessageTraces 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.messageTraceCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - admin.exchangeAdmin summary: Create new navigation property to messageTraces for admin operationId: admin.exchange.CreateMessageTraces requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.messageTrace' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.messageTrace' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation '/admin/exchange/messageTraces/{messageTrace-id}': description: Provides operations to manage the messageTraces property of the microsoft.graph.exchangeAdmin entity. get: tags: - admin.exchangeAdmin summary: Get messageTraces from admin operationId: admin.exchange.GetMessageTraces parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.messageTrace' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation patch: tags: - admin.exchangeAdmin summary: Update the navigation property messageTraces in admin operationId: admin.exchange.UpdateMessageTraces requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.messageTrace' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.messageTrace' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation delete: tags: - admin.exchangeAdmin summary: Delete navigation property messageTraces for admin operationId: admin.exchange.DeleteMessageTraces parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation parameters: - name: messageTrace-id in: path description: The unique identifier of messageTrace required: true schema: type: string x-ms-docs-key-type: messageTrace '/admin/exchange/messageTraces/{messageTrace-id}/recipients': description: Provides operations to manage the recipients property of the microsoft.graph.messageTrace entity. get: tags: - admin.exchangeAdmin summary: Get recipients from admin operationId: admin.exchange.messageTraces.ListRecipients 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.messageRecipientCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - admin.exchangeAdmin summary: Create new navigation property to recipients for admin operationId: admin.exchange.messageTraces.CreateRecipients requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.messageRecipient' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.messageRecipient' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation parameters: - name: messageTrace-id in: path description: The unique identifier of messageTrace required: true schema: type: string x-ms-docs-key-type: messageTrace '/admin/exchange/messageTraces/{messageTrace-id}/recipients/{messageRecipient-id}': description: Provides operations to manage the recipients property of the microsoft.graph.messageTrace entity. get: tags: - admin.exchangeAdmin summary: Get recipients from admin operationId: admin.exchange.messageTraces.GetRecipients parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.messageRecipient' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation patch: tags: - admin.exchangeAdmin summary: Update the navigation property recipients in admin operationId: admin.exchange.messageTraces.UpdateRecipients requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.messageRecipient' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.messageRecipient' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation delete: tags: - admin.exchangeAdmin summary: Delete navigation property recipients for admin operationId: admin.exchange.messageTraces.DeleteRecipients parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation parameters: - name: messageTrace-id in: path description: The unique identifier of messageTrace required: true schema: type: string x-ms-docs-key-type: messageTrace - name: messageRecipient-id in: path description: The unique identifier of messageRecipient required: true schema: type: string x-ms-docs-key-type: messageRecipient '/admin/exchange/messageTraces/{messageTrace-id}/recipients/{messageRecipient-id}/events': description: Provides operations to manage the events property of the microsoft.graph.messageRecipient entity. get: tags: - admin.exchangeAdmin summary: Get events from admin operationId: admin.exchange.messageTraces.recipients.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.messageEventCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - admin.exchangeAdmin summary: Create new navigation property to events for admin operationId: admin.exchange.messageTraces.recipients.CreateEvents requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.messageEvent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.messageEvent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation parameters: - name: messageTrace-id in: path description: The unique identifier of messageTrace required: true schema: type: string x-ms-docs-key-type: messageTrace - name: messageRecipient-id in: path description: The unique identifier of messageRecipient required: true schema: type: string x-ms-docs-key-type: messageRecipient '/admin/exchange/messageTraces/{messageTrace-id}/recipients/{messageRecipient-id}/events/{messageEvent-id}': description: Provides operations to manage the events property of the microsoft.graph.messageRecipient entity. get: tags: - admin.exchangeAdmin summary: Get events from admin operationId: admin.exchange.messageTraces.recipients.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.messageEvent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation patch: tags: - admin.exchangeAdmin summary: Update the navigation property events in admin operationId: admin.exchange.messageTraces.recipients.UpdateEvents requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.messageEvent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.messageEvent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation delete: tags: - admin.exchangeAdmin summary: Delete navigation property events for admin operationId: admin.exchange.messageTraces.recipients.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' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs x-ms-docs-operation-type: operation parameters: - name: messageTrace-id in: path description: The unique identifier of messageTrace required: true schema: type: string x-ms-docs-key-type: messageTrace - name: messageRecipient-id in: path description: The unique identifier of messageRecipient required: true schema: type: string x-ms-docs-key-type: messageRecipient - name: messageEvent-id in: path description: The unique identifier of messageEvent required: true schema: type: string x-ms-docs-key-type: messageEvent '/admin/exchange/messageTraces/{messageTrace-id}/recipients/{messageRecipient-id}/events/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.exchangeAdmin summary: Get the number of the resource operationId: admin.exchange.messageTraces.recipients.events.GetCount-c50c 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' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs parameters: - name: messageTrace-id in: path description: The unique identifier of messageTrace required: true schema: type: string x-ms-docs-key-type: messageTrace - name: messageRecipient-id in: path description: The unique identifier of messageRecipient required: true schema: type: string x-ms-docs-key-type: messageRecipient '/admin/exchange/messageTraces/{messageTrace-id}/recipients/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.exchangeAdmin summary: Get the number of the resource operationId: admin.exchange.messageTraces.recipients.GetCount-dd19 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' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs parameters: - name: messageTrace-id in: path description: The unique identifier of messageTrace required: true schema: type: string x-ms-docs-key-type: messageTrace /admin/exchange/messageTraces/$count: description: Provides operations to count the resources in the collection. get: tags: - admin.exchangeAdmin summary: Get the number of the resource operationId: admin.exchange.messageTraces.GetCount-a68d 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' deprecated: true x-ms-deprecation: removalDate: '2021-11-15' date: '2021-08-19' version: 2021-08/PrivatePreview:importExport description: Private preview for Import Export APIs /admin/forms: description: Provides operations to manage the forms property of the microsoft.graph.admin entity. get: tags: - admin.adminForms summary: Get adminForms description: Read the properties and relationships of a adminForms object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/adminforms-get?view=graph-rest-beta operationId: admin.GetForms parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminForms' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminForms summary: Update adminForms description: Update the properties of a adminForms object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/adminforms-update?view=graph-rest-beta operationId: admin.UpdateForms requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminForms' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminForms' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminForms summary: Delete navigation property forms for admin operationId: admin.DeleteForms parameters: - 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 /admin/microsoft365Apps: description: Provides operations to manage the microsoft365Apps property of the microsoft.graph.admin entity. get: tags: - admin.adminMicrosoft365Apps summary: Get microsoft365Apps from admin description: A container for the Microsoft 365 apps admin functionality. operationId: admin.GetMicrosoft365Apps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminMicrosoft365Apps' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminMicrosoft365Apps summary: Update the navigation property microsoft365Apps in admin operationId: admin.UpdateMicrosoft365Apps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminMicrosoft365Apps' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminMicrosoft365Apps' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminMicrosoft365Apps summary: Delete navigation property microsoft365Apps for admin operationId: admin.DeleteMicrosoft365Apps parameters: - 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 /admin/microsoft365Apps/installationOptions: description: Provides operations to manage the installationOptions property of the microsoft.graph.adminMicrosoft365Apps entity. get: tags: - admin.adminMicrosoft365Apps summary: Get m365AppsInstallationOptions description: Read the properties and relationships of an m365AppsInstallationOptions object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/m365appsinstallationoptions-get?view=graph-rest-beta operationId: admin.microsoft365Apps.GetInstallationOptions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.m365AppsInstallationOptions' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminMicrosoft365Apps summary: Update m365AppsInstallationOptions description: Update the properties of an m365AppsInstallationOptions object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/m365appsinstallationoptions-update?view=graph-rest-beta operationId: admin.microsoft365Apps.UpdateInstallationOptions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.m365AppsInstallationOptions' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.m365AppsInstallationOptions' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminMicrosoft365Apps summary: Delete navigation property installationOptions for admin operationId: admin.microsoft365Apps.DeleteInstallationOptions parameters: - 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 /admin/people: description: Provides operations to manage the people property of the microsoft.graph.admin entity. get: tags: - admin.peopleAdminSettings summary: Get peopleAdminSettings description: Retrieve the properties and relationships of a peopleAdminSettings object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/peopleadminsettings-get?view=graph-rest-beta operationId: admin.GetPeople parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.peopleAdminSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.peopleAdminSettings summary: Update the navigation property people in admin operationId: admin.UpdatePeople requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.peopleAdminSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.peopleAdminSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.peopleAdminSettings summary: Delete navigation property people for admin operationId: admin.DeletePeople parameters: - 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 /admin/people/itemInsights: description: Provides operations to manage the itemInsights property of the microsoft.graph.peopleAdminSettings entity. get: tags: - admin.peopleAdminSettings summary: List itemInsights description: 'Get the properties of an insightsSettings object for displaying or returning item insights in an organization. To learn how to customize the privacy of item insights in an organization, see Customize item insights privacy in Microsoft Graph.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/peopleadminsettings-list-iteminsights?view=graph-rest-beta operationId: admin.people.GetItemInsights parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.insightsSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.peopleAdminSettings summary: Update insightsSettings description: "Update privacy settings to display or return the specified type of insights in an organization. The type of settings can be contact insights, item insights, or people insights. To learn more about customizing insights privacy for your organization, see:\n- Customize item insights privacy \n- Customize people insights privacy" externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/insightssettings-update?view=graph-rest-beta operationId: admin.people.UpdateItemInsights requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.insightsSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.insightsSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.peopleAdminSettings summary: Delete navigation property itemInsights for admin operationId: admin.people.DeleteItemInsights parameters: - 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 /admin/people/namePronunciation: description: Provides operations to manage the namePronunciation property of the microsoft.graph.peopleAdminSettings entity. get: tags: - admin.peopleAdminSettings summary: Get namePronunciationSettings description: Read the properties and relationships of a namePronunciationSettings object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/namepronunciationsettings-get?view=graph-rest-beta operationId: admin.people.GetNamePronunciation parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.namePronunciationSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.peopleAdminSettings summary: Update namePronunciationSettings description: Update the properties of a namePronunciationSettings object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/namepronunciationsettings-update?view=graph-rest-beta operationId: admin.people.UpdateNamePronunciation requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.namePronunciationSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.namePronunciationSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.peopleAdminSettings summary: Delete navigation property namePronunciation for admin operationId: admin.people.DeleteNamePronunciation parameters: - 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 /admin/people/profileCardProperties: description: Provides operations to manage the profileCardProperties property of the microsoft.graph.peopleAdminSettings entity. get: tags: - admin.peopleAdminSettings summary: List profileCardProperties description: Get a collection of profileCardProperty resources for an organization. Each resource is identified by its directoryPropertyName property. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/peopleadminsettings-list-profilecardproperties?view=graph-rest-beta operationId: admin.people.ListProfileCardProperties 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.profileCardPropertyCollectionResponse' 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: - admin.peopleAdminSettings summary: Create profileCardProperty description: 'Create a new profileCardProperty for an organization. The new property is identified by its directoryPropertyName property. For more information about how to add properties to the profile card for an organization, see Add or remove custom attributes on a profile card using the profile card API.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/peopleadminsettings-post-profilecardproperties?view=graph-rest-beta operationId: admin.people.CreateProfileCardProperties requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profileCardProperty' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profileCardProperty' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/admin/people/profileCardProperties/{profileCardProperty-id}': description: Provides operations to manage the profileCardProperties property of the microsoft.graph.peopleAdminSettings entity. get: tags: - admin.peopleAdminSettings summary: Get profileCardProperty description: Retrieve the properties of a profileCardProperty entity. The profileCardProperty is identified by its directoryPropertyName property. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/profilecardproperty-get?view=graph-rest-beta operationId: admin.people.GetProfileCardProperties parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profileCardProperty' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.peopleAdminSettings summary: Update profileCardProperty description: 'Update the properties of a profileCardProperty object, identified by its directoryPropertyName property.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/profilecardproperty-update?view=graph-rest-beta operationId: admin.people.UpdateProfileCardProperties requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profileCardProperty' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profileCardProperty' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.peopleAdminSettings summary: Delete profileCardProperty description: 'Delete the profileCardProperty object specified by its directoryPropertyName from the organization''s profile card, and remove any localized customizations for that property.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/profilecardproperty-delete?view=graph-rest-beta operationId: admin.people.DeleteProfileCardProperties parameters: - 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: profileCardProperty-id in: path description: The unique identifier of profileCardProperty required: true schema: type: string x-ms-docs-key-type: profileCardProperty /admin/people/profileCardProperties/$count: description: Provides operations to count the resources in the collection. get: tags: - admin.peopleAdminSettings summary: Get the number of the resource operationId: admin.people.profileCardProperties.GetCount-9f88 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' /admin/people/profilePropertySettings: description: Provides operations to manage the profilePropertySettings property of the microsoft.graph.peopleAdminSettings entity. get: tags: - admin.peopleAdminSettings summary: List profilePropertySettings description: Get a collection of profilePropertySetting objects that define the configuration for user profile properties in an organization. The id property identifies each resource object uniquely. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/peopleadminsettings-list-profilepropertysettings?view=graph-rest-beta operationId: admin.people.ListProfilePropertySettings 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.profilePropertySettingCollectionResponse' 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: - admin.peopleAdminSettings summary: Create profilePropertySetting description: Create a new profilePropertySetting object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/peopleadminsettings-post-profilepropertysettings?view=graph-rest-beta operationId: admin.people.CreateProfilePropertySettings requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profilePropertySetting' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profilePropertySetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/admin/people/profilePropertySettings/{profilePropertySetting-id}': description: Provides operations to manage the profilePropertySettings property of the microsoft.graph.peopleAdminSettings entity. get: tags: - admin.peopleAdminSettings summary: Get profilePropertySetting description: Read the properties and relationships of a profilePropertySetting object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/profilepropertysetting-get?view=graph-rest-beta operationId: admin.people.GetProfilePropertySettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profilePropertySetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.peopleAdminSettings summary: Update profilePropertySetting description: Update the properties of a profilePropertySetting object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/profilepropertysetting-update?view=graph-rest-beta operationId: admin.people.UpdateProfilePropertySettings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profilePropertySetting' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profilePropertySetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.peopleAdminSettings summary: Delete profilePropertySetting description: Delete a profilePropertySetting object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/profilepropertysetting-delete?view=graph-rest-beta operationId: admin.people.DeleteProfilePropertySettings parameters: - 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: profilePropertySetting-id in: path description: The unique identifier of profilePropertySetting required: true schema: type: string x-ms-docs-key-type: profilePropertySetting /admin/people/profilePropertySettings/$count: description: Provides operations to count the resources in the collection. get: tags: - admin.peopleAdminSettings summary: Get the number of the resource operationId: admin.people.profilePropertySettings.GetCount-5c10 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' /admin/people/profileSources: description: Provides operations to manage the profileSources property of the microsoft.graph.peopleAdminSettings entity. get: tags: - admin.peopleAdminSettings summary: List profileSources description: 'Get a list of the profileSource objects and their properties, which represent both external data sources and out-of-the-box Microsoft data sources configured for user profiles in an organization.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/peopleadminsettings-list-profilesources?view=graph-rest-beta operationId: admin.people.ListProfileSources 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.profileSourceCollectionResponse' 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: - admin.peopleAdminSettings summary: Create profileSource description: Create a new profileSource object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/peopleadminsettings-post-profilesources?view=graph-rest-beta operationId: admin.people.CreateProfileSources requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profileSource' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profileSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/admin/people/profileSources/{profileSource-id}': description: Provides operations to manage the profileSources property of the microsoft.graph.peopleAdminSettings entity. get: tags: - admin.peopleAdminSettings summary: Get profileSources from admin description: A collection of profile source settings configured by an administrator in an organization. operationId: admin.people.GetProfileSources parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profileSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.peopleAdminSettings summary: Update profileSource description: Update the properties of a profileSource object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/profilesource-update?view=graph-rest-beta operationId: admin.people.UpdateProfileSources requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profileSource' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profileSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.peopleAdminSettings summary: Delete profileSource description: Delete a profileSource object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/profilesource-delete?view=graph-rest-beta operationId: admin.people.DeleteProfileSources parameters: - 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: profileSource-id in: path description: The unique identifier of profileSource required: true schema: type: string x-ms-docs-key-type: profileSource x-ms-docs-grouped-path: - '/admin/people/profileSources(sourceId=''{sourceId}'')' '/admin/people/profileSources(sourceId=''{sourceId}'')': description: Provides operations to manage the profileSources property of the microsoft.graph.peopleAdminSettings entity. get: tags: - admin.peopleAdminSettings summary: Get profileSources from admin description: A collection of profile source settings configured by an administrator in an organization. operationId: admin.people.profileSources.GetBySourceId parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profileSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.peopleAdminSettings summary: Update profileSource description: Update the properties of a profileSource object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/profilesource-update?view=graph-rest-beta operationId: admin.people.profileSources.UpdateBySourceId requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profileSource' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.profileSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.peopleAdminSettings summary: Delete profileSource description: Delete a profileSource object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/profilesource-delete?view=graph-rest-beta operationId: admin.people.profileSources.DeleteBySourceId parameters: - 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: sourceId in: path description: Alternate key of profileSource required: true schema: type: string nullable: true x-ms-docs-grouped-path: - '/admin/people/profileSources/{profileSource-id}' /admin/people/profileSources/$count: description: Provides operations to count the resources in the collection. get: tags: - admin.peopleAdminSettings summary: Get the number of the resource operationId: admin.people.profileSources.GetCount-e997 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' /admin/people/pronouns: description: Provides operations to manage the pronouns property of the microsoft.graph.peopleAdminSettings entity. get: tags: - admin.peopleAdminSettings summary: List pronounsSettings description: 'Get the properties of the pronounsSettings resource for an organization. For more information on settings to manage pronouns support, see Manage pronouns settings for an organization using the Microsoft Graph API.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/peopleadminsettings-list-pronouns?view=graph-rest-beta operationId: admin.people.GetPronouns parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.pronounsSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.peopleAdminSettings summary: Update pronounsSettings description: 'Update the properties of a pronounsSettings object in an organization. For more information on settings to manage pronouns support, see Manage pronouns settings for an organization using the Microsoft Graph API.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/pronounssettings-update?view=graph-rest-beta operationId: admin.people.UpdatePronouns requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.pronounsSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.pronounsSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.peopleAdminSettings summary: Delete navigation property pronouns for admin operationId: admin.people.DeletePronouns parameters: - 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 /admin/reportSettings: description: Provides operations to manage the reportSettings property of the microsoft.graph.admin entity. get: tags: - admin.adminReportSettings summary: Get adminReportSettings description: Get the tenant-level settings for Microsoft 365 reports. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/adminreportsettings-get?view=graph-rest-beta operationId: admin.GetReportSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminReportSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminReportSettings summary: Update adminReportSettings description: Update tenant-level settings for Microsoft 365 reports. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/adminreportsettings-update?view=graph-rest-beta operationId: admin.UpdateReportSettings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminReportSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminReportSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminReportSettings summary: Delete navigation property reportSettings for admin operationId: admin.DeleteReportSettings parameters: - 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 /admin/serviceAnnouncement: description: Provides operations to manage the serviceAnnouncement property of the microsoft.graph.admin entity. get: tags: - admin.serviceAnnouncement summary: Get serviceAnnouncement from admin description: A container for service communications resources. Read-only. operationId: admin.GetServiceAnnouncement parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceAnnouncement' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.serviceAnnouncement summary: Update the navigation property serviceAnnouncement in admin operationId: admin.UpdateServiceAnnouncement requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceAnnouncement' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceAnnouncement' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.serviceAnnouncement summary: Delete navigation property serviceAnnouncement for admin operationId: admin.DeleteServiceAnnouncement parameters: - 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 /admin/serviceAnnouncement/healthOverviews: description: Provides operations to manage the healthOverviews property of the microsoft.graph.serviceAnnouncement entity. get: tags: - admin.serviceAnnouncement summary: List healthOverviews description: Retrieve the serviceHealth resources from the healthOverviews navigation property. This operation provides the health report of all subscribed services for a tenant. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/serviceannouncement-list-healthoverviews?view=graph-rest-beta operationId: admin.serviceAnnouncement.ListHealthOverviews 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.serviceHealthCollectionResponse' 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: - admin.serviceAnnouncement summary: Create new navigation property to healthOverviews for admin operationId: admin.serviceAnnouncement.CreateHealthOverviews requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceHealth' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceHealth' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}': description: Provides operations to manage the healthOverviews property of the microsoft.graph.serviceAnnouncement entity. get: tags: - admin.serviceAnnouncement summary: Get serviceHealth description: Retrieve the properties and relationships of a serviceHealth object. This operation provides the health information of a specified service for a tenant. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/servicehealth-get?view=graph-rest-beta operationId: admin.serviceAnnouncement.GetHealthOverviews parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceHealth' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.serviceAnnouncement summary: Update the navigation property healthOverviews in admin operationId: admin.serviceAnnouncement.UpdateHealthOverviews requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceHealth' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceHealth' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.serviceAnnouncement summary: Delete navigation property healthOverviews for admin operationId: admin.serviceAnnouncement.DeleteHealthOverviews parameters: - 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: serviceHealth-id in: path description: The unique identifier of serviceHealth required: true schema: type: string x-ms-docs-key-type: serviceHealth '/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues': description: Provides operations to manage the issues property of the microsoft.graph.serviceHealth entity. get: tags: - admin.serviceAnnouncement summary: Get issues from admin description: 'A collection of issues that happened on the service, with detailed information for each issue.' operationId: admin.serviceAnnouncement.healthOverviews.ListIssues 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.serviceHealthIssueCollectionResponse' 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: - admin.serviceAnnouncement summary: Create new navigation property to issues for admin operationId: admin.serviceAnnouncement.healthOverviews.CreateIssues requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceHealthIssue' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceHealthIssue' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: serviceHealth-id in: path description: The unique identifier of serviceHealth required: true schema: type: string x-ms-docs-key-type: serviceHealth '/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}': description: Provides operations to manage the issues property of the microsoft.graph.serviceHealth entity. get: tags: - admin.serviceAnnouncement summary: Get issues from admin description: 'A collection of issues that happened on the service, with detailed information for each issue.' operationId: admin.serviceAnnouncement.healthOverviews.GetIssues parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceHealthIssue' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.serviceAnnouncement summary: Update the navigation property issues in admin operationId: admin.serviceAnnouncement.healthOverviews.UpdateIssues requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceHealthIssue' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceHealthIssue' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.serviceAnnouncement summary: Delete navigation property issues for admin operationId: admin.serviceAnnouncement.healthOverviews.DeleteIssues parameters: - 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: serviceHealth-id in: path description: The unique identifier of serviceHealth required: true schema: type: string x-ms-docs-key-type: serviceHealth - name: serviceHealthIssue-id in: path description: The unique identifier of serviceHealthIssue required: true schema: type: string x-ms-docs-key-type: serviceHealthIssue '/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}/incidentReport()': description: Provides operations to call the incidentReport method. get: tags: - admin.serviceAnnouncement summary: Invoke function incidentReport description: Provide the Post-Incident Review (PIR) document of a specified service issue for tenant. An issue only with status of PostIncidentReviewPublished indicates that the PIR document exists for the issue. The operation returns an error if the specified issue doesn't exist for the tenant or if PIR document does not exist for the issue. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/servicehealthissue-incidentreport?view=graph-rest-beta operationId: admin.serviceAnnouncement.healthOverviews.serviceHealth.issues.serviceHealthIssue.incidentReport responses: 2XX: description: Success content: application/octet-stream: schema: type: object properties: value: type: string format: base64url nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: serviceHealth-id in: path description: The unique identifier of serviceHealth required: true schema: type: string x-ms-docs-key-type: serviceHealth - name: serviceHealthIssue-id in: path description: The unique identifier of serviceHealthIssue required: true schema: type: string x-ms-docs-key-type: serviceHealthIssue x-ms-docs-grouped-path: - '/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}/incidentReport()' '/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.serviceAnnouncement summary: Get the number of the resource operationId: admin.serviceAnnouncement.healthOverviews.issues.GetCount-fd80 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: serviceHealth-id in: path description: The unique identifier of serviceHealth required: true schema: type: string x-ms-docs-key-type: serviceHealth /admin/serviceAnnouncement/healthOverviews/$count: description: Provides operations to count the resources in the collection. get: tags: - admin.serviceAnnouncement summary: Get the number of the resource operationId: admin.serviceAnnouncement.healthOverviews.GetCount-51c2 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' /admin/serviceAnnouncement/issues: description: Provides operations to manage the issues property of the microsoft.graph.serviceAnnouncement entity. get: tags: - admin.serviceAnnouncement summary: List issues description: Retrieve serviceHealthIssue resources from the issues navigation property. This operation retrieves information about all service health issues that exist for the tenant. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/serviceannouncement-list-issues?view=graph-rest-beta operationId: admin.serviceAnnouncement.ListIssues 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.serviceHealthIssueCollectionResponse' 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: - admin.serviceAnnouncement summary: Create new navigation property to issues for admin operationId: admin.serviceAnnouncement.CreateIssues requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceHealthIssue' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceHealthIssue' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}': description: Provides operations to manage the issues property of the microsoft.graph.serviceAnnouncement entity. get: tags: - admin.serviceAnnouncement summary: Get serviceHealthIssue description: Retrieve the properties and relationships of a serviceHealthIssue object. This operation retrieves a specified service health issue for tenant. The operation returns an error if the issue does not exist for the tenant. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/servicehealthissue-get?view=graph-rest-beta operationId: admin.serviceAnnouncement.GetIssues parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceHealthIssue' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.serviceAnnouncement summary: Update the navigation property issues in admin operationId: admin.serviceAnnouncement.UpdateIssues requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceHealthIssue' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceHealthIssue' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.serviceAnnouncement summary: Delete navigation property issues for admin operationId: admin.serviceAnnouncement.DeleteIssues parameters: - 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: serviceHealthIssue-id in: path description: The unique identifier of serviceHealthIssue required: true schema: type: string x-ms-docs-key-type: serviceHealthIssue '/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}/incidentReport()': description: Provides operations to call the incidentReport method. get: tags: - admin.serviceAnnouncement summary: Invoke function incidentReport description: Provide the Post-Incident Review (PIR) document of a specified service issue for tenant. An issue only with status of PostIncidentReviewPublished indicates that the PIR document exists for the issue. The operation returns an error if the specified issue doesn't exist for the tenant or if PIR document does not exist for the issue. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/servicehealthissue-incidentreport?view=graph-rest-beta operationId: admin.serviceAnnouncement.issues.serviceHealthIssue.incidentReport responses: 2XX: description: Success content: application/octet-stream: schema: type: object properties: value: type: string format: base64url nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: serviceHealthIssue-id in: path description: The unique identifier of serviceHealthIssue required: true schema: type: string x-ms-docs-key-type: serviceHealthIssue x-ms-docs-grouped-path: - '/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}/incidentReport()' /admin/serviceAnnouncement/issues/$count: description: Provides operations to count the resources in the collection. get: tags: - admin.serviceAnnouncement summary: Get the number of the resource operationId: admin.serviceAnnouncement.issues.GetCount-e140 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' /admin/serviceAnnouncement/messages: description: Provides operations to manage the messages property of the microsoft.graph.serviceAnnouncement entity. get: tags: - admin.serviceAnnouncement summary: List messages description: Retrieve the serviceUpdateMessage resources from the messages navigation property. This operation retrieves all service update messages that exist for the tenant. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/serviceannouncement-list-messages?view=graph-rest-beta operationId: admin.serviceAnnouncement.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.serviceUpdateMessageCollectionResponse' 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: - admin.serviceAnnouncement summary: Create new navigation property to messages for admin operationId: admin.serviceAnnouncement.CreateMessages requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceUpdateMessage' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceUpdateMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}': description: Provides operations to manage the messages property of the microsoft.graph.serviceAnnouncement entity. get: tags: - admin.serviceAnnouncement summary: Get serviceUpdateMessage description: Retrieve the properties and relationships of a serviceUpdateMessage object. This operation retrieves a specified service update message for the tenant. The operation returns an error if the message does not exist for the tenant. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/serviceupdatemessage-get?view=graph-rest-beta operationId: admin.serviceAnnouncement.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.serviceUpdateMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.serviceAnnouncement summary: Update the navigation property messages in admin operationId: admin.serviceAnnouncement.UpdateMessages requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceUpdateMessage' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceUpdateMessage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.serviceAnnouncement summary: Delete navigation property messages for admin operationId: admin.serviceAnnouncement.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: serviceUpdateMessage-id in: path description: The unique identifier of serviceUpdateMessage required: true schema: type: string x-ms-docs-key-type: serviceUpdateMessage '/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments': description: Provides operations to manage the attachments property of the microsoft.graph.serviceUpdateMessage entity. get: tags: - admin.serviceAnnouncement summary: List attachments description: Get a list of attachments associated with a service message. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/serviceupdatemessage-list-attachments?view=graph-rest-beta operationId: admin.serviceAnnouncement.messages.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.serviceAnnouncementAttachmentCollectionResponse' 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: - admin.serviceAnnouncement summary: Create new navigation property to attachments for admin operationId: admin.serviceAnnouncement.messages.CreateAttachments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceAnnouncementAttachment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceAnnouncementAttachment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: serviceUpdateMessage-id in: path description: The unique identifier of serviceUpdateMessage required: true schema: type: string x-ms-docs-key-type: serviceUpdateMessage '/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}': description: Provides operations to manage the attachments property of the microsoft.graph.serviceUpdateMessage entity. get: tags: - admin.serviceAnnouncement summary: Get serviceAnnouncementAttachment description: Read the properties and relationships of a serviceAnnouncementAttachment object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/serviceannouncementattachment-get?view=graph-rest-beta operationId: admin.serviceAnnouncement.messages.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.serviceAnnouncementAttachment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.serviceAnnouncement summary: Update the navigation property attachments in admin operationId: admin.serviceAnnouncement.messages.UpdateAttachments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceAnnouncementAttachment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.serviceAnnouncementAttachment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.serviceAnnouncement summary: Delete navigation property attachments for admin operationId: admin.serviceAnnouncement.messages.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: serviceUpdateMessage-id in: path description: The unique identifier of serviceUpdateMessage required: true schema: type: string x-ms-docs-key-type: serviceUpdateMessage - name: serviceAnnouncementAttachment-id in: path description: The unique identifier of serviceAnnouncementAttachment required: true schema: type: string x-ms-docs-key-type: serviceAnnouncementAttachment '/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}/content': description: Provides operations to manage the media for the admin entity. get: tags: - admin.serviceAnnouncement summary: Get serviceAnnouncementAttachment description: Read the properties and relationships of a serviceAnnouncementAttachment object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/serviceannouncementattachment-get?view=graph-rest-beta operationId: admin.serviceAnnouncement.messages.GetAttachmentsContent 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: - admin.serviceAnnouncement summary: Update content for the navigation property attachments in admin description: The attachment content. operationId: admin.serviceAnnouncement.messages.UpdateAttachmentsContent 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.serviceAnnouncementAttachment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - admin.serviceAnnouncement summary: Delete content for the navigation property attachments in admin description: The attachment content. operationId: admin.serviceAnnouncement.messages.DeleteAttachmentsContent parameters: - 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: serviceUpdateMessage-id in: path description: The unique identifier of serviceUpdateMessage required: true schema: type: string x-ms-docs-key-type: serviceUpdateMessage - name: serviceAnnouncementAttachment-id in: path description: The unique identifier of serviceAnnouncementAttachment required: true schema: type: string x-ms-docs-key-type: serviceAnnouncementAttachment '/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.serviceAnnouncement summary: Get the number of the resource operationId: admin.serviceAnnouncement.messages.attachments.GetCount-e0ef 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: serviceUpdateMessage-id in: path description: The unique identifier of serviceUpdateMessage required: true schema: type: string x-ms-docs-key-type: serviceUpdateMessage '/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachmentsArchive': description: Provides operations to manage the media for the admin entity. get: tags: - admin.serviceAnnouncement summary: List attachments description: Get a list of attachments associated with a service message. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/serviceupdatemessage-list-attachments?view=graph-rest-beta operationId: admin.serviceAnnouncement.GetMessagesAttachmentsArchive 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: - admin.serviceAnnouncement summary: Update attachmentsArchive for the navigation property messages in admin description: The zip file of all attachments for a message. operationId: admin.serviceAnnouncement.UpdateMessagesAttachmentsArchive 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: - admin.serviceAnnouncement summary: Delete attachmentsArchive for the navigation property messages in admin description: The zip file of all attachments for a message. operationId: admin.serviceAnnouncement.DeleteMessagesAttachmentsArchive parameters: - 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: serviceUpdateMessage-id in: path description: The unique identifier of serviceUpdateMessage required: true schema: type: string x-ms-docs-key-type: serviceUpdateMessage /admin/serviceAnnouncement/messages/$count: description: Provides operations to count the resources in the collection. get: tags: - admin.serviceAnnouncement summary: Get the number of the resource operationId: admin.serviceAnnouncement.messages.GetCount-0cc9 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' /admin/serviceAnnouncement/messages/archive: description: Provides operations to call the archive method. post: tags: - admin.serviceAnnouncement summary: Invoke action archive description: Archive a list of serviceUpdateMessages for the signed in user. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/serviceupdatemessage-archive?view=graph-rest-beta operationId: admin.serviceAnnouncement.messages.archive requestBody: description: Action parameters content: application/json: schema: type: object properties: messageIds: type: array items: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: boolean default: false nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /admin/serviceAnnouncement/messages/favorite: description: Provides operations to call the favorite method. post: tags: - admin.serviceAnnouncement summary: Invoke action favorite description: Change the status of a list of serviceUpdateMessages to favorite for the signed in user. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/serviceupdatemessage-favorite?view=graph-rest-beta operationId: admin.serviceAnnouncement.messages.favorite requestBody: description: Action parameters content: application/json: schema: type: object properties: messageIds: type: array items: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: boolean default: false nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /admin/serviceAnnouncement/messages/markRead: description: Provides operations to call the markRead method. post: tags: - admin.serviceAnnouncement summary: Invoke action markRead description: Mark a list of serviceUpdateMessages as read for the signed in user. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/serviceupdatemessage-markread?view=graph-rest-beta operationId: admin.serviceAnnouncement.messages.markRead requestBody: description: Action parameters content: application/json: schema: type: object properties: messageIds: type: array items: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: boolean default: false nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /admin/serviceAnnouncement/messages/markUnread: description: Provides operations to call the markUnread method. post: tags: - admin.serviceAnnouncement summary: Invoke action markUnread description: Mark a list of serviceUpdateMessages as unread for the signed in user. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/serviceupdatemessage-markunread?view=graph-rest-beta operationId: admin.serviceAnnouncement.messages.markUnread requestBody: description: Action parameters content: application/json: schema: type: object properties: messageIds: type: array items: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: boolean default: false nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /admin/serviceAnnouncement/messages/unarchive: description: Provides operations to call the unarchive method. post: tags: - admin.serviceAnnouncement summary: Invoke action unarchive description: Unarchive a list of serviceUpdateMessages for the signed in user. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/serviceupdatemessage-unarchive?view=graph-rest-beta operationId: admin.serviceAnnouncement.messages.unarchive requestBody: description: Action parameters content: application/json: schema: type: object properties: messageIds: type: array items: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: boolean default: false nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /admin/serviceAnnouncement/messages/unfavorite: description: Provides operations to call the unfavorite method. post: tags: - admin.serviceAnnouncement summary: Invoke action unfavorite description: Remove the favorite status of serviceUpdateMessages for the signed in user. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/serviceupdatemessage-unfavorite?view=graph-rest-beta operationId: admin.serviceAnnouncement.messages.unfavorite requestBody: description: Action parameters content: application/json: schema: type: object properties: messageIds: type: array items: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: boolean default: false nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /admin/sharepoint: description: Provides operations to manage the sharepoint property of the microsoft.graph.admin entity. get: tags: - admin.sharepoint summary: Get sharepoint from admin operationId: admin.GetSharepoint parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sharepoint' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.sharepoint summary: Update the navigation property sharepoint in admin operationId: admin.UpdateSharepoint requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sharepoint' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sharepoint' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.sharepoint summary: Delete navigation property sharepoint for admin operationId: admin.DeleteSharepoint parameters: - 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 /admin/sharepoint/settings: description: Provides operations to manage the settings property of the microsoft.graph.sharepoint entity. get: tags: - admin.sharepoint summary: Get settings description: Get the tenant-level settings for SharePoint and OneDrive. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/sharepointsettings-get?view=graph-rest-beta operationId: admin.sharepoint.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.sharepointSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.sharepoint summary: Update settings description: Update one or more tenant-level settings for SharePoint and OneDrive. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/sharepointsettings-update?view=graph-rest-beta operationId: admin.sharepoint.UpdateSettings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sharepointSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sharepointSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.sharepoint summary: Delete navigation property settings for admin operationId: admin.sharepoint.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 /admin/teams: description: Provides operations to manage the teams property of the microsoft.graph.admin entity. get: tags: - admin.teamsAdminRoot summary: Get teams from admin description: Represents a collection of user configurations. operationId: admin.GetTeams parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAdministration.teamsAdminRoot' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.teamsAdminRoot summary: Update the navigation property teams in admin operationId: admin.UpdateTeams requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAdministration.teamsAdminRoot' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAdministration.teamsAdminRoot' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.teamsAdminRoot summary: Delete navigation property teams for admin operationId: admin.DeleteTeams parameters: - 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 /admin/teams/policy: description: Provides operations to manage the policy property of the microsoft.graph.teamsAdministration.teamsAdminRoot entity. get: tags: - admin.teamsAdminRoot summary: Get policy from admin operationId: admin.teams.GetPolicy parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAdministration.teamsPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.teamsAdminRoot summary: Update the navigation property policy in admin operationId: admin.teams.UpdatePolicy requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAdministration.teamsPolicyAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAdministration.teamsPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.teamsAdminRoot summary: Delete navigation property policy for admin operationId: admin.teams.DeletePolicy parameters: - 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 /admin/teams/userConfigurations: description: Provides operations to manage the userConfigurations property of the microsoft.graph.teamsAdministration.teamsAdminRoot entity. get: tags: - admin.teamsAdminRoot summary: List userConfigurations description: Get user configurations for all Teams users who belong to a tenant. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/teamsadministration-teamsadminroot-list-userconfigurations?view=graph-rest-beta operationId: admin.teams.ListUserConfigurations 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.teamsAdministration.teamsUserConfigurationCollectionResponse' 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: - admin.teamsAdminRoot summary: Create new navigation property to userConfigurations for admin operationId: admin.teams.CreateUserConfigurations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAdministration.teamsUserConfiguration' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAdministration.teamsUserConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/admin/teams/userConfigurations/{teamsUserConfiguration-id}': description: Provides operations to manage the userConfigurations property of the microsoft.graph.teamsAdministration.teamsAdminRoot entity. get: tags: - admin.teamsAdminRoot summary: Get teamsUserConfiguration description: Read the Teams user configurations for a specific user using their ID (the user's identifier). externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/teamsadministration-teamsuserconfiguration-get?view=graph-rest-beta operationId: admin.teams.GetUserConfigurations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAdministration.teamsUserConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.teamsAdminRoot summary: Update the navigation property userConfigurations in admin operationId: admin.teams.UpdateUserConfigurations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAdministration.teamsUserConfiguration' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAdministration.teamsUserConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.teamsAdminRoot summary: Delete navigation property userConfigurations for admin operationId: admin.teams.DeleteUserConfigurations parameters: - 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: teamsUserConfiguration-id in: path description: The unique identifier of teamsUserConfiguration required: true schema: type: string x-ms-docs-key-type: teamsUserConfiguration '/admin/teams/userConfigurations/{teamsUserConfiguration-id}/user': description: Provides operations to manage the user property of the microsoft.graph.teamsAdministration.teamsUserConfiguration entity. get: tags: - admin.teamsAdminRoot summary: Get user from admin description: Represents an Entra user account. operationId: admin.teams.userConfigurations.GetUser parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: 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: teamsUserConfiguration-id in: path description: The unique identifier of teamsUserConfiguration required: true schema: type: string x-ms-docs-key-type: teamsUserConfiguration '/admin/teams/userConfigurations/{teamsUserConfiguration-id}/user/mailboxSettings': get: tags: - admin.teamsAdminRoot summary: 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. For more information, see User preferences for languages and regional formats. Returned only on $select.' operationId: admin.teams.userConfigurations.user.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: - admin.teamsAdminRoot summary: Update property mailboxSettings value. operationId: admin.teams.userConfigurations.user.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: teamsUserConfiguration-id in: path description: The unique identifier of teamsUserConfiguration required: true schema: type: string x-ms-docs-key-type: teamsUserConfiguration '/admin/teams/userConfigurations/{teamsUserConfiguration-id}/user/serviceProvisioningErrors': get: tags: - admin.teamsAdminRoot summary: 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.' operationId: admin.teams.userConfigurations.user.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: teamsUserConfiguration-id in: path description: The unique identifier of teamsUserConfiguration required: true schema: type: string x-ms-docs-key-type: teamsUserConfiguration '/admin/teams/userConfigurations/{teamsUserConfiguration-id}/user/serviceProvisioningErrors/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.teamsAdminRoot summary: Get the number of the resource operationId: admin.teams.userConfigurations.user.ServiceProvisioningErrors.GetCount-7ffc 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: teamsUserConfiguration-id in: path description: The unique identifier of teamsUserConfiguration required: true schema: type: string x-ms-docs-key-type: teamsUserConfiguration /admin/teams/userConfigurations/$count: description: Provides operations to count the resources in the collection. get: tags: - admin.teamsAdminRoot summary: Get the number of the resource operationId: admin.teams.userConfigurations.GetCount-3ca6 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' /admin/todo: description: Provides operations to manage the todo property of the microsoft.graph.admin entity. get: tags: - admin.adminTodo summary: Get adminTodo description: Read the properties and relationships of a adminTodo object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/admintodo-get?view=graph-rest-beta operationId: admin.GetTodo parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminTodo' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminTodo summary: Update adminTodo description: Update the properties of a adminTodo object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/admintodo-update?view=graph-rest-beta operationId: admin.UpdateTodo requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminTodo' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminTodo' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminTodo summary: Delete navigation property todo for admin operationId: admin.DeleteTodo parameters: - 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 /admin/windows: description: Provides operations to manage the windows property of the microsoft.graph.admin entity. get: tags: - admin.adminWindows summary: Get windows from admin description: A container for all Windows administrator functionalities. Read-only. operationId: admin.GetWindows parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminWindows' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property windows in admin operationId: admin.UpdateWindows requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminWindows' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminWindows' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property windows for admin operationId: admin.DeleteWindows parameters: - 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 /admin/windows/updates: description: Provides operations to manage the updates property of the microsoft.graph.adminWindows entity. get: tags: - admin.adminWindows summary: Get updates from admin description: Entity that acts as a container for all Windows Update for Business deployment service functionalities. Read-only. operationId: admin.windows.GetUpdates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminWindowsUpdates' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property updates in admin operationId: admin.windows.UpdateUpdates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminWindowsUpdates' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.adminWindowsUpdates' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property updates for admin operationId: admin.windows.DeleteUpdates parameters: - 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 /admin/windows/updates/catalog: description: Provides operations to manage the catalog property of the microsoft.graph.adminWindowsUpdates entity. get: tags: - admin.adminWindows summary: Get catalog from admin description: Catalog of content that can be approved for deployment by Windows Autopatch. Read-only. operationId: admin.windows.updates.GetCatalog parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalog' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property catalog in admin operationId: admin.windows.updates.UpdateCatalog requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalog' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalog' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property catalog for admin operationId: admin.windows.updates.DeleteCatalog parameters: - 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 /admin/windows/updates/catalog/entries: description: Provides operations to manage the entries property of the microsoft.graph.windowsUpdates.catalog entity. get: tags: - admin.adminWindows summary: List entries description: 'Get a list of catalogEntry resources from the catalog. Currently, this operation returns entries of the featureUpdateCatalogEntry or qualityUpdateCatalog types, inherited from catalogEntry. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-catalog-list-entries?view=graph-rest-beta operationId: admin.windows.updates.catalog.ListEntries 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.windowsUpdates.catalogEntryCollectionResponse' 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: - admin.adminWindows summary: Create new navigation property to entries for admin operationId: admin.windows.updates.catalog.CreateEntries requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalogEntry' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalogEntry' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/admin/windows/updates/catalog/entries/{catalogEntry-id}': description: Provides operations to manage the entries property of the microsoft.graph.windowsUpdates.catalog entity. get: tags: - admin.adminWindows summary: Get entries from admin description: Lists the content that you can approve for deployment. Read-only. operationId: admin.windows.updates.catalog.GetEntries parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalogEntry' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property entries in admin operationId: admin.windows.updates.catalog.UpdateEntries requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalogEntry' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalogEntry' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property entries for admin operationId: admin.windows.updates.catalog.DeleteEntries parameters: - 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: catalogEntry-id in: path description: The unique identifier of catalogEntry required: true schema: type: string x-ms-docs-key-type: catalogEntry /admin/windows/updates/catalog/entries/$count: description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.catalog.entries.GetCount-b1f0 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' /admin/windows/updates/deploymentAudiences: description: Provides operations to manage the deploymentAudiences property of the microsoft.graph.adminWindowsUpdates entity. get: tags: - admin.adminWindows summary: List deploymentAudiences description: Get a list of deploymentAudience objects and their properties. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/adminwindowsupdates-list-deploymentaudiences?view=graph-rest-beta operationId: admin.windows.updates.ListDeploymentAudiences 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.windowsUpdates.deploymentAudienceCollectionResponse' 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: - admin.adminWindows summary: Create deploymentAudience description: Create a new deploymentAudience object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/adminwindowsupdates-post-deploymentaudiences?view=graph-rest-beta operationId: admin.windows.updates.CreateDeploymentAudiences requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentAudience' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentAudience' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}': description: Provides operations to manage the deploymentAudiences property of the microsoft.graph.adminWindowsUpdates entity. get: tags: - admin.adminWindows summary: Get deploymentAudience description: Read the properties and relationships of a deploymentAudience object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-deploymentaudience-get?view=graph-rest-beta operationId: admin.windows.updates.GetDeploymentAudiences parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentAudience' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property deploymentAudiences in admin operationId: admin.windows.updates.UpdateDeploymentAudiences requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentAudience' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentAudience' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete deploymentAudience description: Delete a deploymentAudience object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-deploymentaudience-delete?view=graph-rest-beta operationId: admin.windows.updates.DeleteDeploymentAudiences parameters: - 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: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/applicableContent': description: Provides operations to manage the applicableContent property of the microsoft.graph.windowsUpdates.deploymentAudience entity. get: tags: - admin.adminWindows summary: Get applicableContent from admin description: Content eligible to deploy to devices in the audience. Not nullable. Read-only. operationId: admin.windows.updates.deploymentAudiences.ListApplicableContent 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.windowsUpdates.applicableContentCollectionResponse' 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: - admin.adminWindows summary: Create new navigation property to applicableContent for admin operationId: admin.windows.updates.deploymentAudiences.CreateApplicableContent requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience x-ms-docs-grouped-path: - '/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/applicableContent/{applicableContent-catalogEntryId}': description: Provides operations to manage the applicableContent property of the microsoft.graph.windowsUpdates.deploymentAudience entity. get: tags: - admin.adminWindows summary: Get applicableContent from admin description: Content eligible to deploy to devices in the audience. Not nullable. Read-only. operationId: admin.windows.updates.deploymentAudiences.GetApplicableContent parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property applicableContent in admin operationId: admin.windows.updates.deploymentAudiences.UpdateApplicableContent requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property applicableContent for admin operationId: admin.windows.updates.deploymentAudiences.DeleteApplicableContent parameters: - 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: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience - name: applicableContent-catalogEntryId in: path description: The unique identifier of applicableContent required: true schema: type: string x-ms-docs-key-type: applicableContent x-ms-docs-grouped-path: - '/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/applicableContent/{applicableContent-catalogEntryId}/catalogEntry': description: Provides operations to manage the catalogEntry property of the microsoft.graph.windowsUpdates.applicableContent entity. get: tags: - admin.adminWindows summary: Get catalogEntry from admin description: Catalog entry for the update or content. operationId: admin.windows.updates.deploymentAudiences.applicableContent.GetCatalogEntry parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalogEntry' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience - name: applicableContent-catalogEntryId in: path description: The unique identifier of applicableContent required: true schema: type: string x-ms-docs-key-type: applicableContent x-ms-docs-grouped-path: - '/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/catalogEntry' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/catalogEntry' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/applicableContent/{applicableContent-catalogEntryId}/matchedDevices': description: Provides operations to manage the matchedDevices property of the microsoft.graph.windowsUpdates.applicableContent entity. get: tags: - admin.adminWindows summary: Get matchedDevices from admin description: Collection of devices and recommendations for applicable catalog content. operationId: admin.windows.updates.deploymentAudiences.applicableContent.ListMatchedDevices 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.windowsUpdates.applicableContentDeviceMatchCollectionResponse' 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: - admin.adminWindows summary: Create new navigation property to matchedDevices for admin operationId: admin.windows.updates.deploymentAudiences.applicableContent.CreateMatchedDevices requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContentDeviceMatch' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContentDeviceMatch' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience - name: applicableContent-catalogEntryId in: path description: The unique identifier of applicableContent required: true schema: type: string x-ms-docs-key-type: applicableContent x-ms-docs-grouped-path: - '/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}': description: Provides operations to manage the matchedDevices property of the microsoft.graph.windowsUpdates.applicableContent entity. get: tags: - admin.adminWindows summary: Get matchedDevices from admin description: Collection of devices and recommendations for applicable catalog content. operationId: admin.windows.updates.deploymentAudiences.applicableContent.GetMatchedDevices parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContentDeviceMatch' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property matchedDevices in admin operationId: admin.windows.updates.deploymentAudiences.applicableContent.UpdateMatchedDevices requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContentDeviceMatch' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContentDeviceMatch' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property matchedDevices for admin operationId: admin.windows.updates.deploymentAudiences.applicableContent.DeleteMatchedDevices parameters: - 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: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience - name: applicableContent-catalogEntryId in: path description: The unique identifier of applicableContent required: true schema: type: string x-ms-docs-key-type: applicableContent - name: applicableContentDeviceMatch-deviceId in: path description: The unique identifier of applicableContentDeviceMatch required: true schema: type: string x-ms-docs-key-type: applicableContentDeviceMatch x-ms-docs-grouped-path: - '/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.deploymentAudiences.applicableContent.matchedDevices.GetCount-23fc 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: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience - name: applicableContent-catalogEntryId in: path description: The unique identifier of applicableContent required: true schema: type: string x-ms-docs-key-type: applicableContent '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/applicableContent/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.deploymentAudiences.applicableContent.GetCount-a435 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: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions': description: Provides operations to manage the exclusions property of the microsoft.graph.windowsUpdates.deploymentAudience entity. get: tags: - admin.adminWindows summary: List deployment audience exclusions description: List the updatableAsset resources that are excluded from a deploymentAudience. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-deploymentaudience-list-exclusions?view=graph-rest-beta operationId: admin.windows.updates.deploymentAudiences.ListExclusions 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.windowsUpdates.updatableAssetCollectionResponse' 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: - admin.adminWindows summary: Create new navigation property to exclusions for admin operationId: admin.windows.updates.deploymentAudiences.CreateExclusions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience x-ms-docs-grouped-path: - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}': description: Provides operations to manage the exclusions property of the microsoft.graph.windowsUpdates.deploymentAudience entity. get: tags: - admin.adminWindows summary: Get exclusions from admin description: Specifies the assets to exclude from the audience. operationId: admin.windows.updates.deploymentAudiences.GetExclusions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property exclusions in admin operationId: admin.windows.updates.deploymentAudiences.UpdateExclusions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property exclusions for admin operationId: admin.windows.updates.deploymentAudiences.DeleteExclusions parameters: - 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: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers': description: Provides operations to call the addMembers method. post: tags: - admin.adminWindows summary: Invoke action addMembers description: 'Add members to an updatableAssetGroup. You can add azureADDevice resources as members, but may not add updatableAssetGroup resources as members. Adding a Microsoft Entra device as a member of an updatable asset group automatically creates an azureADDevice object, if it does not already exist. You can also use the method addMembersById to add members.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-beta operationId: admin.windows.updates.deploymentAudiences.deploymentAudience.exclusions.updatableAsset.addMembers requestBody: description: Action parameters content: application/json: schema: type: object properties: assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById': description: Provides operations to call the addMembersById method. post: tags: - admin.adminWindows summary: Invoke action addMembersById description: Add members of the same type to an updatableAssetGroup. You can also use the method addMembers to add members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-beta operationId: admin.windows.updates.deploymentAudiences.deploymentAudience.exclusions.updatableAsset.addMembersById requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string nullable: true memberEntityType: 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: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers': description: Provides operations to call the removeMembers method. post: tags: - admin.adminWindows summary: Invoke action removeMembers description: Remove members from an updatableAssetGroup. You can also use the method removeMembersById to remove members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembers?view=graph-rest-beta operationId: admin.windows.updates.deploymentAudiences.deploymentAudience.exclusions.updatableAsset.removeMembers requestBody: description: Action parameters content: application/json: schema: type: object properties: assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById': description: Provides operations to call the removeMembersById method. post: tags: - admin.adminWindows summary: Invoke action removeMembersById description: Remove members of the same type from an updatableAssetGroup. You can also use the method removeMembers to remove members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembersbyid?view=graph-rest-beta operationId: admin.windows.updates.deploymentAudiences.deploymentAudience.exclusions.updatableAsset.removeMembersById requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string nullable: true memberEntityType: 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: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.deploymentAudiences.exclusions.GetCount-49ad 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: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.enrollAssets': description: Provides operations to call the enrollAssets method. post: tags: - admin.adminWindows summary: Invoke action enrollAssets operationId: admin.windows.updates.deploymentAudiences.deploymentAudience.exclusions.enrollAssets requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssets' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssets - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssets' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById': description: Provides operations to call the enrollAssetsById method. post: tags: - admin.adminWindows summary: Invoke action enrollAssetsById operationId: admin.windows.updates.deploymentAudiences.deploymentAudience.exclusions.enrollAssetsById requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' memberEntityType: type: string nullable: true ids: type: array items: 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: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssetsById' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssetsById - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssetsById' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.unenrollAssets': description: Provides operations to call the unenrollAssets method. post: tags: - admin.adminWindows summary: Invoke action unenrollAssets operationId: admin.windows.updates.deploymentAudiences.deploymentAudience.exclusions.unenrollAssets requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssets' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssets - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssets' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById': description: Provides operations to call the unenrollAssetsById method. post: tags: - admin.adminWindows summary: Invoke action unenrollAssetsById operationId: admin.windows.updates.deploymentAudiences.deploymentAudience.exclusions.unenrollAssetsById requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' memberEntityType: type: string nullable: true ids: type: array items: 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: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssetsById' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssetsById - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssetsById' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members': description: Provides operations to manage the members property of the microsoft.graph.windowsUpdates.deploymentAudience entity. get: tags: - admin.adminWindows summary: List deployment audience members description: List the updatableAsset resources that are members of a deploymentAudience. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-deploymentaudience-list-members?view=graph-rest-beta operationId: admin.windows.updates.deploymentAudiences.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.windowsUpdates.updatableAssetCollectionResponse' 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: - admin.adminWindows summary: Create new navigation property to members for admin operationId: admin.windows.updates.deploymentAudiences.CreateMembers requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience x-ms-docs-grouped-path: - '/admin/windows/updates/deployments/{deployment-id}/audience/members' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}': description: Provides operations to manage the members property of the microsoft.graph.windowsUpdates.deploymentAudience entity. get: tags: - admin.adminWindows summary: Get members from admin description: Specifies the assets to include in the audience. operationId: admin.windows.updates.deploymentAudiences.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.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property members in admin operationId: admin.windows.updates.deploymentAudiences.UpdateMembers requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property members for admin operationId: admin.windows.updates.deploymentAudiences.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: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers': description: Provides operations to call the addMembers method. post: tags: - admin.adminWindows summary: Invoke action addMembers description: 'Add members to an updatableAssetGroup. You can add azureADDevice resources as members, but may not add updatableAssetGroup resources as members. Adding a Microsoft Entra device as a member of an updatable asset group automatically creates an azureADDevice object, if it does not already exist. You can also use the method addMembersById to add members.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-beta operationId: admin.windows.updates.deploymentAudiences.deploymentAudience.members.updatableAsset.addMembers requestBody: description: Action parameters content: application/json: schema: type: object properties: assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById': description: Provides operations to call the addMembersById method. post: tags: - admin.adminWindows summary: Invoke action addMembersById description: Add members of the same type to an updatableAssetGroup. You can also use the method addMembers to add members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-beta operationId: admin.windows.updates.deploymentAudiences.deploymentAudience.members.updatableAsset.addMembersById requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string nullable: true memberEntityType: 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: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers': description: Provides operations to call the removeMembers method. post: tags: - admin.adminWindows summary: Invoke action removeMembers description: Remove members from an updatableAssetGroup. You can also use the method removeMembersById to remove members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembers?view=graph-rest-beta operationId: admin.windows.updates.deploymentAudiences.deploymentAudience.members.updatableAsset.removeMembers requestBody: description: Action parameters content: application/json: schema: type: object properties: assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById': description: Provides operations to call the removeMembersById method. post: tags: - admin.adminWindows summary: Invoke action removeMembersById description: Remove members of the same type from an updatableAssetGroup. You can also use the method removeMembers to remove members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembersbyid?view=graph-rest-beta operationId: admin.windows.updates.deploymentAudiences.deploymentAudience.members.updatableAsset.removeMembersById requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string nullable: true memberEntityType: 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: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.deploymentAudiences.members.GetCount-26b3 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: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.enrollAssets': description: Provides operations to call the enrollAssets method. post: tags: - admin.adminWindows summary: Invoke action enrollAssets operationId: admin.windows.updates.deploymentAudiences.deploymentAudience.members.enrollAssets requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssets' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssets - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssets' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.enrollAssetsById': description: Provides operations to call the enrollAssetsById method. post: tags: - admin.adminWindows summary: Invoke action enrollAssetsById operationId: admin.windows.updates.deploymentAudiences.deploymentAudience.members.enrollAssetsById requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' memberEntityType: type: string nullable: true ids: type: array items: 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: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssetsById' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssetsById - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssetsById' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.unenrollAssets': description: Provides operations to call the unenrollAssets method. post: tags: - admin.adminWindows summary: Invoke action unenrollAssets operationId: admin.windows.updates.deploymentAudiences.deploymentAudience.members.unenrollAssets requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssets' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssets - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssets' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.unenrollAssetsById': description: Provides operations to call the unenrollAssetsById method. post: tags: - admin.adminWindows summary: Invoke action unenrollAssetsById operationId: admin.windows.updates.deploymentAudiences.deploymentAudience.members.unenrollAssetsById requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' memberEntityType: type: string nullable: true ids: type: array items: 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: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssetsById' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssetsById - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssetsById' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/microsoft.graph.windowsUpdates.updateAudience': description: Provides operations to call the updateAudience method. post: tags: - admin.adminWindows summary: Invoke action updateAudience description: 'Update the members and exclusions relationships of a deploymentAudience. Adding an azureADDevice to the members or exclusions collections of a deployment audience automatically creates a Microsoft Entra device object, if it doesn''t already exist. If the same updatableAsset gets included in the exclusions and members collections of a deploymentAudience, the deployment doesn''t apply to that asset. If all updatableAsset objects are the same type, you can also use the method updateAudienceById to update the deploymentAudience.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-deploymentaudience-updateaudience?view=graph-rest-beta operationId: admin.windows.updates.deploymentAudiences.deploymentAudience.updateAudience requestBody: description: Action parameters content: application/json: schema: type: object properties: addMembers: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' removeMembers: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' addExclusions: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' removeExclusions: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience x-ms-docs-grouped-path: - '/admin/windows/updates/deployments/{deployment-id}/audience/microsoft.graph.windowsUpdates.updateAudience' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/microsoft.graph.windowsUpdates.updateAudience' '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/microsoft.graph.windowsUpdates.updateAudienceById': description: Provides operations to call the updateAudienceById method. post: tags: - admin.adminWindows summary: Invoke action updateAudienceById description: 'Update the members and exclusions collections of a deploymentAudience with updatableAsset resources of the same type. Adding an azureADDevice to the members or exclusions collections of a deployment audience automatically creates a Microsoft Entra device object if it does not already exist. If the same updatableAsset gets included in the exclusions and members collections of a deploymentAudience, deployment will not apply to that asset. You can also use the method updateAudience to update the deploymentAudience.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-deploymentaudience-updateaudiencebyid?view=graph-rest-beta operationId: admin.windows.updates.deploymentAudiences.deploymentAudience.updateAudienceById requestBody: description: Action parameters content: application/json: schema: type: object properties: memberEntityType: type: string nullable: true addMembers: type: array items: type: string nullable: true removeMembers: type: array items: type: string nullable: true addExclusions: type: array items: type: string nullable: true removeExclusions: type: array items: 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: deploymentAudience-id in: path description: The unique identifier of deploymentAudience required: true schema: type: string x-ms-docs-key-type: deploymentAudience x-ms-docs-grouped-path: - '/admin/windows/updates/deployments/{deployment-id}/audience/microsoft.graph.windowsUpdates.updateAudienceById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/microsoft.graph.windowsUpdates.updateAudienceById' /admin/windows/updates/deploymentAudiences/$count: description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.deploymentAudiences.GetCount-88be 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' /admin/windows/updates/deployments: description: Provides operations to manage the deployments property of the microsoft.graph.adminWindowsUpdates entity. get: tags: - admin.adminWindows summary: List deployments description: Get a list of deployment objects and their properties. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/adminwindowsupdates-list-deployments?view=graph-rest-beta operationId: admin.windows.updates.ListDeployments 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.windowsUpdates.deploymentCollectionResponse' 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: - admin.adminWindows summary: Create deployment description: Create a new deployment object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/adminwindowsupdates-post-deployments?view=graph-rest-beta operationId: admin.windows.updates.CreateDeployments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deployment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deployment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/admin/windows/updates/deployments/{deployment-id}': description: Provides operations to manage the deployments property of the microsoft.graph.adminWindowsUpdates entity. get: tags: - admin.adminWindows summary: Get deployment description: Read the properties and relationships of a deployment object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-deployment-get?view=graph-rest-beta operationId: admin.windows.updates.GetDeployments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deployment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update deployment description: Update the properties of a deployment object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-deployment-update?view=graph-rest-beta operationId: admin.windows.updates.UpdateDeployments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deployment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deployment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete deployment description: Delete a deployment object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-deployment-delete?view=graph-rest-beta operationId: admin.windows.updates.DeleteDeployments parameters: - 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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment '/admin/windows/updates/deployments/{deployment-id}/audience': description: Provides operations to manage the audience property of the microsoft.graph.windowsUpdates.deployment entity. get: tags: - admin.adminWindows summary: Get audience from admin description: Specifies the audience to which content is deployed. operationId: admin.windows.updates.deployments.GetAudience parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentAudience' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property audience in admin operationId: admin.windows.updates.deployments.UpdateAudience requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentAudience' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentAudience' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property audience for admin operationId: admin.windows.updates.deployments.DeleteAudience parameters: - 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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment '/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent': description: Provides operations to manage the applicableContent property of the microsoft.graph.windowsUpdates.deploymentAudience entity. get: tags: - admin.adminWindows summary: Get applicableContent from admin description: Content eligible to deploy to devices in the audience. Not nullable. Read-only. operationId: admin.windows.updates.deployments.audience.ListApplicableContent 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.windowsUpdates.applicableContentCollectionResponse' 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: - admin.adminWindows summary: Create new navigation property to applicableContent for admin operationId: admin.windows.updates.deployments.audience.CreateApplicableContent requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/applicableContent' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent' '/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}': description: Provides operations to manage the applicableContent property of the microsoft.graph.windowsUpdates.deploymentAudience entity. get: tags: - admin.adminWindows summary: Get applicableContent from admin description: Content eligible to deploy to devices in the audience. Not nullable. Read-only. operationId: admin.windows.updates.deployments.audience.GetApplicableContent parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property applicableContent in admin operationId: admin.windows.updates.deployments.audience.UpdateApplicableContent requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property applicableContent for admin operationId: admin.windows.updates.deployments.audience.DeleteApplicableContent parameters: - 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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment - name: applicableContent-catalogEntryId in: path description: The unique identifier of applicableContent required: true schema: type: string x-ms-docs-key-type: applicableContent x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/applicableContent/{applicableContent-catalogEntryId}' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}' '/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/catalogEntry': description: Provides operations to manage the catalogEntry property of the microsoft.graph.windowsUpdates.applicableContent entity. get: tags: - admin.adminWindows summary: Get catalogEntry from admin description: Catalog entry for the update or content. operationId: admin.windows.updates.deployments.audience.applicableContent.GetCatalogEntry parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalogEntry' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment - name: applicableContent-catalogEntryId in: path description: The unique identifier of applicableContent required: true schema: type: string x-ms-docs-key-type: applicableContent x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/applicableContent/{applicableContent-catalogEntryId}/catalogEntry' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/catalogEntry' '/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices': description: Provides operations to manage the matchedDevices property of the microsoft.graph.windowsUpdates.applicableContent entity. get: tags: - admin.adminWindows summary: Get matchedDevices from admin description: Collection of devices and recommendations for applicable catalog content. operationId: admin.windows.updates.deployments.audience.applicableContent.ListMatchedDevices 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.windowsUpdates.applicableContentDeviceMatchCollectionResponse' 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: - admin.adminWindows summary: Create new navigation property to matchedDevices for admin operationId: admin.windows.updates.deployments.audience.applicableContent.CreateMatchedDevices requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContentDeviceMatch' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContentDeviceMatch' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment - name: applicableContent-catalogEntryId in: path description: The unique identifier of applicableContent required: true schema: type: string x-ms-docs-key-type: applicableContent x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/applicableContent/{applicableContent-catalogEntryId}/matchedDevices' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices' '/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}': description: Provides operations to manage the matchedDevices property of the microsoft.graph.windowsUpdates.applicableContent entity. get: tags: - admin.adminWindows summary: Get matchedDevices from admin description: Collection of devices and recommendations for applicable catalog content. operationId: admin.windows.updates.deployments.audience.applicableContent.GetMatchedDevices parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContentDeviceMatch' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property matchedDevices in admin operationId: admin.windows.updates.deployments.audience.applicableContent.UpdateMatchedDevices requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContentDeviceMatch' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContentDeviceMatch' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property matchedDevices for admin operationId: admin.windows.updates.deployments.audience.applicableContent.DeleteMatchedDevices parameters: - 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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment - name: applicableContent-catalogEntryId in: path description: The unique identifier of applicableContent required: true schema: type: string x-ms-docs-key-type: applicableContent - name: applicableContentDeviceMatch-deviceId in: path description: The unique identifier of applicableContentDeviceMatch required: true schema: type: string x-ms-docs-key-type: applicableContentDeviceMatch x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}' '/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.deployments.audience.applicableContent.matchedDevices.GetCount-da1e 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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment - name: applicableContent-catalogEntryId in: path description: The unique identifier of applicableContent required: true schema: type: string x-ms-docs-key-type: applicableContent '/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.deployments.audience.applicableContent.GetCount-f187 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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions': description: Provides operations to manage the exclusions property of the microsoft.graph.windowsUpdates.deploymentAudience entity. get: tags: - admin.adminWindows summary: Get exclusions from admin description: Specifies the assets to exclude from the audience. operationId: admin.windows.updates.deployments.audience.ListExclusions 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.windowsUpdates.updatableAssetCollectionResponse' 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: - admin.adminWindows summary: Create new navigation property to exclusions for admin operationId: admin.windows.updates.deployments.audience.CreateExclusions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions' '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}': description: Provides operations to manage the exclusions property of the microsoft.graph.windowsUpdates.deploymentAudience entity. get: tags: - admin.adminWindows summary: Get exclusions from admin description: Specifies the assets to exclude from the audience. operationId: admin.windows.updates.deployments.audience.GetExclusions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property exclusions in admin operationId: admin.windows.updates.deployments.audience.UpdateExclusions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property exclusions for admin operationId: admin.windows.updates.deployments.audience.DeleteExclusions parameters: - 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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}' '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers': description: Provides operations to call the addMembers method. post: tags: - admin.adminWindows summary: Invoke action addMembers description: 'Add members to an updatableAssetGroup. You can add azureADDevice resources as members, but may not add updatableAssetGroup resources as members. Adding a Microsoft Entra device as a member of an updatable asset group automatically creates an azureADDevice object, if it does not already exist. You can also use the method addMembersById to add members.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-beta operationId: admin.windows.updates.deployments.deployment.audience.exclusions.updatableAsset.addMembers requestBody: description: Action parameters content: application/json: schema: type: object properties: assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById': description: Provides operations to call the addMembersById method. post: tags: - admin.adminWindows summary: Invoke action addMembersById description: Add members of the same type to an updatableAssetGroup. You can also use the method addMembers to add members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-beta operationId: admin.windows.updates.deployments.deployment.audience.exclusions.updatableAsset.addMembersById requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string nullable: true memberEntityType: 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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers': description: Provides operations to call the removeMembers method. post: tags: - admin.adminWindows summary: Invoke action removeMembers description: Remove members from an updatableAssetGroup. You can also use the method removeMembersById to remove members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembers?view=graph-rest-beta operationId: admin.windows.updates.deployments.deployment.audience.exclusions.updatableAsset.removeMembers requestBody: description: Action parameters content: application/json: schema: type: object properties: assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById': description: Provides operations to call the removeMembersById method. post: tags: - admin.adminWindows summary: Invoke action removeMembersById description: Remove members of the same type from an updatableAssetGroup. You can also use the method removeMembers to remove members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembersbyid?view=graph-rest-beta operationId: admin.windows.updates.deployments.deployment.audience.exclusions.updatableAsset.removeMembersById requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string nullable: true memberEntityType: 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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.deployments.audience.exclusions.GetCount-06bd 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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssets': description: Provides operations to call the enrollAssets method. post: tags: - admin.adminWindows summary: Invoke action enrollAssets operationId: admin.windows.updates.deployments.deployment.audience.exclusions.enrollAssets requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssets' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssets - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssets' '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById': description: Provides operations to call the enrollAssetsById method. post: tags: - admin.adminWindows summary: Invoke action enrollAssetsById operationId: admin.windows.updates.deployments.deployment.audience.exclusions.enrollAssetsById requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' memberEntityType: type: string nullable: true ids: type: array items: 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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssetsById' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssetsById - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssetsById' '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssets': description: Provides operations to call the unenrollAssets method. post: tags: - admin.adminWindows summary: Invoke action unenrollAssets operationId: admin.windows.updates.deployments.deployment.audience.exclusions.unenrollAssets requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssets' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssets - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssets' '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById': description: Provides operations to call the unenrollAssetsById method. post: tags: - admin.adminWindows summary: Invoke action unenrollAssetsById operationId: admin.windows.updates.deployments.deployment.audience.exclusions.unenrollAssetsById requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' memberEntityType: type: string nullable: true ids: type: array items: 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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssetsById' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssetsById - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssetsById' '/admin/windows/updates/deployments/{deployment-id}/audience/members': description: Provides operations to manage the members property of the microsoft.graph.windowsUpdates.deploymentAudience entity. get: tags: - admin.adminWindows summary: Get members from admin description: Specifies the assets to include in the audience. operationId: admin.windows.updates.deployments.audience.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.windowsUpdates.updatableAssetCollectionResponse' 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: - admin.adminWindows summary: Create new navigation property to members for admin operationId: admin.windows.updates.deployments.audience.CreateMembers requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members' '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}': description: Provides operations to manage the members property of the microsoft.graph.windowsUpdates.deploymentAudience entity. get: tags: - admin.adminWindows summary: Get members from admin description: Specifies the assets to include in the audience. operationId: admin.windows.updates.deployments.audience.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.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property members in admin operationId: admin.windows.updates.deployments.audience.UpdateMembers requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property members for admin operationId: admin.windows.updates.deployments.audience.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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}' '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers': description: Provides operations to call the addMembers method. post: tags: - admin.adminWindows summary: Invoke action addMembers description: 'Add members to an updatableAssetGroup. You can add azureADDevice resources as members, but may not add updatableAssetGroup resources as members. Adding a Microsoft Entra device as a member of an updatable asset group automatically creates an azureADDevice object, if it does not already exist. You can also use the method addMembersById to add members.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-beta operationId: admin.windows.updates.deployments.deployment.audience.members.updatableAsset.addMembers requestBody: description: Action parameters content: application/json: schema: type: object properties: assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById': description: Provides operations to call the addMembersById method. post: tags: - admin.adminWindows summary: Invoke action addMembersById description: Add members of the same type to an updatableAssetGroup. You can also use the method addMembers to add members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-beta operationId: admin.windows.updates.deployments.deployment.audience.members.updatableAsset.addMembersById requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string nullable: true memberEntityType: 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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers': description: Provides operations to call the removeMembers method. post: tags: - admin.adminWindows summary: Invoke action removeMembers description: Remove members from an updatableAssetGroup. You can also use the method removeMembersById to remove members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembers?view=graph-rest-beta operationId: admin.windows.updates.deployments.deployment.audience.members.updatableAsset.removeMembers requestBody: description: Action parameters content: application/json: schema: type: object properties: assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById': description: Provides operations to call the removeMembersById method. post: tags: - admin.adminWindows summary: Invoke action removeMembersById description: Remove members of the same type from an updatableAssetGroup. You can also use the method removeMembers to remove members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembersbyid?view=graph-rest-beta operationId: admin.windows.updates.deployments.deployment.audience.members.updatableAsset.removeMembersById requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string nullable: true memberEntityType: 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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' '/admin/windows/updates/deployments/{deployment-id}/audience/members/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.deployments.audience.members.GetCount-d488 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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssets': description: Provides operations to call the enrollAssets method. post: tags: - admin.adminWindows summary: Invoke action enrollAssets operationId: admin.windows.updates.deployments.deployment.audience.members.enrollAssets requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssets' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssets - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssets' '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssetsById': description: Provides operations to call the enrollAssetsById method. post: tags: - admin.adminWindows summary: Invoke action enrollAssetsById operationId: admin.windows.updates.deployments.deployment.audience.members.enrollAssetsById requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' memberEntityType: type: string nullable: true ids: type: array items: 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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssetsById - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssetsById' '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssets': description: Provides operations to call the unenrollAssets method. post: tags: - admin.adminWindows summary: Invoke action unenrollAssets operationId: admin.windows.updates.deployments.deployment.audience.members.unenrollAssets requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssets' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssets - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssets' '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssetsById': description: Provides operations to call the unenrollAssetsById method. post: tags: - admin.adminWindows summary: Invoke action unenrollAssetsById operationId: admin.windows.updates.deployments.deployment.audience.members.unenrollAssetsById requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' memberEntityType: type: string nullable: true ids: type: array items: 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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssetsById - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssetsById' '/admin/windows/updates/deployments/{deployment-id}/audience/microsoft.graph.windowsUpdates.updateAudience': description: Provides operations to call the updateAudience method. post: tags: - admin.adminWindows summary: Invoke action updateAudience description: 'Update the members and exclusions relationships of a deploymentAudience. Adding an azureADDevice to the members or exclusions collections of a deployment audience automatically creates a Microsoft Entra device object, if it doesn''t already exist. If the same updatableAsset gets included in the exclusions and members collections of a deploymentAudience, the deployment doesn''t apply to that asset. If all updatableAsset objects are the same type, you can also use the method updateAudienceById to update the deploymentAudience.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-deploymentaudience-updateaudience?view=graph-rest-beta operationId: admin.windows.updates.deployments.deployment.audience.updateAudience requestBody: description: Action parameters content: application/json: schema: type: object properties: addMembers: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' removeMembers: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' addExclusions: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' removeExclusions: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/microsoft.graph.windowsUpdates.updateAudience' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/microsoft.graph.windowsUpdates.updateAudience' '/admin/windows/updates/deployments/{deployment-id}/audience/microsoft.graph.windowsUpdates.updateAudienceById': description: Provides operations to call the updateAudienceById method. post: tags: - admin.adminWindows summary: Invoke action updateAudienceById description: 'Update the members and exclusions collections of a deploymentAudience with updatableAsset resources of the same type. Adding an azureADDevice to the members or exclusions collections of a deployment audience automatically creates a Microsoft Entra device object if it does not already exist. If the same updatableAsset gets included in the exclusions and members collections of a deploymentAudience, deployment will not apply to that asset. You can also use the method updateAudience to update the deploymentAudience.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-deploymentaudience-updateaudiencebyid?view=graph-rest-beta operationId: admin.windows.updates.deployments.deployment.audience.updateAudienceById requestBody: description: Action parameters content: application/json: schema: type: object properties: memberEntityType: type: string nullable: true addMembers: type: array items: type: string nullable: true removeMembers: type: array items: type: string nullable: true addExclusions: type: array items: type: string nullable: true removeExclusions: type: array items: 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: deployment-id in: path description: The unique identifier of deployment required: true schema: type: string x-ms-docs-key-type: deployment x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/microsoft.graph.windowsUpdates.updateAudienceById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/microsoft.graph.windowsUpdates.updateAudienceById' /admin/windows/updates/deployments/$count: description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.deployments.GetCount-cef5 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' /admin/windows/updates/products: description: Provides operations to manage the products property of the microsoft.graph.adminWindowsUpdates entity. get: tags: - admin.adminWindows summary: Get products from admin description: A collection of Windows products. operationId: admin.windows.updates.ListProducts 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.windowsUpdates.productCollectionResponse' 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: - admin.adminWindows summary: Create new navigation property to products for admin operationId: admin.windows.updates.CreateProducts requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.product' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.product' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/admin/windows/updates/products/{product-id}': description: Provides operations to manage the products property of the microsoft.graph.adminWindowsUpdates entity. get: tags: - admin.adminWindows summary: Get products from admin description: A collection of Windows products. operationId: admin.windows.updates.GetProducts parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.product' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property products in admin operationId: admin.windows.updates.UpdateProducts requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.product' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.product' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property products for admin operationId: admin.windows.updates.DeleteProducts parameters: - 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: product-id in: path description: The unique identifier of product required: true schema: type: string x-ms-docs-key-type: product '/admin/windows/updates/products/{product-id}/editions': description: Provides operations to manage the editions property of the microsoft.graph.windowsUpdates.product entity. get: tags: - admin.adminWindows summary: Get editions from admin description: Represents an edition of a particular Windows product. operationId: admin.windows.updates.products.ListEditions 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.windowsUpdates.editionCollectionResponse' 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: - admin.adminWindows summary: Create new navigation property to editions for admin operationId: admin.windows.updates.products.CreateEditions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.edition' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.edition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: product-id in: path description: The unique identifier of product required: true schema: type: string x-ms-docs-key-type: product '/admin/windows/updates/products/{product-id}/editions/{edition-id}': description: Provides operations to manage the editions property of the microsoft.graph.windowsUpdates.product entity. get: tags: - admin.adminWindows summary: Get editions from admin description: Represents an edition of a particular Windows product. operationId: admin.windows.updates.products.GetEditions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.edition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property editions in admin operationId: admin.windows.updates.products.UpdateEditions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.edition' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.edition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property editions for admin operationId: admin.windows.updates.products.DeleteEditions parameters: - 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: product-id in: path description: The unique identifier of product required: true schema: type: string x-ms-docs-key-type: product - name: edition-id in: path description: The unique identifier of edition required: true schema: type: string x-ms-docs-key-type: edition '/admin/windows/updates/products/{product-id}/editions/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.products.editions.GetCount-b2e5 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: product-id in: path description: The unique identifier of product required: true schema: type: string x-ms-docs-key-type: product '/admin/windows/updates/products/{product-id}/knownIssues': description: Provides operations to manage the knownIssues property of the microsoft.graph.windowsUpdates.product entity. get: tags: - admin.adminWindows summary: Get knownIssues from admin description: Represents a known issue related to a Windows product. operationId: admin.windows.updates.products.ListKnownIssues 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.windowsUpdates.knownIssueCollectionResponse' 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: - admin.adminWindows summary: Create new navigation property to knownIssues for admin operationId: admin.windows.updates.products.CreateKnownIssues requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.knownIssue' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.knownIssue' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: product-id in: path description: The unique identifier of product required: true schema: type: string x-ms-docs-key-type: product '/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}': description: Provides operations to manage the knownIssues property of the microsoft.graph.windowsUpdates.product entity. get: tags: - admin.adminWindows summary: Get knownIssues from admin description: Represents a known issue related to a Windows product. operationId: admin.windows.updates.products.GetKnownIssues parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.knownIssue' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property knownIssues in admin operationId: admin.windows.updates.products.UpdateKnownIssues requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.knownIssue' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.knownIssue' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property knownIssues for admin operationId: admin.windows.updates.products.DeleteKnownIssues parameters: - 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: product-id in: path description: The unique identifier of product required: true schema: type: string x-ms-docs-key-type: product - name: knownIssue-id in: path description: The unique identifier of knownIssue required: true schema: type: string x-ms-docs-key-type: knownIssue '/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}/originatingKnowledgeBaseArticle': description: Provides operations to manage the originatingKnowledgeBaseArticle property of the microsoft.graph.windowsUpdates.knownIssue entity. get: tags: - admin.adminWindows summary: Get originatingKnowledgeBaseArticle from admin description: Knowledge base article associated with the release when the known issue was first reported. operationId: admin.windows.updates.products.knownIssues.GetOriginatingKnowledgeBaseArticle parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.knowledgeBaseArticle' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property originatingKnowledgeBaseArticle in admin operationId: admin.windows.updates.products.knownIssues.UpdateOriginatingKnowledgeBaseArticle requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.knowledgeBaseArticle' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.knowledgeBaseArticle' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property originatingKnowledgeBaseArticle for admin operationId: admin.windows.updates.products.knownIssues.DeleteOriginatingKnowledgeBaseArticle parameters: - 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: product-id in: path description: The unique identifier of product required: true schema: type: string x-ms-docs-key-type: product - name: knownIssue-id in: path description: The unique identifier of knownIssue required: true schema: type: string x-ms-docs-key-type: knownIssue '/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}/resolvingKnowledgeBaseArticle': description: Provides operations to manage the resolvingKnowledgeBaseArticle property of the microsoft.graph.windowsUpdates.knownIssue entity. get: tags: - admin.adminWindows summary: Get resolvingKnowledgeBaseArticle from admin description: Knowledge base article associated with the release when the known issue was resolved or mitigated. operationId: admin.windows.updates.products.knownIssues.GetResolvingKnowledgeBaseArticle parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.knowledgeBaseArticle' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property resolvingKnowledgeBaseArticle in admin operationId: admin.windows.updates.products.knownIssues.UpdateResolvingKnowledgeBaseArticle requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.knowledgeBaseArticle' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.knowledgeBaseArticle' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property resolvingKnowledgeBaseArticle for admin operationId: admin.windows.updates.products.knownIssues.DeleteResolvingKnowledgeBaseArticle parameters: - 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: product-id in: path description: The unique identifier of product required: true schema: type: string x-ms-docs-key-type: product - name: knownIssue-id in: path description: The unique identifier of knownIssue required: true schema: type: string x-ms-docs-key-type: knownIssue '/admin/windows/updates/products/{product-id}/knownIssues/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.products.knownIssues.GetCount-6815 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: product-id in: path description: The unique identifier of product required: true schema: type: string x-ms-docs-key-type: product '/admin/windows/updates/products/{product-id}/microsoft.graph.windowsUpdates.getKnownIssuesByTimeRange(daysInPast={daysInPast},includeAllActive=@includeAllActive)': description: Provides operations to call the getKnownIssuesByTimeRange method. get: tags: - admin.adminWindows summary: Invoke function getKnownIssuesByTimeRange description: Get known issues related to a particular product based on a specified timeframe in the past. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-product-getknownissuesbytimerange?view=graph-rest-beta operationId: admin.windows.updates.products.product.getKnownIssuesByTimeRange 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 knownIssue type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.knownIssue' 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: product-id in: path description: The unique identifier of product required: true schema: type: string x-ms-docs-key-type: product - name: daysInPast in: path description: 'Usage: daysInPast={daysInPast}' required: true schema: maximum: 2147483647 minimum: -2147483648 type: number format: int32 - name: includeAllActive in: query description: 'Usage: includeAllActive=@includeAllActive' schema: type: boolean default: false nullable: true '/admin/windows/updates/products/{product-id}/revisions': description: Provides operations to manage the revisions property of the microsoft.graph.windowsUpdates.product entity. get: tags: - admin.adminWindows summary: Get revisions from admin description: Represents a product revision. operationId: admin.windows.updates.products.ListRevisions 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.windowsUpdates.productRevisionCollectionResponse' 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: - admin.adminWindows summary: Create new navigation property to revisions for admin operationId: admin.windows.updates.products.CreateRevisions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.productRevision' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.productRevision' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: product-id in: path description: The unique identifier of product required: true schema: type: string x-ms-docs-key-type: product '/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}': description: Provides operations to manage the revisions property of the microsoft.graph.windowsUpdates.product entity. get: tags: - admin.adminWindows summary: Get revisions from admin description: Represents a product revision. operationId: admin.windows.updates.products.GetRevisions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.productRevision' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property revisions in admin operationId: admin.windows.updates.products.UpdateRevisions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.productRevision' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.productRevision' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property revisions for admin operationId: admin.windows.updates.products.DeleteRevisions parameters: - 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: product-id in: path description: The unique identifier of product required: true schema: type: string x-ms-docs-key-type: product - name: productRevision-id in: path description: The unique identifier of productRevision required: true schema: type: string x-ms-docs-key-type: productRevision '/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}/catalogEntry': description: Provides operations to manage the catalogEntry property of the microsoft.graph.windowsUpdates.productRevision entity. get: tags: - admin.adminWindows summary: Get catalogEntry from admin operationId: admin.windows.updates.products.revisions.GetCatalogEntry parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalogEntry' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property catalogEntry in admin operationId: admin.windows.updates.products.revisions.UpdateCatalogEntry requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalogEntry' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalogEntry' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property catalogEntry for admin operationId: admin.windows.updates.products.revisions.DeleteCatalogEntry parameters: - 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: product-id in: path description: The unique identifier of product required: true schema: type: string x-ms-docs-key-type: product - name: productRevision-id in: path description: The unique identifier of productRevision required: true schema: type: string x-ms-docs-key-type: productRevision '/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}/knowledgeBaseArticle': description: Provides operations to manage the knowledgeBaseArticle property of the microsoft.graph.windowsUpdates.productRevision entity. get: tags: - admin.adminWindows summary: Get knowledgeBaseArticle from admin description: The knowledge base article associated with the product revision. operationId: admin.windows.updates.products.revisions.GetKnowledgeBaseArticle parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.knowledgeBaseArticle' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property knowledgeBaseArticle in admin operationId: admin.windows.updates.products.revisions.UpdateKnowledgeBaseArticle requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.knowledgeBaseArticle' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.knowledgeBaseArticle' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property knowledgeBaseArticle for admin operationId: admin.windows.updates.products.revisions.DeleteKnowledgeBaseArticle parameters: - 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: product-id in: path description: The unique identifier of product required: true schema: type: string x-ms-docs-key-type: product - name: productRevision-id in: path description: The unique identifier of productRevision required: true schema: type: string x-ms-docs-key-type: productRevision '/admin/windows/updates/products/{product-id}/revisions/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.products.revisions.GetCount-15e9 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: product-id in: path description: The unique identifier of product required: true schema: type: string x-ms-docs-key-type: product /admin/windows/updates/products/$count: description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.products.GetCount-9918 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' '/admin/windows/updates/products/microsoft.graph.windowsUpdates.findByCatalogId(catalogID=''{catalogID}'')': description: Provides operations to call the findByCatalogId method. get: tags: - admin.adminWindows summary: Invoke function findByCatalogId operationId: admin.windows.updates.products.findByCatalogId 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 product type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.product' 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: catalogID in: path description: 'Usage: catalogID=''{catalogID}''' required: true schema: type: string nullable: true '/admin/windows/updates/products/microsoft.graph.windowsUpdates.findByKbNumber(kbNumber={kbNumber})': description: Provides operations to call the findByKbNumber method. get: tags: - admin.adminWindows summary: Invoke function findByKbNumber operationId: admin.windows.updates.products.findByKbNumber 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 product type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.product' 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: kbNumber in: path description: 'Usage: kbNumber={kbNumber}' required: true schema: maximum: 2147483647 minimum: -2147483648 type: number format: int32 /admin/windows/updates/resourceConnections: description: Provides operations to manage the resourceConnections property of the microsoft.graph.adminWindowsUpdates entity. get: tags: - admin.adminWindows summary: List resourceConnections description: Get a list of the resourceConnection objects and their properties. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/adminwindowsupdates-list-resourceconnections?view=graph-rest-beta operationId: admin.windows.updates.ListResourceConnections 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.windowsUpdates.resourceConnectionCollectionResponse' 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: - admin.adminWindows summary: Create operationalInsightsConnection description: Create a new operationalInsightsConnection object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/adminwindowsupdates-post-resourceconnections-operationalinsightsconnection?view=graph-rest-beta operationId: admin.windows.updates.CreateResourceConnections requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.resourceConnection' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.resourceConnection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/admin/windows/updates/resourceConnections/{resourceConnection-id}': description: Provides operations to manage the resourceConnections property of the microsoft.graph.adminWindowsUpdates entity. get: tags: - admin.adminWindows summary: Get resourceConnection description: Read the properties and relationships of a resourceConnection object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-resourceconnection-get?view=graph-rest-beta operationId: admin.windows.updates.GetResourceConnections parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.resourceConnection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property resourceConnections in admin operationId: admin.windows.updates.UpdateResourceConnections requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.resourceConnection' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.resourceConnection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete resourceConnection description: Delete a resourceConnection object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-resourceconnection-delete?view=graph-rest-beta operationId: admin.windows.updates.DeleteResourceConnections parameters: - 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: resourceConnection-id in: path description: The unique identifier of resourceConnection required: true schema: type: string x-ms-docs-key-type: resourceConnection /admin/windows/updates/resourceConnections/$count: description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.resourceConnections.GetCount-5db8 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' /admin/windows/updates/updatableAssets: description: Provides operations to manage the updatableAssets property of the microsoft.graph.adminWindowsUpdates entity. get: tags: - admin.adminWindows summary: List updatableAssets description: 'Get a list of updatableAsset objects and their properties. Listing updatable assets returns updatableAsset resources of the following derived types: azureADDevice and updatableAssetGroup. Use list azureADDevice resources or list updatableAssetGroup resources to filter and get resources of only one of the derived types.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/adminwindowsupdates-list-updatableassets?view=graph-rest-beta operationId: admin.windows.updates.ListUpdatableAssets 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.windowsUpdates.updatableAssetCollectionResponse' 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: - admin.adminWindows summary: Create updatableAssetGroup description: Create a new updatableAssetGroup object. The updatableAssetGroup resource inherits from updatableAsset. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/adminwindowsupdates-post-updatableassets-updatableassetgroup?view=graph-rest-beta operationId: admin.windows.updates.CreateUpdatableAssets requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/admin/windows/updates/updatableAssets/{updatableAsset-id}': description: Provides operations to manage the updatableAssets property of the microsoft.graph.adminWindowsUpdates entity. get: tags: - admin.adminWindows summary: Get updatableAssetGroup description: Read the properties and relationships of an updatableAssetGroup object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-get?view=graph-rest-beta operationId: admin.windows.updates.GetUpdatableAssets parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property updatableAssets in admin operationId: admin.windows.updates.UpdateUpdatableAssets requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete updatableAsset description: Delete an updatableAsset object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableasset-delete?view=graph-rest-beta operationId: admin.windows.updates.DeleteUpdatableAssets parameters: - 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: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers': description: Provides operations to call the addMembers method. post: tags: - admin.adminWindows summary: Invoke action addMembers description: 'Add members to an updatableAssetGroup. You can add azureADDevice resources as members, but may not add updatableAssetGroup resources as members. Adding a Microsoft Entra device as a member of an updatable asset group automatically creates an azureADDevice object, if it does not already exist. You can also use the method addMembersById to add members.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-beta operationId: admin.windows.updates.updatableAssets.updatableAsset.addMembers requestBody: description: Action parameters content: application/json: schema: type: object properties: assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById': description: Provides operations to call the addMembersById method. post: tags: - admin.adminWindows summary: Invoke action addMembersById description: Add members of the same type to an updatableAssetGroup. You can also use the method addMembers to add members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-beta operationId: admin.windows.updates.updatableAssets.updatableAsset.addMembersById requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string nullable: true memberEntityType: 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: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers': description: Provides operations to call the removeMembers method. post: tags: - admin.adminWindows summary: Invoke action removeMembers description: Remove members from an updatableAssetGroup. You can also use the method removeMembersById to remove members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembers?view=graph-rest-beta operationId: admin.windows.updates.updatableAssets.updatableAsset.removeMembers requestBody: description: Action parameters content: application/json: schema: type: object properties: assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById': description: Provides operations to call the removeMembersById method. post: tags: - admin.adminWindows summary: Invoke action removeMembersById description: Remove members of the same type from an updatableAssetGroup. You can also use the method removeMembers to remove members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembersbyid?view=graph-rest-beta operationId: admin.windows.updates.updatableAssets.updatableAsset.removeMembersById requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string nullable: true memberEntityType: 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: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' /admin/windows/updates/updatableAssets/$count: description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.updatableAssets.GetCount-a46b 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' /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssets: description: Provides operations to call the enrollAssets method. post: tags: - admin.adminWindows summary: Invoke action enrollAssets description: 'Enroll updatableAsset resources in update management by Windows Autopatch. You can enroll an azureADDevice resource in update management, but may not enroll an updatableAssetGroup in update management. Enrolling a Microsoft Entra device in update management automatically creates an azureADDevice object if it does not already exist. You can also use the method enrollAssetsById to enroll assets.' operationId: admin.windows.updates.updatableAssets.enrollAssets requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 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: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssets' /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssetsById: description: Provides operations to call the enrollAssetsById method. post: tags: - admin.adminWindows summary: Invoke action enrollAssetsById description: Enroll updatableAsset resources of the same type in update management by Windows Autopatch. You can also use the method enrollAssets to enroll assets. operationId: admin.windows.updates.updatableAssets.enrollAssetsById requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' memberEntityType: type: string nullable: true ids: type: array items: 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 x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssetsById' /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssets: description: Provides operations to call the unenrollAssets method. post: tags: - admin.adminWindows summary: Invoke action unenrollAssets description: Unenroll updatableAsset resources from update management by Windows Autopatch. You can also use the method unenrollAssetsById to unenroll assets. operationId: admin.windows.updates.updatableAssets.unenrollAssets requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 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: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssets' /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssetsById: description: Provides operations to call the unenrollAssetsById method. post: tags: - admin.adminWindows summary: Invoke action unenrollAssetsById description: Unenroll updatableAsset resources of the same type from update management by Windows Autopatch. You can also use the method unenrollAssets to unenroll assets. operationId: admin.windows.updates.updatableAssets.unenrollAssetsById requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' memberEntityType: type: string nullable: true ids: type: array items: 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 x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssetsById' /admin/windows/updates/updatePolicies: description: Provides operations to manage the updatePolicies property of the microsoft.graph.adminWindowsUpdates entity. get: tags: - admin.adminWindows summary: List updatePolicy description: Get a list of updatePolicy objects and their properties. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/adminwindowsupdates-list-updatepolicies?view=graph-rest-beta operationId: admin.windows.updates.ListUpdatePolicies 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.windowsUpdates.updatePolicyCollectionResponse' 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: - admin.adminWindows summary: Create updatePolicy description: Create a new updatePolicy object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/adminwindowsupdates-post-updatepolicies?view=graph-rest-beta operationId: admin.windows.updates.CreateUpdatePolicies requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatePolicy' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatePolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/admin/windows/updates/updatePolicies/{updatePolicy-id}': description: Provides operations to manage the updatePolicies property of the microsoft.graph.adminWindowsUpdates entity. get: tags: - admin.adminWindows summary: Get updatePolicy description: Read the properties and relationships of an updatePolicy object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatepolicy-get?view=graph-rest-beta operationId: admin.windows.updates.GetUpdatePolicies parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatePolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update updatePolicy description: Update the properties of an updatePolicy object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatepolicy-update?view=graph-rest-beta operationId: admin.windows.updates.UpdateUpdatePolicies requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatePolicy' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatePolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete updatePolicy description: Delete an updatePolicy object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatepolicy-delete?view=graph-rest-beta operationId: admin.windows.updates.DeleteUpdatePolicies parameters: - 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience': description: Provides operations to manage the audience property of the microsoft.graph.windowsUpdates.updatePolicy entity. get: tags: - admin.adminWindows summary: Get audience from admin description: Specifies the audience to target. operationId: admin.windows.updates.updatePolicies.GetAudience parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentAudience' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property audience in admin operationId: admin.windows.updates.updatePolicies.UpdateAudience requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentAudience' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.deploymentAudience' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property audience for admin operationId: admin.windows.updates.updatePolicies.DeleteAudience parameters: - 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent': description: Provides operations to manage the applicableContent property of the microsoft.graph.windowsUpdates.deploymentAudience entity. get: tags: - admin.adminWindows summary: Get applicableContent from admin description: Content eligible to deploy to devices in the audience. Not nullable. Read-only. operationId: admin.windows.updates.updatePolicies.audience.ListApplicableContent 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.windowsUpdates.applicableContentCollectionResponse' 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: - admin.adminWindows summary: Create new navigation property to applicableContent for admin operationId: admin.windows.updates.updatePolicies.audience.CreateApplicableContent requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/applicableContent' - '/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}': description: Provides operations to manage the applicableContent property of the microsoft.graph.windowsUpdates.deploymentAudience entity. get: tags: - admin.adminWindows summary: Get applicableContent from admin description: Content eligible to deploy to devices in the audience. Not nullable. Read-only. operationId: admin.windows.updates.updatePolicies.audience.GetApplicableContent parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property applicableContent in admin operationId: admin.windows.updates.updatePolicies.audience.UpdateApplicableContent requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property applicableContent for admin operationId: admin.windows.updates.updatePolicies.audience.DeleteApplicableContent parameters: - 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy - name: applicableContent-catalogEntryId in: path description: The unique identifier of applicableContent required: true schema: type: string x-ms-docs-key-type: applicableContent x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/applicableContent/{applicableContent-catalogEntryId}' - '/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/catalogEntry': description: Provides operations to manage the catalogEntry property of the microsoft.graph.windowsUpdates.applicableContent entity. get: tags: - admin.adminWindows summary: Get catalogEntry from admin description: Catalog entry for the update or content. operationId: admin.windows.updates.updatePolicies.audience.applicableContent.GetCatalogEntry parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.catalogEntry' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy - name: applicableContent-catalogEntryId in: path description: The unique identifier of applicableContent required: true schema: type: string x-ms-docs-key-type: applicableContent x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/applicableContent/{applicableContent-catalogEntryId}/catalogEntry' - '/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/catalogEntry' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices': description: Provides operations to manage the matchedDevices property of the microsoft.graph.windowsUpdates.applicableContent entity. get: tags: - admin.adminWindows summary: Get matchedDevices from admin description: Collection of devices and recommendations for applicable catalog content. operationId: admin.windows.updates.updatePolicies.audience.applicableContent.ListMatchedDevices 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.windowsUpdates.applicableContentDeviceMatchCollectionResponse' 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: - admin.adminWindows summary: Create new navigation property to matchedDevices for admin operationId: admin.windows.updates.updatePolicies.audience.applicableContent.CreateMatchedDevices requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContentDeviceMatch' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContentDeviceMatch' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy - name: applicableContent-catalogEntryId in: path description: The unique identifier of applicableContent required: true schema: type: string x-ms-docs-key-type: applicableContent x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/applicableContent/{applicableContent-catalogEntryId}/matchedDevices' - '/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}': description: Provides operations to manage the matchedDevices property of the microsoft.graph.windowsUpdates.applicableContent entity. get: tags: - admin.adminWindows summary: Get matchedDevices from admin description: Collection of devices and recommendations for applicable catalog content. operationId: admin.windows.updates.updatePolicies.audience.applicableContent.GetMatchedDevices parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContentDeviceMatch' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property matchedDevices in admin operationId: admin.windows.updates.updatePolicies.audience.applicableContent.UpdateMatchedDevices requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContentDeviceMatch' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.applicableContentDeviceMatch' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property matchedDevices for admin operationId: admin.windows.updates.updatePolicies.audience.applicableContent.DeleteMatchedDevices parameters: - 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy - name: applicableContent-catalogEntryId in: path description: The unique identifier of applicableContent required: true schema: type: string x-ms-docs-key-type: applicableContent - name: applicableContentDeviceMatch-deviceId in: path description: The unique identifier of applicableContentDeviceMatch required: true schema: type: string x-ms-docs-key-type: applicableContentDeviceMatch x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}' - '/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.updatePolicies.audience.applicableContent.matchedDevices.GetCount-e6ca 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy - name: applicableContent-catalogEntryId in: path description: The unique identifier of applicableContent required: true schema: type: string x-ms-docs-key-type: applicableContent '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.updatePolicies.audience.applicableContent.GetCount-b642 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions': description: Provides operations to manage the exclusions property of the microsoft.graph.windowsUpdates.deploymentAudience entity. get: tags: - admin.adminWindows summary: Get exclusions from admin description: Specifies the assets to exclude from the audience. operationId: admin.windows.updates.updatePolicies.audience.ListExclusions 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.windowsUpdates.updatableAssetCollectionResponse' 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: - admin.adminWindows summary: Create new navigation property to exclusions for admin operationId: admin.windows.updates.updatePolicies.audience.CreateExclusions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}': description: Provides operations to manage the exclusions property of the microsoft.graph.windowsUpdates.deploymentAudience entity. get: tags: - admin.adminWindows summary: Get exclusions from admin description: Specifies the assets to exclude from the audience. operationId: admin.windows.updates.updatePolicies.audience.GetExclusions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property exclusions in admin operationId: admin.windows.updates.updatePolicies.audience.UpdateExclusions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property exclusions for admin operationId: admin.windows.updates.updatePolicies.audience.DeleteExclusions parameters: - 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers': description: Provides operations to call the addMembers method. post: tags: - admin.adminWindows summary: Invoke action addMembers description: 'Add members to an updatableAssetGroup. You can add azureADDevice resources as members, but may not add updatableAssetGroup resources as members. Adding a Microsoft Entra device as a member of an updatable asset group automatically creates an azureADDevice object, if it does not already exist. You can also use the method addMembersById to add members.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-beta operationId: admin.windows.updates.updatePolicies.updatePolicy.audience.exclusions.updatableAsset.addMembers requestBody: description: Action parameters content: application/json: schema: type: object properties: assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById': description: Provides operations to call the addMembersById method. post: tags: - admin.adminWindows summary: Invoke action addMembersById description: Add members of the same type to an updatableAssetGroup. You can also use the method addMembers to add members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-beta operationId: admin.windows.updates.updatePolicies.updatePolicy.audience.exclusions.updatableAsset.addMembersById requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string nullable: true memberEntityType: 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers': description: Provides operations to call the removeMembers method. post: tags: - admin.adminWindows summary: Invoke action removeMembers description: Remove members from an updatableAssetGroup. You can also use the method removeMembersById to remove members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembers?view=graph-rest-beta operationId: admin.windows.updates.updatePolicies.updatePolicy.audience.exclusions.updatableAsset.removeMembers requestBody: description: Action parameters content: application/json: schema: type: object properties: assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById': description: Provides operations to call the removeMembersById method. post: tags: - admin.adminWindows summary: Invoke action removeMembersById description: Remove members of the same type from an updatableAssetGroup. You can also use the method removeMembers to remove members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembersbyid?view=graph-rest-beta operationId: admin.windows.updates.updatePolicies.updatePolicy.audience.exclusions.updatableAsset.removeMembersById requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string nullable: true memberEntityType: 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.updatePolicies.audience.exclusions.GetCount-83cb 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssets': description: Provides operations to call the enrollAssets method. post: tags: - admin.adminWindows summary: Invoke action enrollAssets operationId: admin.windows.updates.updatePolicies.updatePolicy.audience.exclusions.enrollAssets requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssets' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssets - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssets' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById': description: Provides operations to call the enrollAssetsById method. post: tags: - admin.adminWindows summary: Invoke action enrollAssetsById operationId: admin.windows.updates.updatePolicies.updatePolicy.audience.exclusions.enrollAssetsById requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' memberEntityType: type: string nullable: true ids: type: array items: 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssetsById' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssetsById - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssetsById' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssets': description: Provides operations to call the unenrollAssets method. post: tags: - admin.adminWindows summary: Invoke action unenrollAssets operationId: admin.windows.updates.updatePolicies.updatePolicy.audience.exclusions.unenrollAssets requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssets' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssets - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssets' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById': description: Provides operations to call the unenrollAssetsById method. post: tags: - admin.adminWindows summary: Invoke action unenrollAssetsById operationId: admin.windows.updates.updatePolicies.updatePolicy.audience.exclusions.unenrollAssetsById requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' memberEntityType: type: string nullable: true ids: type: array items: 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssetsById' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssetsById - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssetsById' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members': description: Provides operations to manage the members property of the microsoft.graph.windowsUpdates.deploymentAudience entity. get: tags: - admin.adminWindows summary: Get members from admin description: Specifies the assets to include in the audience. operationId: admin.windows.updates.updatePolicies.audience.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.windowsUpdates.updatableAssetCollectionResponse' 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: - admin.adminWindows summary: Create new navigation property to members for admin operationId: admin.windows.updates.updatePolicies.audience.CreateMembers requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members' - '/admin/windows/updates/deployments/{deployment-id}/audience/members' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}': description: Provides operations to manage the members property of the microsoft.graph.windowsUpdates.deploymentAudience entity. get: tags: - admin.adminWindows summary: Get members from admin description: Specifies the assets to include in the audience. operationId: admin.windows.updates.updatePolicies.audience.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.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update the navigation property members in admin operationId: admin.windows.updates.updatePolicies.audience.UpdateMembers requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete navigation property members for admin operationId: admin.windows.updates.updatePolicies.audience.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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers': description: Provides operations to call the addMembers method. post: tags: - admin.adminWindows summary: Invoke action addMembers description: 'Add members to an updatableAssetGroup. You can add azureADDevice resources as members, but may not add updatableAssetGroup resources as members. Adding a Microsoft Entra device as a member of an updatable asset group automatically creates an azureADDevice object, if it does not already exist. You can also use the method addMembersById to add members.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-beta operationId: admin.windows.updates.updatePolicies.updatePolicy.audience.members.updatableAsset.addMembers requestBody: description: Action parameters content: application/json: schema: type: object properties: assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembers' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById': description: Provides operations to call the addMembersById method. post: tags: - admin.adminWindows summary: Invoke action addMembersById description: Add members of the same type to an updatableAssetGroup. You can also use the method addMembers to add members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-beta operationId: admin.windows.updates.updatePolicies.updatePolicy.audience.members.updatableAsset.addMembersById requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string nullable: true memberEntityType: 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.addMembersById' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers': description: Provides operations to call the removeMembers method. post: tags: - admin.adminWindows summary: Invoke action removeMembers description: Remove members from an updatableAssetGroup. You can also use the method removeMembersById to remove members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembers?view=graph-rest-beta operationId: admin.windows.updates.updatePolicies.updatePolicy.audience.members.updatableAsset.removeMembers requestBody: description: Action parameters content: application/json: schema: type: object properties: assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembers' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById': description: Provides operations to call the removeMembersById method. post: tags: - admin.adminWindows summary: Invoke action removeMembersById description: Remove members of the same type from an updatableAssetGroup. You can also use the method removeMembers to remove members. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembersbyid?view=graph-rest-beta operationId: admin.windows.updates.updatePolicies.updatePolicy.audience.members.updatableAsset.removeMembersById requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string nullable: true memberEntityType: 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy - name: updatableAsset-id in: path description: The unique identifier of updatableAsset required: true schema: type: string x-ms-docs-key-type: updatableAsset x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/updatableAssets/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/microsoft.graph.windowsUpdates.removeMembersById' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.updatePolicies.audience.members.GetCount-a523 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssets': description: Provides operations to call the enrollAssets method. post: tags: - admin.adminWindows summary: Invoke action enrollAssets operationId: admin.windows.updates.updatePolicies.updatePolicy.audience.members.enrollAssets requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssets' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssets - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssets' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssetsById': description: Provides operations to call the enrollAssetsById method. post: tags: - admin.adminWindows summary: Invoke action enrollAssetsById operationId: admin.windows.updates.updatePolicies.updatePolicy.audience.members.enrollAssetsById requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' memberEntityType: type: string nullable: true ids: type: array items: 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.enrollAssetsById' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.enrollAssetsById - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.enrollAssetsById' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssets': description: Provides operations to call the unenrollAssets method. post: tags: - admin.adminWindows summary: Invoke action unenrollAssets operationId: admin.windows.updates.updatePolicies.updatePolicy.audience.members.unenrollAssets requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' assets: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssets' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssets' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssets - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssets' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssetsById': description: Provides operations to call the unenrollAssetsById method. post: tags: - admin.adminWindows summary: Invoke action unenrollAssetsById operationId: admin.windows.updates.updatePolicies.updatePolicy.audience.members.unenrollAssetsById requestBody: description: Action parameters content: application/json: schema: type: object properties: updateCategory: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updateCategory' memberEntityType: type: string nullable: true ids: type: array items: 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/members/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById' - '/admin/windows/updates/deployments/{deployment-id}/audience/members/microsoft.graph.windowsUpdates.unenrollAssetsById' - /admin/windows/updates/updatableAssets/microsoft.graph.windowsUpdates.unenrollAssetsById - '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/microsoft.graph.windowsUpdates.unenrollAssetsById' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/microsoft.graph.windowsUpdates.updateAudience': description: Provides operations to call the updateAudience method. post: tags: - admin.adminWindows summary: Invoke action updateAudience description: 'Update the members and exclusions relationships of a deploymentAudience. Adding an azureADDevice to the members or exclusions collections of a deployment audience automatically creates a Microsoft Entra device object, if it doesn''t already exist. If the same updatableAsset gets included in the exclusions and members collections of a deploymentAudience, the deployment doesn''t apply to that asset. If all updatableAsset objects are the same type, you can also use the method updateAudienceById to update the deploymentAudience.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-deploymentaudience-updateaudience?view=graph-rest-beta operationId: admin.windows.updates.updatePolicies.updatePolicy.audience.updateAudience requestBody: description: Action parameters content: application/json: schema: type: object properties: addMembers: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' removeMembers: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' addExclusions: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' removeExclusions: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatableAsset' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/microsoft.graph.windowsUpdates.updateAudience' - '/admin/windows/updates/deployments/{deployment-id}/audience/microsoft.graph.windowsUpdates.updateAudience' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/microsoft.graph.windowsUpdates.updateAudienceById': description: Provides operations to call the updateAudienceById method. post: tags: - admin.adminWindows summary: Invoke action updateAudienceById description: 'Update the members and exclusions collections of a deploymentAudience with updatableAsset resources of the same type. Adding an azureADDevice to the members or exclusions collections of a deployment audience automatically creates a Microsoft Entra device object if it does not already exist. If the same updatableAsset gets included in the exclusions and members collections of a deploymentAudience, deployment will not apply to that asset. You can also use the method updateAudience to update the deploymentAudience.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-deploymentaudience-updateaudiencebyid?view=graph-rest-beta operationId: admin.windows.updates.updatePolicies.updatePolicy.audience.updateAudienceById requestBody: description: Action parameters content: application/json: schema: type: object properties: memberEntityType: type: string nullable: true addMembers: type: array items: type: string nullable: true removeMembers: type: array items: type: string nullable: true addExclusions: type: array items: type: string nullable: true removeExclusions: type: array items: 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy x-ms-docs-grouped-path: - '/admin/windows/updates/deploymentAudiences/{deploymentAudience-id}/microsoft.graph.windowsUpdates.updateAudienceById' - '/admin/windows/updates/deployments/{deployment-id}/audience/microsoft.graph.windowsUpdates.updateAudienceById' '/admin/windows/updates/updatePolicies/{updatePolicy-id}/complianceChanges': description: Provides operations to manage the complianceChanges property of the microsoft.graph.windowsUpdates.updatePolicy entity. get: tags: - admin.adminWindows summary: List complianceChanges description: Get a list of the complianceChange objects and their properties. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatepolicy-list-compliancechanges?view=graph-rest-beta operationId: admin.windows.updates.updatePolicies.ListComplianceChanges 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.windowsUpdates.complianceChangeCollectionResponse' 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: - admin.adminWindows summary: Create contentApproval description: Create a new contentApproval object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-updatepolicy-post-compliancechanges-contentapproval?view=graph-rest-beta operationId: admin.windows.updates.updatePolicies.CreateComplianceChanges requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.complianceChange' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.complianceChange' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy '/admin/windows/updates/updatePolicies/{updatePolicy-id}/complianceChanges/{complianceChange-id}': description: Provides operations to manage the complianceChanges property of the microsoft.graph.windowsUpdates.updatePolicy entity. get: tags: - admin.adminWindows summary: Get contentApproval description: Read the properties and relationships of a contentApproval object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-contentapproval-get?view=graph-rest-beta operationId: admin.windows.updates.updatePolicies.GetComplianceChanges parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.complianceChange' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - admin.adminWindows summary: Update complianceChange description: Update the properties of a complianceChange object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-compliancechange-update?view=graph-rest-beta operationId: admin.windows.updates.updatePolicies.UpdateComplianceChanges requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.complianceChange' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.complianceChange' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - admin.adminWindows summary: Delete complianceChange description: Delete a complianceChange object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/windowsupdates-compliancechange-delete?view=graph-rest-beta operationId: admin.windows.updates.updatePolicies.DeleteComplianceChanges parameters: - 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy - name: complianceChange-id in: path description: The unique identifier of complianceChange required: true schema: type: string x-ms-docs-key-type: complianceChange '/admin/windows/updates/updatePolicies/{updatePolicy-id}/complianceChanges/{complianceChange-id}/updatePolicy': description: Provides operations to manage the updatePolicy property of the microsoft.graph.windowsUpdates.complianceChange entity. get: tags: - admin.adminWindows summary: Get updatePolicy from admin description: The policy this compliance change is a member of. operationId: admin.windows.updates.updatePolicies.complianceChanges.GetUpdatePolicy parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsUpdates.updatePolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy - name: complianceChange-id in: path description: The unique identifier of complianceChange required: true schema: type: string x-ms-docs-key-type: complianceChange '/admin/windows/updates/updatePolicies/{updatePolicy-id}/complianceChanges/$count': description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.updatePolicies.complianceChanges.GetCount-412d 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: updatePolicy-id in: path description: The unique identifier of updatePolicy required: true schema: type: string x-ms-docs-key-type: updatePolicy /admin/windows/updates/updatePolicies/$count: description: Provides operations to count the resources in the collection. get: tags: - admin.adminWindows summary: Get the number of the resource operationId: admin.windows.updates.updatePolicies.GetCount-27c8 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' /administrativeUnits: description: Provides operations to manage the collection of administrativeUnit entities. get: tags: - administrativeUnits.administrativeUnit summary: List administrativeUnits description: Retrieve a list of administrativeUnit objects. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/directory-list-administrativeunits?view=graph-rest-beta operationId: administrativeUnits.administrativeUnit.ListAdministrativeUnit 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 x-ms-docs-operation-type: operation post: tags: - administrativeUnits.administrativeUnit summary: Create administrativeUnit description: Create a new administrativeUnit. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/directory-post-administrativeunits?view=graph-rest-beta operationId: administrativeUnits.administrativeUnit.CreateAdministrativeUnit requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.administrativeUnit' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.administrativeUnit' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/administrativeUnits/{administrativeUnit-id}': description: Provides operations to manage the collection of administrativeUnit entities. get: tags: - administrativeUnits.administrativeUnit summary: Get administrativeUnit description: 'Retrieve the properties and relationships of an administrativeUnit object. Since the administrativeUnit resource supports extensions, you can also use the GET operation to get custom properties and extension data in an administrativeUnit instance.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/administrativeunit-get?view=graph-rest-beta operationId: administrativeUnits.administrativeUnit.GetAdministrativeUnit parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.administrativeUnit' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - administrativeUnits.administrativeUnit summary: Update administrativeUnit description: Update the properties of an administrativeUnit object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/administrativeunit-update?view=graph-rest-beta operationId: administrativeUnits.administrativeUnit.UpdateAdministrativeUnit requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.administrativeUnit' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.administrativeUnit' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - administrativeUnits.administrativeUnit summary: Delete administrativeUnit description: Delete an administrativeUnit. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/administrativeunit-delete?view=graph-rest-beta operationId: administrativeUnits.administrativeUnit.DeleteAdministrativeUnit parameters: - 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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/deletedMembers': description: Provides operations to manage the deletedMembers property of the microsoft.graph.administrativeUnit entity. get: tags: - administrativeUnits.directoryObject summary: Get deletedMembers from administrativeUnits operationId: administrativeUnits.ListDeletedMembers 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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/deletedMembers/{directoryObject-id}': description: Provides operations to manage the deletedMembers property of the microsoft.graph.administrativeUnit entity. get: tags: - administrativeUnits.directoryObject summary: Get deletedMembers from administrativeUnits operationId: administrativeUnits.GetDeletedMembers parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: 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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/administrativeUnits/{administrativeUnit-id}/deletedMembers/$count': description: Provides operations to count the resources in the collection. get: tags: - administrativeUnits.directoryObject summary: Get the number of the resource operationId: administrativeUnits.deletedMembers.GetCount-b80c 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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/extensions': description: Provides operations to manage the extensions property of the microsoft.graph.administrativeUnit entity. get: tags: - administrativeUnits.extension summary: Get extensions from administrativeUnits description: The collection of open extensions defined for this administrative unit. Nullable. operationId: administrativeUnits.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: - administrativeUnits.extension summary: Create new navigation property to extensions for administrativeUnits operationId: administrativeUnits.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}': description: Provides operations to manage the extensions property of the microsoft.graph.administrativeUnit entity. get: tags: - administrativeUnits.extension summary: Get extensions from administrativeUnits description: The collection of open extensions defined for this administrative unit. Nullable. operationId: administrativeUnits.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: - administrativeUnits.extension summary: Update the navigation property extensions in administrativeUnits operationId: administrativeUnits.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: - administrativeUnits.extension summary: Delete navigation property extensions for administrativeUnits operationId: administrativeUnits.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit - name: extension-id in: path description: The unique identifier of extension required: true schema: type: string x-ms-docs-key-type: extension '/administrativeUnits/{administrativeUnit-id}/extensions/$count': description: Provides operations to count the resources in the collection. get: tags: - administrativeUnits.extension summary: Get the number of the resource operationId: administrativeUnits.extensions.GetCount-d91f 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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/members': description: Provides operations to manage the members property of the microsoft.graph.administrativeUnit entity. get: tags: - administrativeUnits.directoryObject summary: Get members from administrativeUnits description: Users and groups that are members of this administrative unit. Supports $expand. operationId: administrativeUnits.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 post: tags: - administrativeUnits.directoryObject summary: Add a member description: 'Use this API to add a member (user, group, or device) to an administrative unit or to create a new group within an administrative unit. All group types can be created within an administrative unit. Note: Currently, it''s only possible to add one member at a time to an administrative unit.`' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/administrativeunit-post-members?view=graph-rest-beta operationId: administrativeUnits.CreateMembers requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryObject' required: true responses: 2XX: description: Created 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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/$ref': description: Provides operations to manage the collection of administrativeUnit entities. delete: tags: - administrativeUnits.directoryObject summary: Delete ref of navigation property members for administrativeUnits operationId: administrativeUnits.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/graph.application': description: Casts the previous resource to application. get: tags: - administrativeUnits.directoryObject summary: Get the item of type microsoft.graph.directoryObject as microsoft.graph.application operationId: administrativeUnits.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/graph.device': description: Casts the previous resource to device. get: tags: - administrativeUnits.directoryObject summary: Get the item of type microsoft.graph.directoryObject as microsoft.graph.device operationId: administrativeUnits.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/graph.group': description: Casts the previous resource to group. get: tags: - administrativeUnits.directoryObject summary: Get the item of type microsoft.graph.directoryObject as microsoft.graph.group operationId: administrativeUnits.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/graph.orgContact': description: Casts the previous resource to orgContact. get: tags: - administrativeUnits.directoryObject summary: Get the item of type microsoft.graph.directoryObject as microsoft.graph.orgContact operationId: administrativeUnits.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/graph.servicePrincipal': description: Casts the previous resource to servicePrincipal. get: tags: - administrativeUnits.directoryObject summary: Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal operationId: administrativeUnits.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/graph.user': description: Casts the previous resource to user. get: tags: - administrativeUnits.directoryObject summary: Get the item of type microsoft.graph.directoryObject as microsoft.graph.user operationId: administrativeUnits.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/administrativeUnits/{administrativeUnit-id}/members/$count': description: Provides operations to count the resources in the collection. get: tags: - administrativeUnits.directoryObject summary: Get the number of the resource operationId: administrativeUnits.members.GetCount-bb9a 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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/members/$ref': description: Provides operations to manage the collection of administrativeUnit entities. get: tags: - administrativeUnits.directoryObject summary: Get ref of members from administrativeUnits description: Users and groups that are members of this administrative unit. Supports $expand. operationId: administrativeUnits.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: - administrativeUnits.directoryObject summary: Add a member description: 'Use this API to add a member (user, group, or device) to an administrative unit or to create a new group within an administrative unit. All group types can be created within an administrative unit. Note: Currently, it''s only possible to add one member at a time to an administrative unit.`' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/administrativeunit-post-members?view=graph-rest-beta operationId: administrativeUnits.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: - administrativeUnits.directoryObject summary: Delete ref of navigation property members for administrativeUnits operationId: administrativeUnits.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/members/graph.application': description: Casts the previous resource to application. get: tags: - administrativeUnits.directoryObject summary: Get the items of type microsoft.graph.application in the microsoft.graph.directoryObject collection operationId: administrativeUnits.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/members/graph.application/$count': description: Provides operations to count the resources in the collection. get: tags: - administrativeUnits.directoryObject summary: Get the number of the resource operationId: administrativeUnits.Members.GetCount.AsApplication-8e69 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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/members/graph.device': description: Casts the previous resource to device. get: tags: - administrativeUnits.directoryObject summary: Get the items of type microsoft.graph.device in the microsoft.graph.directoryObject collection operationId: administrativeUnits.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/members/graph.device/$count': description: Provides operations to count the resources in the collection. get: tags: - administrativeUnits.directoryObject summary: Get the number of the resource operationId: administrativeUnits.Members.GetCount.AsDevice-283e 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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/members/graph.group': description: Casts the previous resource to group. get: tags: - administrativeUnits.directoryObject summary: Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection operationId: administrativeUnits.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/members/graph.group/$count': description: Provides operations to count the resources in the collection. get: tags: - administrativeUnits.directoryObject summary: Get the number of the resource operationId: administrativeUnits.Members.GetCount.AsGroup-4b40 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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/members/graph.orgContact': description: Casts the previous resource to orgContact. get: tags: - administrativeUnits.directoryObject summary: Get the items of type microsoft.graph.orgContact in the microsoft.graph.directoryObject collection operationId: administrativeUnits.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/members/graph.orgContact/$count': description: Provides operations to count the resources in the collection. get: tags: - administrativeUnits.directoryObject summary: Get the number of the resource operationId: administrativeUnits.Members.GetCount.AsOrgContact-4ac0 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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/members/graph.servicePrincipal': description: Casts the previous resource to servicePrincipal. get: tags: - administrativeUnits.directoryObject summary: Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection operationId: administrativeUnits.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/members/graph.servicePrincipal/$count': description: Provides operations to count the resources in the collection. get: tags: - administrativeUnits.directoryObject summary: Get the number of the resource operationId: administrativeUnits.Members.GetCount.AsServicePrincipal-98c6 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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/members/graph.user': description: Casts the previous resource to user. get: tags: - administrativeUnits.directoryObject summary: Get the items of type microsoft.graph.user in the microsoft.graph.directoryObject collection operationId: administrativeUnits.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/members/graph.user/$count': description: Provides operations to count the resources in the collection. get: tags: - administrativeUnits.directoryObject summary: Get the number of the resource operationId: administrativeUnits.Members.GetCount.AsUser-bc9c 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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/checkMemberGroups': description: Provides operations to call the checkMemberGroups method. post: tags: - administrativeUnits.administrativeUnit.Actions summary: 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:\n- user\n- group\n- service principal\n- organizational contact\n- device\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-beta operationId: administrativeUnits.administrativeUnit.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/checkMemberObjects': description: Provides operations to call the checkMemberObjects method. post: tags: - administrativeUnits.administrativeUnit.Actions summary: Invoke action checkMemberObjects operationId: administrativeUnits.administrativeUnit.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/getMemberGroups': description: Provides operations to call the getMemberGroups method. post: tags: - administrativeUnits.administrativeUnit.Actions summary: 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-beta operationId: administrativeUnits.administrativeUnit.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/getMemberObjects': description: Provides operations to call the getMemberObjects method. post: tags: - administrativeUnits.administrativeUnit.Actions summary: Invoke action getMemberObjects operationId: administrativeUnits.administrativeUnit.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/restore': description: Provides operations to call the restore method. post: tags: - administrativeUnits.administrativeUnit.Actions summary: Invoke action restore description: "Restore a recently deleted directory object from deleted items. The following types are supported:\n- administrativeUnit\n- application\n- certificateBasedAuthPki\n- certificateAuthorityDetail\n- externalUserProfile\n- group\n- pendingExternalUserProfile\n- servicePrincipal\n- user If an item was accidentally deleted, you can fully restore the item. This isn't applicable to security groups, which are deleted permanently. Also, restoring an application doesn't 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-beta operationId: administrativeUnits.administrativeUnit.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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers': description: Provides operations to manage the scopedRoleMembers property of the microsoft.graph.administrativeUnit entity. get: tags: - administrativeUnits.scopedRoleMembership summary: List scopedRoleMembers description: List Microsoft Entra role assignments with administrative unit scope. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/administrativeunit-list-scopedrolemembers?view=graph-rest-beta operationId: administrativeUnits.ListScopedRoleMembers 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.scopedRoleMembershipCollectionResponse' 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: - administrativeUnits.scopedRoleMembership summary: Add a scopedRoleMember description: 'Assign a Microsoft Entra role with administrative unit scope. For a list of roles that can be assigned with administrative unit scope, see Assign Microsoft Entra roles with administrative unit scope.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/administrativeunit-post-scopedrolemembers?view=graph-rest-beta operationId: administrativeUnits.CreateScopedRoleMembers requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.scopedRoleMembership' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.scopedRoleMembership' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit '/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}': description: Provides operations to manage the scopedRoleMembers property of the microsoft.graph.administrativeUnit entity. get: tags: - administrativeUnits.scopedRoleMembership summary: Get a scopedRoleMember description: Get a Microsoft Entra role assignment with administrative unit scope. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/administrativeunit-get-scopedrolemembers?view=graph-rest-beta operationId: administrativeUnits.GetScopedRoleMembers parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.scopedRoleMembership' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - administrativeUnits.scopedRoleMembership summary: Update the navigation property scopedRoleMembers in administrativeUnits operationId: administrativeUnits.UpdateScopedRoleMembers requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.scopedRoleMembership' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.scopedRoleMembership' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - administrativeUnits.scopedRoleMembership summary: Remove a scopedRoleMember description: Remove a Microsoft Entra role assignment with administrative unit scope. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/administrativeunit-delete-scopedrolemembers?view=graph-rest-beta operationId: administrativeUnits.DeleteScopedRoleMembers parameters: - 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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit - name: scopedRoleMembership-id in: path description: The unique identifier of scopedRoleMembership required: true schema: type: string x-ms-docs-key-type: scopedRoleMembership '/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/$count': description: Provides operations to count the resources in the collection. get: tags: - administrativeUnits.scopedRoleMembership summary: Get the number of the resource operationId: administrativeUnits.scopedRoleMembers.GetCount-ef82 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: administrativeUnit-id in: path description: The unique identifier of administrativeUnit required: true schema: type: string x-ms-docs-key-type: administrativeUnit /administrativeUnits/$count: description: Provides operations to count the resources in the collection. get: tags: - administrativeUnits.administrativeUnit summary: Get the number of the resource operationId: administrativeUnits.GetCount-ce9c 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' /administrativeUnits/delta(): description: Provides operations to call the delta method. get: tags: - administrativeUnits.administrativeUnit.Functions summary: Invoke function delta description: 'Get newly created, updated, or deleted administrativeUnits without having to perform a full read of the entire resource 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/administrativeunit-delta?view=graph-rest-beta operationId: administrativeUnits.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 administrativeUnit type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.administrativeUnit' 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: - /administrativeUnits/delta() /administrativeUnits/getByIds: description: Provides operations to call the getByIds method. post: tags: - administrativeUnits.administrativeUnit.Actions summary: Invoke action getByIds description: 'Return the directory objects specified in a list of IDs. 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-beta operationId: administrativeUnits.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 /administrativeUnits/getUserOwnedObjects: description: Provides operations to call the getUserOwnedObjects method. post: tags: - administrativeUnits.administrativeUnit.Actions summary: Invoke action getUserOwnedObjects description: 'Retrieve a list of recently deleted application and group objects owned by the specified user. This API returns up to 1,000 deleted objects owned by the user, sorted by ID, and doesn''t support pagination.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta operationId: administrativeUnits.getUserOwnedObjects requestBody: description: Action parameters content: application/json: schema: type: object properties: userId: type: string nullable: true type: type: string nullable: true required: true 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 /administrativeUnits/validateProperties: description: Provides operations to call the validateProperties method. post: tags: - administrativeUnits.administrativeUnit.Actions summary: 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. For validating properties of an existing group, use the validateProperties function for groups. The following validations are performed for the display name and mail nickname properties: \n1. Validate the prefix and suffix naming policy\n2. Validate the custom banned words policy\n3. Validate the mail nickname is unique This API returns with the first failure encountered. If one or more properties fail multiple validations, only the property with 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." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta operationId: administrativeUnits.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 /agreementAcceptances: description: Provides operations to manage the collection of agreementAcceptance entities. get: tags: - agreementAcceptances.agreementAcceptance summary: Get entities from agreementAcceptances operationId: agreementAcceptances.agreementAcceptance.ListAgreementAcceptance 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.agreementAcceptanceCollectionResponse' 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: - agreementAcceptances.agreementAcceptance summary: Add new entity to agreementAcceptances operationId: agreementAcceptances.agreementAcceptance.CreateAgreementAcceptance requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/agreementAcceptances/{agreementAcceptance-id}': description: Provides operations to manage the collection of agreementAcceptance entities. get: tags: - agreementAcceptances.agreementAcceptance summary: Get entity from agreementAcceptances by key operationId: agreementAcceptances.agreementAcceptance.GetAgreementAcceptance parameters: - name: $select in: query description: Select properties to be returned 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.agreementAcceptance' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - agreementAcceptances.agreementAcceptance summary: Update entity in agreementAcceptances operationId: agreementAcceptances.agreementAcceptance.UpdateAgreementAcceptance requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - agreementAcceptances.agreementAcceptance summary: Delete entity from agreementAcceptances operationId: agreementAcceptances.agreementAcceptance.DeleteAgreementAcceptance parameters: - 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: agreementAcceptance-id in: path description: The unique identifier of agreementAcceptance required: true schema: type: string x-ms-docs-key-type: agreementAcceptance /agreements: description: Provides operations to manage the collection of agreement entities. get: tags: - agreements.agreement summary: Get entities from agreements operationId: agreements.agreement.ListAgreement 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.agreementCollectionResponse' 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: - agreements.agreement summary: Add new entity to agreements operationId: agreements.agreement.CreateAgreement requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreement' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreement' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/agreements/{agreement-id}': description: Provides operations to manage the collection of agreement entities. get: tags: - agreements.agreement summary: Get entity from agreements by key operationId: agreements.agreement.GetAgreement parameters: - name: $select in: query description: Select properties to be returned 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.agreement' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - agreements.agreement summary: Update entity in agreements operationId: agreements.agreement.UpdateAgreement requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreement' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreement' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - agreements.agreement summary: Delete entity from agreements operationId: agreements.agreement.DeleteAgreement parameters: - 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: agreement-id in: path description: The unique identifier of agreement required: true schema: type: string x-ms-docs-key-type: agreement '/agreements/{agreement-id}/acceptances': description: Provides operations to manage the acceptances property of the microsoft.graph.agreement entity. get: tags: - agreements.agreementAcceptance summary: Get acceptances from agreements description: Read-only. Information about acceptances of this agreement. operationId: agreements.ListAcceptances 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.agreementAcceptanceCollectionResponse' 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: - agreements.agreementAcceptance summary: Create new navigation property to acceptances for agreements operationId: agreements.CreateAcceptances requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: agreement-id in: path description: The unique identifier of agreement required: true schema: type: string x-ms-docs-key-type: agreement '/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}': description: Provides operations to manage the acceptances property of the microsoft.graph.agreement entity. get: tags: - agreements.agreementAcceptance summary: Get acceptances from agreements description: Read-only. Information about acceptances of this agreement. operationId: agreements.GetAcceptances parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - agreements.agreementAcceptance summary: Update the navigation property acceptances in agreements operationId: agreements.UpdateAcceptances requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementAcceptance' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - agreements.agreementAcceptance summary: Delete navigation property acceptances for agreements operationId: agreements.DeleteAcceptances parameters: - 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: agreement-id in: path description: The unique identifier of agreement required: true schema: type: string x-ms-docs-key-type: agreement - name: agreementAcceptance-id in: path description: The unique identifier of agreementAcceptance required: true schema: type: string x-ms-docs-key-type: agreementAcceptance '/agreements/{agreement-id}/acceptances/$count': description: Provides operations to count the resources in the collection. get: tags: - agreements.agreementAcceptance summary: Get the number of the resource operationId: agreements.acceptances.GetCount-9ff2 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: agreement-id in: path description: The unique identifier of agreement required: true schema: type: string x-ms-docs-key-type: agreement '/agreements/{agreement-id}/file': description: Provides operations to manage the file property of the microsoft.graph.agreement entity. get: tags: - agreements.agreementFile summary: Get agreementFile description: 'Retrieve the details of an agreement file, including the language and version information. The default file can have multiple versions, each with its own language, that can be retrieved by specifying the Accept-Language header.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/agreementfile-get?view=graph-rest-beta operationId: agreements.GetFile parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - agreements.agreementFile summary: Update the navigation property file in agreements operationId: agreements.UpdateFile requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - agreements.agreementFile summary: Delete navigation property file for agreements operationId: agreements.DeleteFile parameters: - 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: agreement-id in: path description: The unique identifier of agreement required: true schema: type: string x-ms-docs-key-type: agreement '/agreements/{agreement-id}/file/localizations': description: Provides operations to manage the localizations property of the microsoft.graph.agreementFile entity. get: tags: - agreements.agreementFile summary: List agreementFileLocalizations description: Get a list of the default and localized agreement files. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/agreementfile-list-localizations?view=graph-rest-beta operationId: agreements.file.ListLocalizations 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.agreementFileLocalizationCollectionResponse' 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: - agreements.agreementFile summary: Create new navigation property to localizations for agreements operationId: agreements.file.CreateLocalizations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: agreement-id in: path description: The unique identifier of agreement required: true schema: type: string x-ms-docs-key-type: agreement '/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}': description: Provides operations to manage the localizations property of the microsoft.graph.agreementFile entity. get: tags: - agreements.agreementFile summary: Get localizations from agreements description: The localized version of the terms of use agreement files attached to the agreement. operationId: agreements.file.GetLocalizations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - agreements.agreementFile summary: Update the navigation property localizations in agreements operationId: agreements.file.UpdateLocalizations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - agreements.agreementFile summary: Delete navigation property localizations for agreements operationId: agreements.file.DeleteLocalizations parameters: - 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: agreement-id in: path description: The unique identifier of agreement required: true schema: type: string x-ms-docs-key-type: agreement - name: agreementFileLocalization-id in: path description: The unique identifier of agreementFileLocalization required: true schema: type: string x-ms-docs-key-type: agreementFileLocalization '/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions': description: Provides operations to manage the versions property of the microsoft.graph.agreementFileLocalization entity. get: tags: - agreements.agreementFile summary: Get versions from agreements description: Read-only. Customized versions of the terms of use agreement in the Microsoft Entra tenant. operationId: agreements.file.localizations.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.agreementFileVersionCollectionResponse' 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: - agreements.agreementFile summary: Create new navigation property to versions for agreements operationId: agreements.file.localizations.CreateVersions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: agreement-id in: path description: The unique identifier of agreement required: true schema: type: string x-ms-docs-key-type: agreement - name: agreementFileLocalization-id in: path description: The unique identifier of agreementFileLocalization required: true schema: type: string x-ms-docs-key-type: agreementFileLocalization x-ms-docs-grouped-path: - '/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions' '/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}': description: Provides operations to manage the versions property of the microsoft.graph.agreementFileLocalization entity. get: tags: - agreements.agreementFile summary: Get versions from agreements description: Read-only. Customized versions of the terms of use agreement in the Microsoft Entra tenant. operationId: agreements.file.localizations.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.agreementFileVersion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - agreements.agreementFile summary: Update the navigation property versions in agreements operationId: agreements.file.localizations.UpdateVersions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - agreements.agreementFile summary: Delete navigation property versions for agreements operationId: agreements.file.localizations.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: agreement-id in: path description: The unique identifier of agreement required: true schema: type: string x-ms-docs-key-type: agreement - name: agreementFileLocalization-id in: path description: The unique identifier of agreementFileLocalization required: true schema: type: string x-ms-docs-key-type: agreementFileLocalization - name: agreementFileVersion-id in: path description: The unique identifier of agreementFileVersion required: true schema: type: string x-ms-docs-key-type: agreementFileVersion x-ms-docs-grouped-path: - '/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}' '/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/$count': description: Provides operations to count the resources in the collection. get: tags: - agreements.agreementFile summary: Get the number of the resource operationId: agreements.file.localizations.versions.GetCount-c405 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: agreement-id in: path description: The unique identifier of agreement required: true schema: type: string x-ms-docs-key-type: agreement - name: agreementFileLocalization-id in: path description: The unique identifier of agreementFileLocalization required: true schema: type: string x-ms-docs-key-type: agreementFileLocalization '/agreements/{agreement-id}/file/localizations/$count': description: Provides operations to count the resources in the collection. get: tags: - agreements.agreementFile summary: Get the number of the resource operationId: agreements.file.localizations.GetCount-37c2 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: agreement-id in: path description: The unique identifier of agreement required: true schema: type: string x-ms-docs-key-type: agreement '/agreements/{agreement-id}/files': description: Provides operations to manage the files property of the microsoft.graph.agreement entity. get: tags: - agreements.agreementFileLocalization summary: Get files from agreements description: 'PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.' operationId: agreements.ListFiles 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.agreementFileLocalizationCollectionResponse' 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: - agreements.agreementFileLocalization summary: Create new navigation property to files for agreements operationId: agreements.CreateFiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: agreement-id in: path description: The unique identifier of agreement required: true schema: type: string x-ms-docs-key-type: agreement '/agreements/{agreement-id}/files/{agreementFileLocalization-id}': description: Provides operations to manage the files property of the microsoft.graph.agreement entity. get: tags: - agreements.agreementFileLocalization summary: Get files from agreements description: 'PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.' operationId: agreements.GetFiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - agreements.agreementFileLocalization summary: Update the navigation property files in agreements operationId: agreements.UpdateFiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFileLocalization' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - agreements.agreementFileLocalization summary: Delete navigation property files for agreements operationId: agreements.DeleteFiles parameters: - 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: agreement-id in: path description: The unique identifier of agreement required: true schema: type: string x-ms-docs-key-type: agreement - name: agreementFileLocalization-id in: path description: The unique identifier of agreementFileLocalization required: true schema: type: string x-ms-docs-key-type: agreementFileLocalization '/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions': description: Provides operations to manage the versions property of the microsoft.graph.agreementFileLocalization entity. get: tags: - agreements.agreementFileLocalization summary: Get versions from agreements description: Read-only. Customized versions of the terms of use agreement in the Microsoft Entra tenant. operationId: agreements.files.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.agreementFileVersionCollectionResponse' 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: - agreements.agreementFileLocalization summary: Create new navigation property to versions for agreements operationId: agreements.files.CreateVersions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: agreement-id in: path description: The unique identifier of agreement required: true schema: type: string x-ms-docs-key-type: agreement - name: agreementFileLocalization-id in: path description: The unique identifier of agreementFileLocalization required: true schema: type: string x-ms-docs-key-type: agreementFileLocalization x-ms-docs-grouped-path: - '/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions' '/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}': description: Provides operations to manage the versions property of the microsoft.graph.agreementFileLocalization entity. get: tags: - agreements.agreementFileLocalization summary: Get versions from agreements description: Read-only. Customized versions of the terms of use agreement in the Microsoft Entra tenant. operationId: agreements.files.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.agreementFileVersion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - agreements.agreementFileLocalization summary: Update the navigation property versions in agreements operationId: agreements.files.UpdateVersions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.agreementFileVersion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - agreements.agreementFileLocalization summary: Delete navigation property versions for agreements operationId: agreements.files.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: agreement-id in: path description: The unique identifier of agreement required: true schema: type: string x-ms-docs-key-type: agreement - name: agreementFileLocalization-id in: path description: The unique identifier of agreementFileLocalization required: true schema: type: string x-ms-docs-key-type: agreementFileLocalization - name: agreementFileVersion-id in: path description: The unique identifier of agreementFileVersion required: true schema: type: string x-ms-docs-key-type: agreementFileVersion x-ms-docs-grouped-path: - '/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}' '/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/$count': description: Provides operations to count the resources in the collection. get: tags: - agreements.agreementFileLocalization summary: Get the number of the resource operationId: agreements.files.versions.GetCount-8216 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: agreement-id in: path description: The unique identifier of agreement required: true schema: type: string x-ms-docs-key-type: agreement - name: agreementFileLocalization-id in: path description: The unique identifier of agreementFileLocalization required: true schema: type: string x-ms-docs-key-type: agreementFileLocalization '/agreements/{agreement-id}/files/$count': description: Provides operations to count the resources in the collection. get: tags: - agreements.agreementFileLocalization summary: Get the number of the resource operationId: agreements.files.GetCount-b229 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: agreement-id in: path description: The unique identifier of agreement required: true schema: type: string x-ms-docs-key-type: agreement /allowedDataLocations: description: Provides operations to manage the collection of allowedDataLocation entities. get: tags: - allowedDataLocations.allowedDataLocation summary: Get entities from allowedDataLocations operationId: allowedDataLocations.allowedDataLocation.ListAllowedDataLocation 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.allowedDataLocationCollectionResponse' 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: - allowedDataLocations.allowedDataLocation summary: Add new entity to allowedDataLocations operationId: allowedDataLocations.allowedDataLocation.CreateAllowedDataLocation requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.allowedDataLocation' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.allowedDataLocation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/allowedDataLocations/{allowedDataLocation-id}': description: Provides operations to manage the collection of allowedDataLocation entities. get: tags: - allowedDataLocations.allowedDataLocation summary: Get entity from allowedDataLocations by key operationId: allowedDataLocations.allowedDataLocation.GetAllowedDataLocation parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.allowedDataLocation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - allowedDataLocations.allowedDataLocation summary: Update entity in allowedDataLocations operationId: allowedDataLocations.allowedDataLocation.UpdateAllowedDataLocation requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.allowedDataLocation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.allowedDataLocation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - allowedDataLocations.allowedDataLocation summary: Delete entity from allowedDataLocations operationId: allowedDataLocations.allowedDataLocation.DeleteAllowedDataLocation parameters: - 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: allowedDataLocation-id in: path description: The unique identifier of allowedDataLocation required: true schema: type: string x-ms-docs-key-type: allowedDataLocation /allowedDataLocations/$count: description: Provides operations to count the resources in the collection. get: tags: - allowedDataLocations.allowedDataLocation summary: Get the number of the resource operationId: allowedDataLocations.GetCount-b2db 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' /app: description: Provides operations to manage the commsApplication singleton. get: tags: - app.commsApplication summary: Get app operationId: app.commsApplication.GetCommsApplication parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.commsApplication' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - app.commsApplication summary: Update app operationId: app.commsApplication.UpdateCommsApplication requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.commsApplication' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.commsApplication' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation /app/calls: description: Provides operations to manage the calls property of the microsoft.graph.commsApplication entity. get: tags: - app.call summary: Get calls from app operationId: app.ListCalls 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.callCollectionResponse' 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: - app.call summary: Create new navigation property to calls for app operationId: app.CreateCalls requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.call' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.call' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/app/calls/{call-id}': description: Provides operations to manage the calls property of the microsoft.graph.commsApplication entity. get: tags: - app.call summary: Get calls from app operationId: app.GetCalls parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.call' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - app.call summary: Update the navigation property calls in app operationId: app.UpdateCalls requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.call' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.call' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - app.call summary: Delete navigation property calls for app operationId: app.DeleteCalls parameters: - 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/audioRoutingGroups': description: Provides operations to manage the audioRoutingGroups property of the microsoft.graph.call entity. get: tags: - app.call summary: Get audioRoutingGroups from app operationId: app.calls.ListAudioRoutingGroups 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.audioRoutingGroupCollectionResponse' 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: - app.call summary: Create new navigation property to audioRoutingGroups for app operationId: app.calls.CreateAudioRoutingGroups requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.audioRoutingGroup' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.audioRoutingGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}': description: Provides operations to manage the audioRoutingGroups property of the microsoft.graph.call entity. get: tags: - app.call summary: Get audioRoutingGroups from app operationId: app.calls.GetAudioRoutingGroups parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.audioRoutingGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - app.call summary: Update the navigation property audioRoutingGroups in app operationId: app.calls.UpdateAudioRoutingGroups requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.audioRoutingGroup' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.audioRoutingGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - app.call summary: Delete navigation property audioRoutingGroups for app operationId: app.calls.DeleteAudioRoutingGroups parameters: - 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call - name: audioRoutingGroup-id in: path description: The unique identifier of audioRoutingGroup required: true schema: type: string x-ms-docs-key-type: audioRoutingGroup '/app/calls/{call-id}/audioRoutingGroups/$count': description: Provides operations to count the resources in the collection. get: tags: - app.call summary: Get the number of the resource operationId: app.calls.audioRoutingGroups.GetCount-be71 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/contentSharingSessions': description: Provides operations to manage the contentSharingSessions property of the microsoft.graph.call entity. get: tags: - app.call summary: Get contentSharingSessions from app operationId: app.calls.ListContentSharingSessions 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.contentSharingSessionCollectionResponse' 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: - app.call summary: Create new navigation property to contentSharingSessions for app operationId: app.calls.CreateContentSharingSessions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentSharingSession' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentSharingSession' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/contentSharingSessions/{contentSharingSession-id}': description: Provides operations to manage the contentSharingSessions property of the microsoft.graph.call entity. get: tags: - app.call summary: Get contentSharingSessions from app operationId: app.calls.GetContentSharingSessions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentSharingSession' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - app.call summary: Update the navigation property contentSharingSessions in app operationId: app.calls.UpdateContentSharingSessions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentSharingSession' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentSharingSession' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - app.call summary: Delete navigation property contentSharingSessions for app operationId: app.calls.DeleteContentSharingSessions parameters: - 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call - name: contentSharingSession-id in: path description: The unique identifier of contentSharingSession required: true schema: type: string x-ms-docs-key-type: contentSharingSession '/app/calls/{call-id}/contentSharingSessions/{contentSharingSession-id}/pngOfCurrentSlide': description: Provides operations to manage the media for the commsApplication entity. get: tags: - app.call summary: Get pngOfCurrentSlide for the navigation property contentSharingSessions from app operationId: app.calls.GetContentSharingSessionsPngOfCurrentSlide 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: - app.call summary: Update pngOfCurrentSlide for the navigation property contentSharingSessions in app operationId: app.calls.UpdateContentSharingSessionsPngOfCurrentSlide 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: - app.call summary: Delete pngOfCurrentSlide for the navigation property contentSharingSessions in app operationId: app.calls.DeleteContentSharingSessionsPngOfCurrentSlide parameters: - 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call - name: contentSharingSession-id in: path description: The unique identifier of contentSharingSession required: true schema: type: string x-ms-docs-key-type: contentSharingSession '/app/calls/{call-id}/contentSharingSessions/$count': description: Provides operations to count the resources in the collection. get: tags: - app.call summary: Get the number of the resource operationId: app.calls.contentSharingSessions.GetCount-0267 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/addLargeGalleryView': description: Provides operations to call the addLargeGalleryView method. post: tags: - app.call summary: Invoke action addLargeGalleryView description: 'Add the large gallery view to a call. For details about how to identify a large gallery view participant in a roster so that you can retrieve the relevant data to subscribe to the video feed, see Identify large gallery view participants in a roster.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-addlargegalleryview?view=graph-rest-beta operationId: app.calls.call.addLargeGalleryView requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.addLargeGalleryViewOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/answer': description: Provides operations to call the answer method. post: tags: - app.call summary: Invoke action answer description: 'Enable a bot to answer an incoming call. The incoming call request can be an invitation from a participant in a group call or a peer-to-peer call. If an invitation to a group call is received, the notification contains the chatInfo and meetingInfo parameters. The bot is expected to answer, reject or redirect the call before the call times out. The current timeout value is 15 seconds. The current timeout value is 15 seconds for regular scenarios, and 5 seconds for policy-based recording scenarios. This API supports the following PSTN scenarios:' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-answer?view=graph-rest-beta operationId: app.calls.call.answer requestBody: description: Action parameters content: application/json: schema: type: object properties: callbackUri: type: string mediaConfig: $ref: '#/components/schemas/microsoft.graph.mediaConfig' acceptedModalities: type: array items: anyOf: - $ref: '#/components/schemas/microsoft.graph.modality' - type: object nullable: true participantCapacity: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true callOptions: anyOf: - $ref: '#/components/schemas/microsoft.graph.incomingCallOptions' - 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/cancelMediaProcessing': description: Provides operations to call the cancelMediaProcessing method. post: tags: - app.call summary: Invoke action cancelMediaProcessing description: 'Cancels processing for any in-progress media operations. Media operations refer to the IVR operations playPrompt and recordResponse, which are by default queued to process in order. The cancelMediaProcessing method cancels any operation that is in-process as well as operations that are queued. For example, this API can be used to clean up the IVR operation queue for a new media operation. However, it will not cancel a ubscribeToTone operation because it operates independent of any operation queue.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-cancelmediaprocessing?view=graph-rest-beta operationId: app.calls.call.cancelMediaProcessing requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.cancelMediaProcessingOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/changeScreenSharingRole': description: Provides operations to call the changeScreenSharingRole method. post: tags: - app.call summary: Invoke action changeScreenSharingRole description: Allow applications to share screen content with the participants of a group call. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-changescreensharingrole?view=graph-rest-beta operationId: app.calls.call.changeScreenSharingRole requestBody: description: Action parameters content: application/json: schema: type: object properties: role: $ref: '#/components/schemas/microsoft.graph.screenSharingRole' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/keepAlive': description: Provides operations to call the keepAlive method. post: tags: - app.call summary: Invoke action keepAlive description: 'Make a request to this API every 15 to 45 minutes to ensure that an ongoing call remains active. A call that doesn''t receive this request within 45 minutes is considered inactive and ends. At least one successful request must be made within 45 minutes of the previous request, or the start of the call. We recommend that you send a request in shorter time intervals (every 15 minutes). Make sure that these requests are successful to prevent the call from timing out and ending. Attempting to send a request to a call that ended results in a 404 Not Found error. The resources related to the call should be cleaned up on the application side.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-keepalive?view=graph-rest-beta operationId: app.calls.call.keepAlive responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/mute': description: Provides operations to call the mute method. post: tags: - app.call summary: Invoke action mute description: 'Allows the application to mute itself. This is a server mute, meaning that the server drops all audio packets for this participant, even if the participant continues to stream audio. For more information about how to handle mute operations, see muteParticipantOperation.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-mute?view=graph-rest-beta operationId: app.calls.call.mute requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.muteParticipantOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call x-ms-docs-grouped-path: - '/app/calls/{call-id}/participants/{participant-id}/mute' '/app/calls/{call-id}/playPrompt': description: Provides operations to call the playPrompt method. post: tags: - app.call summary: Invoke action playPrompt description: 'Play a prompt in the call. For more information about how to handle operations, see commsOperation' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-playprompt?view=graph-rest-beta operationId: app.calls.call.playPrompt requestBody: description: Action parameters content: application/json: schema: type: object properties: prompts: type: array items: $ref: '#/components/schemas/microsoft.graph.prompt' loop: type: boolean default: false nullable: true clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.playPromptOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/record': description: Provides operations to call the record method. post: tags: - app.call summary: Invoke action record operationId: app.calls.call.record requestBody: description: Action parameters content: application/json: schema: type: object properties: prompts: type: array items: $ref: '#/components/schemas/microsoft.graph.prompt' bargeInAllowed: type: boolean default: false nullable: true initialSilenceTimeoutInSeconds: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true maxSilenceTimeoutInSeconds: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true maxRecordDurationInSeconds: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true playBeep: type: boolean default: false nullable: true streamWhileRecording: type: boolean default: false nullable: true stopTones: type: array items: type: string nullable: true clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.recordOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/recordResponse': description: Provides operations to call the recordResponse method. post: tags: - app.call summary: Invoke action recordResponse description: 'Record a short audio response from the caller. A bot can use this API to capture a voice response from a caller after they''re prompted for a response. For more information about how to handle operations, see commsOperation. This action isn''t intended to record the entire call. The maximum length of recording is 2 minutes.The Cloud Communications Platform doesn''t save the recording permanently and discards it shortly after the call ends. The bot must download the recording promptly after the recording operation finishes by using the recordingLocation value provided in the completed notification.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-record?view=graph-rest-beta operationId: app.calls.call.recordResponse requestBody: description: Action parameters content: application/json: schema: type: object properties: prompts: type: array items: $ref: '#/components/schemas/microsoft.graph.prompt' bargeInAllowed: type: boolean default: false nullable: true initialSilenceTimeoutInSeconds: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true maxSilenceTimeoutInSeconds: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true maxRecordDurationInSeconds: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true playBeep: type: boolean default: false nullable: true streamWhileRecording: type: boolean default: false nullable: true stopTones: type: array items: type: string nullable: true clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.recordOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/redirect': description: Provides operations to call the redirect method. post: tags: - app.call summary: Invoke action redirect description: Redirect an incoming call that wasn't answered or rejected yet. The terms 'redirecting' and 'forwarding' a call are used interchangeably. The bot is expected to redirect the call before the call times out. The current timeout value is 15 seconds. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-redirect?view=graph-rest-beta operationId: app.calls.call.redirect requestBody: description: Action parameters content: application/json: schema: type: object properties: targets: type: array items: $ref: '#/components/schemas/microsoft.graph.invitationParticipantInfo' targetDisposition: anyOf: - $ref: '#/components/schemas/microsoft.graph.callDisposition' - type: object nullable: true timeout: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true maskCallee: type: boolean default: false nullable: true maskCaller: type: boolean default: false nullable: true callbackUri: 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/reject': description: Provides operations to call the reject method. post: tags: - app.call summary: Invoke action reject description: 'Enable a bot to reject an incoming call. The incoming call request can be an invite from a participant in a group call or a peer-to-peer call. If an invite to a group call is received, the notification contains the chatInfo and meetingInfo parameters. The bot is expected to answer or reject the call before the call times out. The current timeout value is 15 seconds. This API doesn''t end existing calls that have already been answered. Use delete call to end a call.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-reject?view=graph-rest-beta operationId: app.calls.call.reject requestBody: description: Action parameters content: application/json: schema: type: object properties: reason: anyOf: - $ref: '#/components/schemas/microsoft.graph.rejectReason' - type: object nullable: true callbackUri: 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/sendDtmfTones': description: Provides operations to call the sendDtmfTones method. post: tags: - app.call summary: Invoke action sendDtmfTones operationId: app.calls.call.sendDtmfTones requestBody: description: Action parameters content: application/json: schema: type: object properties: tones: type: array items: $ref: '#/components/schemas/microsoft.graph.tone' delayBetweenTonesMs: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.sendDtmfTonesOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/startRecording': description: Provides operations to call the startRecording method. post: tags: - app.call summary: Invoke action startRecording operationId: app.calls.call.startRecording requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.startRecordingOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/startTranscription': description: Provides operations to call the startTranscription method. post: tags: - app.call summary: Invoke action startTranscription operationId: app.calls.call.startTranscription requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true language: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.startTranscriptionOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/stopRecording': description: Provides operations to call the stopRecording method. post: tags: - app.call summary: Invoke action stopRecording operationId: app.calls.call.stopRecording requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.stopRecordingOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/stopTranscription': description: Provides operations to call the stopTranscription method. post: tags: - app.call summary: Invoke action stopTranscription operationId: app.calls.call.stopTranscription requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true language: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.stopTranscriptionOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/subscribeToTone': description: Provides operations to call the subscribeToTone method. post: tags: - app.call summary: Invoke action subscribeToTone description: Subscribe to DTMF (dual-tone multi-frequency signaling) to allow you to be notified when the user presses keys on a dialpad. This action is supported only for calls that are initiated with serviceHostedMediaConfig. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-subscribetotone?view=graph-rest-beta operationId: app.calls.call.subscribeToTone requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.subscribeToToneOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/transfer': description: Provides operations to call the transfer method. post: tags: - app.call summary: Invoke action transfer description: 'Transfer an active peer-to-peer call or group call. A consultative transfer means that the transferor can inform the person they want to transfer the call to (the transferee), before the transfer is made. This is opposed to transfering the call directly.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-transfer?view=graph-rest-beta operationId: app.calls.call.transfer requestBody: description: Action parameters content: application/json: schema: type: object properties: transferTarget: $ref: '#/components/schemas/microsoft.graph.invitationParticipantInfo' transferee: anyOf: - $ref: '#/components/schemas/microsoft.graph.participantInfo' - 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/unmute': description: Provides operations to call the unmute method. post: tags: - app.call summary: Invoke action unmute description: 'Allow the application to unmute itself. This is a server unmute, meaning that the server will start sending audio packets for this participant to other participants again. For more information about how to handle unmute operations, see unmuteParticipantOperation.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-unmute?view=graph-rest-beta operationId: app.calls.call.unmute requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.unmuteParticipantOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/updateRecordingStatus': description: Provides operations to call the updateRecordingStatus method. post: tags: - app.call summary: Invoke action updateRecordingStatus description: Update the application's recording status associated with a call. This requires the use of the Teams policy-based recording solution. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-updaterecordingstatus?view=graph-rest-beta operationId: app.calls.call.updateRecordingStatus requestBody: description: Action parameters content: application/json: schema: type: object properties: status: $ref: '#/components/schemas/microsoft.graph.recordingStatus' clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.updateRecordingStatusOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/operations': description: Provides operations to manage the operations property of the microsoft.graph.call entity. get: tags: - app.call summary: Get operations from app operationId: app.calls.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.commsOperationCollectionResponse' 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: - app.call summary: Create new navigation property to operations for app operationId: app.calls.CreateOperations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.commsOperation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.commsOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/operations/{commsOperation-id}': description: Provides operations to manage the operations property of the microsoft.graph.call entity. get: tags: - app.call summary: Get operations from app operationId: app.calls.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.commsOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - app.call summary: Update the navigation property operations in app operationId: app.calls.UpdateOperations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.commsOperation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.commsOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - app.call summary: Delete navigation property operations for app operationId: app.calls.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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call - name: commsOperation-id in: path description: The unique identifier of commsOperation required: true schema: type: string x-ms-docs-key-type: commsOperation '/app/calls/{call-id}/operations/$count': description: Provides operations to count the resources in the collection. get: tags: - app.call summary: Get the number of the resource operationId: app.calls.operations.GetCount-95c8 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/participants': description: Provides operations to manage the participants property of the microsoft.graph.call entity. get: tags: - app.call summary: Get participants from app operationId: app.calls.ListParticipants 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.participantCollectionResponse' 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: - app.call summary: Create new navigation property to participants for app operationId: app.calls.CreateParticipants requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.participant' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.participant' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/participants/{participant-id}': description: Provides operations to manage the participants property of the microsoft.graph.call entity. get: tags: - app.call summary: Get participants from app operationId: app.calls.GetParticipants parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.participant' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - app.call summary: Update the navigation property participants in app operationId: app.calls.UpdateParticipants requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.participant' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.participant' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - app.call summary: Delete navigation property participants for app operationId: app.calls.DeleteParticipants parameters: - 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call - name: participant-id in: path description: The unique identifier of participant required: true schema: type: string x-ms-docs-key-type: participant '/app/calls/{call-id}/participants/{participant-id}/mute': description: Provides operations to call the mute method. post: tags: - app.call summary: Invoke action mute description: 'Mute a specific participant in the call. This is a server mute, meaning that the server will drop all audio packets for this participant, even if the participant continues to stream audio. For more information about how to handle mute operations, see muteParticipantOperation.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/participant-mute?view=graph-rest-beta operationId: app.calls.call.participants.participant.mute requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.muteParticipantOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call - name: participant-id in: path description: The unique identifier of participant required: true schema: type: string x-ms-docs-key-type: participant x-ms-docs-grouped-path: - '/app/calls/{call-id}/mute' '/app/calls/{call-id}/participants/{participant-id}/startHoldMusic': description: Provides operations to call the startHoldMusic method. post: tags: - app.call summary: Invoke action startHoldMusic description: Put a participant on hold and play music in the background. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/participant-startholdmusic?view=graph-rest-beta operationId: app.calls.call.participants.participant.startHoldMusic requestBody: description: Action parameters content: application/json: schema: type: object properties: customPrompt: anyOf: - $ref: '#/components/schemas/microsoft.graph.prompt' - type: object nullable: true clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.startHoldMusicOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call - name: participant-id in: path description: The unique identifier of participant required: true schema: type: string x-ms-docs-key-type: participant '/app/calls/{call-id}/participants/{participant-id}/stopHoldMusic': description: Provides operations to call the stopHoldMusic method. post: tags: - app.call summary: Invoke action stopHoldMusic description: Reincorporate a participant previously put on hold to the call. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/participant-stopholdmusic?view=graph-rest-beta operationId: app.calls.call.participants.participant.stopHoldMusic requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.stopHoldMusicOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call - name: participant-id in: path description: The unique identifier of participant required: true schema: type: string x-ms-docs-key-type: participant '/app/calls/{call-id}/participants/$count': description: Provides operations to count the resources in the collection. get: tags: - app.call summary: Get the number of the resource operationId: app.calls.participants.GetCount-8856 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/participants/invite': description: Provides operations to call the invite method. post: tags: - app.call summary: Invoke action invite description: 'Invite participants to the active call. For more information about how to handle operations, see commsOperation.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/participant-invite?view=graph-rest-beta operationId: app.calls.call.participants.invite requestBody: description: Action parameters content: application/json: schema: type: object properties: participants: type: array items: $ref: '#/components/schemas/microsoft.graph.invitationParticipantInfo' clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.inviteParticipantsOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/app/calls/{call-id}/participants/muteAll': description: Provides operations to call the muteAll method. post: tags: - app.call summary: Invoke action muteAll description: Mute all participants in the call. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/participant-muteall?view=graph-rest-beta operationId: app.calls.call.participants.muteAll requestBody: description: Action parameters content: application/json: schema: type: object properties: participants: type: array items: type: string nullable: true clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.muteParticipantsOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call /app/calls/$count: description: Provides operations to count the resources in the collection. get: tags: - app.call summary: Get the number of the resource operationId: app.calls.GetCount-d3ca 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' /app/calls/logTeleconferenceDeviceQuality: description: Provides operations to call the logTeleconferenceDeviceQuality method. post: tags: - app.call summary: Invoke action logTeleconferenceDeviceQuality description: 'Log video teleconferencing device quality data. The Cloud Video Interop (CVI) bot represents video teleconferencing (VTC) devices and acts as a back-to-back agent for a VTC device in a conference call. Because a CVI bot is in the middle of the VTC and Microsoft Teams infrastructure as a VTC proxy, it has two media legs. One media leg is between the CVI bot and Teams infrastructure, such as Teams conference server or a Teams client. The other media leg is between the CVI bot and the VTC device. The third-party partners own the VTC media leg and the Teams infrastructure cannot access the quality data of the third-party call leg. This method is only for the CVI partners to provide their media quality data.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-logteleconferencedevicequality?view=graph-rest-beta operationId: app.calls.logTeleconferenceDeviceQuality requestBody: description: Action parameters content: application/json: schema: type: object properties: quality: $ref: '#/components/schemas/microsoft.graph.teleconferenceDeviceQuality' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /app/onlineMeetings: description: Provides operations to manage the onlineMeetings property of the microsoft.graph.commsApplication entity. get: tags: - app.onlineMeeting summary: Get onlineMeetings from app operationId: app.ListOnlineMeetings 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.onlineMeetingCollectionResponse' 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: - app.onlineMeeting summary: Create new navigation property to onlineMeetings for app operationId: app.CreateOnlineMeetings requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onlineMeeting' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onlineMeeting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/app/onlineMeetings/{onlineMeeting-id}': description: Provides operations to manage the onlineMeetings property of the microsoft.graph.commsApplication entity. get: tags: - app.onlineMeeting summary: Get onlineMeetings from app operationId: app.GetOnlineMeetings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onlineMeeting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - app.onlineMeeting summary: Update the navigation property onlineMeetings in app operationId: app.UpdateOnlineMeetings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onlineMeeting' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onlineMeeting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - app.onlineMeeting summary: Delete navigation property onlineMeetings for app operationId: app.DeleteOnlineMeetings parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting x-ms-docs-grouped-path: - '/app/onlineMeetings(joinWebUrl=''{joinWebUrl}'')' '/app/onlineMeetings/{onlineMeeting-id}/aiInsights': description: Provides operations to manage the aiInsights property of the microsoft.graph.onlineMeeting entity. get: tags: - app.onlineMeeting summary: Get aiInsights from app description: The AI insights generated for an online meeting. Read-only. operationId: app.onlineMeetings.ListAiInsights 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.callAiInsightCollectionResponse' 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: - app.onlineMeeting summary: Create new navigation property to aiInsights for app operationId: app.onlineMeetings.CreateAiInsights requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callAiInsight' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callAiInsight' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/aiInsights/{callAiInsight-id}': description: Provides operations to manage the aiInsights property of the microsoft.graph.onlineMeeting entity. get: tags: - app.onlineMeeting summary: Get aiInsights from app description: The AI insights generated for an online meeting. Read-only. operationId: app.onlineMeetings.GetAiInsights parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callAiInsight' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - app.onlineMeeting summary: Update the navigation property aiInsights in app operationId: app.onlineMeetings.UpdateAiInsights requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callAiInsight' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callAiInsight' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - app.onlineMeeting summary: Delete navigation property aiInsights for app operationId: app.onlineMeetings.DeleteAiInsights parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: callAiInsight-id in: path description: The unique identifier of callAiInsight required: true schema: type: string x-ms-docs-key-type: callAiInsight '/app/onlineMeetings/{onlineMeeting-id}/aiInsights/$count': description: Provides operations to count the resources in the collection. get: tags: - app.onlineMeeting summary: Get the number of the resource operationId: app.onlineMeetings.aiInsights.GetCount-416a 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/alternativeRecording': description: Provides operations to manage the media for the commsApplication entity. get: tags: - app.onlineMeeting summary: Get alternativeRecording for the navigation property onlineMeetings from app description: The content stream of the alternative recording of a Microsoft Teams live event. Read-only. operationId: app.GetOnlineMeetingsAlternativeRecording 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: - app.onlineMeeting summary: Update alternativeRecording for the navigation property onlineMeetings in app description: The content stream of the alternative recording of a Microsoft Teams live event. Read-only. operationId: app.UpdateOnlineMeetingsAlternativeRecording 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: - app.onlineMeeting summary: Delete alternativeRecording for the navigation property onlineMeetings in app description: The content stream of the alternative recording of a Microsoft Teams live event. Read-only. operationId: app.DeleteOnlineMeetingsAlternativeRecording parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/attendanceReports': description: Provides operations to manage the attendanceReports property of the microsoft.graph.onlineMeetingBase entity. get: tags: - app.onlineMeeting summary: Get attendanceReports from app description: The attendance reports of an online meeting. Read-only. operationId: app.onlineMeetings.ListAttendanceReports 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.meetingAttendanceReportCollectionResponse' 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: - app.onlineMeeting summary: Create new navigation property to attendanceReports for app operationId: app.onlineMeetings.CreateAttendanceReports requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}': description: Provides operations to manage the attendanceReports property of the microsoft.graph.onlineMeetingBase entity. get: tags: - app.onlineMeeting summary: Get attendanceReports from app description: The attendance reports of an online meeting. Read-only. operationId: app.onlineMeetings.GetAttendanceReports parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - app.onlineMeeting summary: Update the navigation property attendanceReports in app operationId: app.onlineMeetings.UpdateAttendanceReports requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - app.onlineMeeting summary: Delete navigation property attendanceReports for app operationId: app.onlineMeetings.DeleteAttendanceReports parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: meetingAttendanceReport-id in: path description: The unique identifier of meetingAttendanceReport required: true schema: type: string x-ms-docs-key-type: meetingAttendanceReport '/app/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords': description: Provides operations to manage the attendanceRecords property of the microsoft.graph.meetingAttendanceReport entity. get: tags: - app.onlineMeeting summary: Get attendanceRecords from app description: List of attendance records of an attendance report. Read-only. operationId: app.onlineMeetings.attendanceReports.ListAttendanceRecords 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.attendanceRecordCollectionResponse' 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: - app.onlineMeeting summary: Create new navigation property to attendanceRecords for app operationId: app.onlineMeetings.attendanceReports.CreateAttendanceRecords requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: meetingAttendanceReport-id in: path description: The unique identifier of meetingAttendanceReport required: true schema: type: string x-ms-docs-key-type: meetingAttendanceReport x-ms-docs-grouped-path: - '/app/onlineMeetings/{onlineMeeting-id}/meetingAttendanceReport/attendanceRecords' '/app/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}': description: Provides operations to manage the attendanceRecords property of the microsoft.graph.meetingAttendanceReport entity. get: tags: - app.onlineMeeting summary: Get attendanceRecords from app description: List of attendance records of an attendance report. Read-only. operationId: app.onlineMeetings.attendanceReports.GetAttendanceRecords parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - app.onlineMeeting summary: Update the navigation property attendanceRecords in app operationId: app.onlineMeetings.attendanceReports.UpdateAttendanceRecords requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - app.onlineMeeting summary: Delete navigation property attendanceRecords for app operationId: app.onlineMeetings.attendanceReports.DeleteAttendanceRecords parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: meetingAttendanceReport-id in: path description: The unique identifier of meetingAttendanceReport required: true schema: type: string x-ms-docs-key-type: meetingAttendanceReport - name: attendanceRecord-id in: path description: The unique identifier of attendanceRecord required: true schema: type: string x-ms-docs-key-type: attendanceRecord x-ms-docs-grouped-path: - '/app/onlineMeetings/{onlineMeeting-id}/meetingAttendanceReport/attendanceRecords/{attendanceRecord-id}' '/app/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count': description: Provides operations to count the resources in the collection. get: tags: - app.onlineMeeting summary: Get the number of the resource operationId: app.onlineMeetings.attendanceReports.attendanceRecords.GetCount-7fe1 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: meetingAttendanceReport-id in: path description: The unique identifier of meetingAttendanceReport required: true schema: type: string x-ms-docs-key-type: meetingAttendanceReport '/app/onlineMeetings/{onlineMeeting-id}/attendanceReports/$count': description: Provides operations to count the resources in the collection. get: tags: - app.onlineMeeting summary: Get the number of the resource operationId: app.onlineMeetings.attendanceReports.GetCount-c3d7 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/attendeeReport': description: Provides operations to manage the media for the commsApplication entity. get: tags: - app.onlineMeeting summary: Get attendeeReport for the navigation property onlineMeetings from app description: The content stream of the attendee report of a Teams live event. Read-only. operationId: app.GetOnlineMeetingsAttendeeReport 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: - app.onlineMeeting summary: Update attendeeReport for the navigation property onlineMeetings in app description: The content stream of the attendee report of a Teams live event. Read-only. operationId: app.UpdateOnlineMeetingsAttendeeReport 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: - app.onlineMeeting summary: Delete attendeeReport for the navigation property onlineMeetings in app description: The content stream of the attendee report of a Teams live event. Read-only. operationId: app.DeleteOnlineMeetingsAttendeeReport parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/broadcastRecording': description: Provides operations to manage the media for the commsApplication entity. get: tags: - app.onlineMeeting summary: Get broadcastRecording for the navigation property onlineMeetings from app operationId: app.GetOnlineMeetingsBroadcastRecording 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: - app.onlineMeeting summary: Update broadcastRecording for the navigation property onlineMeetings in app operationId: app.UpdateOnlineMeetingsBroadcastRecording 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: - app.onlineMeeting summary: Delete broadcastRecording for the navigation property onlineMeetings in app operationId: app.DeleteOnlineMeetingsBroadcastRecording parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/meetingAttendanceReport': description: Provides operations to manage the meetingAttendanceReport property of the microsoft.graph.onlineMeeting entity. get: tags: - app.onlineMeeting summary: Get meetingAttendanceReport from app description: The attendance report of the latest online meeting session. Read-only. operationId: app.onlineMeetings.GetMeetingAttendanceReport parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - app.onlineMeeting summary: Update the navigation property meetingAttendanceReport in app operationId: app.onlineMeetings.UpdateMeetingAttendanceReport requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - app.onlineMeeting summary: Delete navigation property meetingAttendanceReport for app operationId: app.onlineMeetings.DeleteMeetingAttendanceReport parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/meetingAttendanceReport/attendanceRecords': description: Provides operations to manage the attendanceRecords property of the microsoft.graph.meetingAttendanceReport entity. get: tags: - app.onlineMeeting summary: Get attendanceRecords from app description: List of attendance records of an attendance report. Read-only. operationId: app.onlineMeetings.meetingAttendanceReport.ListAttendanceRecords 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.attendanceRecordCollectionResponse' 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: - app.onlineMeeting summary: Create new navigation property to attendanceRecords for app operationId: app.onlineMeetings.meetingAttendanceReport.CreateAttendanceRecords requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting x-ms-docs-grouped-path: - '/app/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords' '/app/onlineMeetings/{onlineMeeting-id}/meetingAttendanceReport/attendanceRecords/{attendanceRecord-id}': description: Provides operations to manage the attendanceRecords property of the microsoft.graph.meetingAttendanceReport entity. get: tags: - app.onlineMeeting summary: Get attendanceRecords from app description: List of attendance records of an attendance report. Read-only. operationId: app.onlineMeetings.meetingAttendanceReport.GetAttendanceRecords parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - app.onlineMeeting summary: Update the navigation property attendanceRecords in app operationId: app.onlineMeetings.meetingAttendanceReport.UpdateAttendanceRecords requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - app.onlineMeeting summary: Delete navigation property attendanceRecords for app operationId: app.onlineMeetings.meetingAttendanceReport.DeleteAttendanceRecords parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: attendanceRecord-id in: path description: The unique identifier of attendanceRecord required: true schema: type: string x-ms-docs-key-type: attendanceRecord x-ms-docs-grouped-path: - '/app/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}' '/app/onlineMeetings/{onlineMeeting-id}/meetingAttendanceReport/attendanceRecords/$count': description: Provides operations to count the resources in the collection. get: tags: - app.onlineMeeting summary: Get the number of the resource operationId: app.onlineMeetings.meetingAttendanceReport.attendanceRecords.GetCount-39c5 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/getVirtualAppointmentJoinWebUrl()': description: Provides operations to call the getVirtualAppointmentJoinWebUrl method. get: tags: - app.onlineMeeting summary: Invoke function getVirtualAppointmentJoinWebUrl description: 'Get a join web URL for a Teams Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-beta operationId: app.onlineMeetings.onlineMeeting.getVirtualAppointmentJoinWebUrl responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting x-ms-docs-grouped-path: - '/app/onlineMeetings(joinWebUrl=''{joinWebUrl}'')/getVirtualAppointmentJoinWebUrl()' '/app/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentReminderSms': description: Provides operations to call the sendVirtualAppointmentReminderSms method. post: tags: - app.onlineMeeting summary: Invoke action sendVirtualAppointmentReminderSms description: Send an SMS reminder to external attendees for a Teams Virtual Appointment. This feature requires Teams Premium and attendees must have a valid United States phone number to receive SMS notifications. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-beta operationId: app.onlineMeetings.onlineMeeting.sendVirtualAppointmentReminderSms requestBody: description: Action parameters content: application/json: schema: type: object properties: remindBeforeTimeInMinutesType: anyOf: - $ref: '#/components/schemas/microsoft.graph.remindBeforeTimeInMinutesType' - type: object nullable: true attendees: type: array items: $ref: '#/components/schemas/microsoft.graph.attendeeNotificationInfo' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting x-ms-docs-grouped-path: - '/app/onlineMeetings(joinWebUrl=''{joinWebUrl}'')/sendVirtualAppointmentReminderSms' '/app/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentSms': description: Provides operations to call the sendVirtualAppointmentSms method. post: tags: - app.onlineMeeting summary: Invoke action sendVirtualAppointmentSms description: 'Send an SMS notification to external attendees when a Teams Virtual Appointment is confirmed, rescheduled, or canceled. This feature requires Teams Premium. Attendees must have a valid United States phone number to receive these SMS notifications.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-beta operationId: app.onlineMeetings.onlineMeeting.sendVirtualAppointmentSms requestBody: description: Action parameters content: application/json: schema: type: object properties: messageType: anyOf: - $ref: '#/components/schemas/microsoft.graph.virtualAppointmentMessageType' - type: object nullable: true attendees: type: array items: $ref: '#/components/schemas/microsoft.graph.attendeeNotificationInfo' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting x-ms-docs-grouped-path: - '/app/onlineMeetings(joinWebUrl=''{joinWebUrl}'')/sendVirtualAppointmentSms' '/app/onlineMeetings/{onlineMeeting-id}/recording': description: Provides operations to manage the media for the commsApplication entity. get: tags: - app.onlineMeeting summary: Get recording for the navigation property onlineMeetings from app description: The content stream of the recording of a Teams live event. Read-only. operationId: app.GetOnlineMeetingsRecording 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: - app.onlineMeeting summary: Update recording for the navigation property onlineMeetings in app description: The content stream of the recording of a Teams live event. Read-only. operationId: app.UpdateOnlineMeetingsRecording 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: - app.onlineMeeting summary: Delete recording for the navigation property onlineMeetings in app description: The content stream of the recording of a Teams live event. Read-only. operationId: app.DeleteOnlineMeetingsRecording parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/recordings': description: Provides operations to manage the recordings property of the microsoft.graph.onlineMeeting entity. get: tags: - app.onlineMeeting summary: Get recordings from app description: The recordings of an online meeting. Read-only. operationId: app.onlineMeetings.ListRecordings 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.callRecordingCollectionResponse' 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: - app.onlineMeeting summary: Create new navigation property to recordings for app operationId: app.onlineMeetings.CreateRecordings requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecording' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecording' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}': description: Provides operations to manage the recordings property of the microsoft.graph.onlineMeeting entity. get: tags: - app.onlineMeeting summary: Get recordings from app description: The recordings of an online meeting. Read-only. operationId: app.onlineMeetings.GetRecordings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecording' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - app.onlineMeeting summary: Update the navigation property recordings in app operationId: app.onlineMeetings.UpdateRecordings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecording' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecording' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - app.onlineMeeting summary: Delete navigation property recordings for app operationId: app.onlineMeetings.DeleteRecordings parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: callRecording-id in: path description: The unique identifier of callRecording required: true schema: type: string x-ms-docs-key-type: callRecording '/app/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content': description: Provides operations to manage the media for the commsApplication entity. get: tags: - app.onlineMeeting summary: Get content for the navigation property recordings from app description: The content of the recording. Read-only. operationId: app.onlineMeetings.GetRecordingsContent 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: - app.onlineMeeting summary: Update content for the navigation property recordings in app description: The content of the recording. Read-only. operationId: app.onlineMeetings.UpdateRecordingsContent 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.callRecording' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - app.onlineMeeting summary: Delete content for the navigation property recordings in app description: The content of the recording. Read-only. operationId: app.onlineMeetings.DeleteRecordingsContent parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: callRecording-id in: path description: The unique identifier of callRecording required: true schema: type: string x-ms-docs-key-type: callRecording '/app/onlineMeetings/{onlineMeeting-id}/recordings/$count': description: Provides operations to count the resources in the collection. get: tags: - app.onlineMeeting summary: Get the number of the resource operationId: app.onlineMeetings.recordings.GetCount-2623 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/recordings/delta()': description: Provides operations to call the delta method. get: tags: - app.onlineMeeting summary: Invoke function delta operationId: app.onlineMeetings.onlineMeeting.recordings.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 callRecording type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.callRecording' 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting x-ms-docs-grouped-path: - '/app/onlineMeetings/{onlineMeeting-id}/transcripts/delta()' '/app/onlineMeetings/{onlineMeeting-id}/registration': description: Provides operations to manage the registration property of the microsoft.graph.onlineMeeting entity. get: tags: - app.onlineMeeting summary: Get registration from app description: The registration that is enabled for an online meeting. One online meeting can only have one registration enabled. operationId: app.onlineMeetings.GetRegistration parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation patch: tags: - app.onlineMeeting summary: Update the navigation property registration in app operationId: app.onlineMeetings.UpdateRegistration requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistration' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation delete: tags: - app.onlineMeeting summary: Delete navigation property registration for app operationId: app.onlineMeetings.DeleteRegistration parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/registration/customQuestions': description: Provides operations to manage the customQuestions property of the microsoft.graph.meetingRegistration entity. get: tags: - app.onlineMeeting summary: Get customQuestions from app description: Custom registration questions. operationId: app.onlineMeetings.registration.ListCustomQuestions 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.meetingRegistrationQuestionCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - app.onlineMeeting summary: Create new navigation property to customQuestions for app operationId: app.onlineMeetings.registration.CreateCustomQuestions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrationQuestion' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrationQuestion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}': description: Provides operations to manage the customQuestions property of the microsoft.graph.meetingRegistration entity. get: tags: - app.onlineMeeting summary: Get customQuestions from app description: Custom registration questions. operationId: app.onlineMeetings.registration.GetCustomQuestions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrationQuestion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation patch: tags: - app.onlineMeeting summary: Update the navigation property customQuestions in app operationId: app.onlineMeetings.registration.UpdateCustomQuestions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrationQuestion' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrationQuestion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation delete: tags: - app.onlineMeeting summary: Delete navigation property customQuestions for app operationId: app.onlineMeetings.registration.DeleteCustomQuestions parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: meetingRegistrationQuestion-id in: path description: The unique identifier of meetingRegistrationQuestion required: true schema: type: string x-ms-docs-key-type: meetingRegistrationQuestion '/app/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/$count': description: Provides operations to count the resources in the collection. get: tags: - app.onlineMeeting summary: Get the number of the resource operationId: app.onlineMeetings.registration.customQuestions.GetCount-f299 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' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/registration/registrants': description: Provides operations to manage the registrants property of the microsoft.graph.meetingRegistrationBase entity. get: tags: - app.onlineMeeting summary: Get registrants from app description: Registrants of the online meeting. operationId: app.onlineMeetings.registration.ListRegistrants 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.meetingRegistrantBaseCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - app.onlineMeeting summary: Create new navigation property to registrants for app operationId: app.onlineMeetings.registration.CreateRegistrants requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrantBase' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrantBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrantBase-id}': description: Provides operations to manage the registrants property of the microsoft.graph.meetingRegistrationBase entity. get: tags: - app.onlineMeeting summary: Get registrants from app description: Registrants of the online meeting. operationId: app.onlineMeetings.registration.GetRegistrants parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrantBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation patch: tags: - app.onlineMeeting summary: Update the navigation property registrants in app operationId: app.onlineMeetings.registration.UpdateRegistrants requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrantBase' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrantBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation delete: tags: - app.onlineMeeting summary: Delete navigation property registrants for app operationId: app.onlineMeetings.registration.DeleteRegistrants parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: meetingRegistrantBase-id in: path description: The unique identifier of meetingRegistrantBase required: true schema: type: string x-ms-docs-key-type: meetingRegistrantBase '/app/onlineMeetings/{onlineMeeting-id}/registration/registrants/$count': description: Provides operations to count the resources in the collection. get: tags: - app.onlineMeeting summary: Get the number of the resource operationId: app.onlineMeetings.registration.registrants.GetCount-d7ae 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' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/transcripts': description: Provides operations to manage the transcripts property of the microsoft.graph.onlineMeeting entity. get: tags: - app.onlineMeeting summary: Get transcripts from app description: The transcripts of an online meeting. Read-only. operationId: app.onlineMeetings.ListTranscripts 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.callTranscriptCollectionResponse' 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: - app.onlineMeeting summary: Create new navigation property to transcripts for app operationId: app.onlineMeetings.CreateTranscripts requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callTranscript' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callTranscript' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}': description: Provides operations to manage the transcripts property of the microsoft.graph.onlineMeeting entity. get: tags: - app.onlineMeeting summary: Get transcripts from app description: The transcripts of an online meeting. Read-only. operationId: app.onlineMeetings.GetTranscripts parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callTranscript' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - app.onlineMeeting summary: Update the navigation property transcripts in app operationId: app.onlineMeetings.UpdateTranscripts requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callTranscript' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callTranscript' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - app.onlineMeeting summary: Delete navigation property transcripts for app operationId: app.onlineMeetings.DeleteTranscripts parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: callTranscript-id in: path description: The unique identifier of callTranscript required: true schema: type: string x-ms-docs-key-type: callTranscript '/app/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content': description: Provides operations to manage the media for the commsApplication entity. get: tags: - app.onlineMeeting summary: Get content for the navigation property transcripts from app description: The content of the transcript. Read-only. operationId: app.onlineMeetings.GetTranscriptsContent 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: - app.onlineMeeting summary: Update content for the navigation property transcripts in app description: The content of the transcript. Read-only. operationId: app.onlineMeetings.UpdateTranscriptsContent 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.callTranscript' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - app.onlineMeeting summary: Delete content for the navigation property transcripts in app description: The content of the transcript. Read-only. operationId: app.onlineMeetings.DeleteTranscriptsContent parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: callTranscript-id in: path description: The unique identifier of callTranscript required: true schema: type: string x-ms-docs-key-type: callTranscript '/app/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent': description: Provides operations to manage the media for the commsApplication entity. get: tags: - app.onlineMeeting summary: Get metadataContent for the navigation property transcripts from app description: The time-aligned metadata of the utterances in the transcript. Read-only. operationId: app.onlineMeetings.GetTranscriptsMetadataContent 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: - app.onlineMeeting summary: Update metadataContent for the navigation property transcripts in app description: The time-aligned metadata of the utterances in the transcript. Read-only. operationId: app.onlineMeetings.UpdateTranscriptsMetadataContent 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: - app.onlineMeeting summary: Delete metadataContent for the navigation property transcripts in app description: The time-aligned metadata of the utterances in the transcript. Read-only. operationId: app.onlineMeetings.DeleteTranscriptsMetadataContent parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: callTranscript-id in: path description: The unique identifier of callTranscript required: true schema: type: string x-ms-docs-key-type: callTranscript '/app/onlineMeetings/{onlineMeeting-id}/transcripts/$count': description: Provides operations to count the resources in the collection. get: tags: - app.onlineMeeting summary: Get the number of the resource operationId: app.onlineMeetings.transcripts.GetCount-7455 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/app/onlineMeetings/{onlineMeeting-id}/transcripts/delta()': description: Provides operations to call the delta method. get: tags: - app.onlineMeeting summary: Invoke function delta operationId: app.onlineMeetings.onlineMeeting.transcripts.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 callTranscript type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.callTranscript' 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting x-ms-docs-grouped-path: - '/app/onlineMeetings/{onlineMeeting-id}/recordings/delta()' '/app/onlineMeetings(joinWebUrl=''{joinWebUrl}'')': description: Provides operations to manage the onlineMeetings property of the microsoft.graph.commsApplication entity. get: tags: - app.onlineMeeting summary: Get onlineMeetings from app operationId: app.onlineMeetings.GetByJoinWebUrl parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onlineMeeting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - app.onlineMeeting summary: Update the navigation property onlineMeetings in app operationId: app.onlineMeetings.UpdateByJoinWebUrl requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onlineMeeting' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onlineMeeting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - app.onlineMeeting summary: Delete navigation property onlineMeetings for app operationId: app.onlineMeetings.DeleteByJoinWebUrl parameters: - 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: joinWebUrl in: path description: Alternate key of onlineMeeting required: true schema: type: string nullable: true x-ms-docs-grouped-path: - '/app/onlineMeetings/{onlineMeeting-id}' '/app/onlineMeetings(joinWebUrl=''{joinWebUrl}'')/getVirtualAppointmentJoinWebUrl()': description: Provides operations to call the getVirtualAppointmentJoinWebUrl method. get: tags: - app.onlineMeeting summary: Invoke function getVirtualAppointmentJoinWebUrl description: 'Get a join web URL for a Teams Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-beta operationId: app.onlineMeetings.joinWebUrl.getVirtualAppointmentJoinWebUrl responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: joinWebUrl in: path description: Alternate key of onlineMeeting required: true schema: type: string nullable: true x-ms-docs-grouped-path: - '/app/onlineMeetings/{onlineMeeting-id}/getVirtualAppointmentJoinWebUrl()' '/app/onlineMeetings(joinWebUrl=''{joinWebUrl}'')/sendVirtualAppointmentReminderSms': description: Provides operations to call the sendVirtualAppointmentReminderSms method. post: tags: - app.onlineMeeting summary: Invoke action sendVirtualAppointmentReminderSms description: Send an SMS reminder to external attendees for a Teams Virtual Appointment. This feature requires Teams Premium and attendees must have a valid United States phone number to receive SMS notifications. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-beta operationId: app.onlineMeetings.joinWebUrl.sendVirtualAppointmentReminderSms requestBody: description: Action parameters content: application/json: schema: type: object properties: remindBeforeTimeInMinutesType: anyOf: - $ref: '#/components/schemas/microsoft.graph.remindBeforeTimeInMinutesType' - type: object nullable: true attendees: type: array items: $ref: '#/components/schemas/microsoft.graph.attendeeNotificationInfo' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: joinWebUrl in: path description: Alternate key of onlineMeeting required: true schema: type: string nullable: true x-ms-docs-grouped-path: - '/app/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentReminderSms' '/app/onlineMeetings(joinWebUrl=''{joinWebUrl}'')/sendVirtualAppointmentSms': description: Provides operations to call the sendVirtualAppointmentSms method. post: tags: - app.onlineMeeting summary: Invoke action sendVirtualAppointmentSms description: 'Send an SMS notification to external attendees when a Teams Virtual Appointment is confirmed, rescheduled, or canceled. This feature requires Teams Premium. Attendees must have a valid United States phone number to receive these SMS notifications.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-beta operationId: app.onlineMeetings.joinWebUrl.sendVirtualAppointmentSms requestBody: description: Action parameters content: application/json: schema: type: object properties: messageType: anyOf: - $ref: '#/components/schemas/microsoft.graph.virtualAppointmentMessageType' - type: object nullable: true attendees: type: array items: $ref: '#/components/schemas/microsoft.graph.attendeeNotificationInfo' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: joinWebUrl in: path description: Alternate key of onlineMeeting required: true schema: type: string nullable: true x-ms-docs-grouped-path: - '/app/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentSms' /app/onlineMeetings/$count: description: Provides operations to count the resources in the collection. get: tags: - app.onlineMeeting summary: Get the number of the resource operationId: app.onlineMeetings.GetCount-6289 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' /app/onlineMeetings/createOrGet: description: Provides operations to call the createOrGet method. post: tags: - app.onlineMeeting summary: Invoke action createOrGet description: 'Create an onlineMeeting object with a custom specified external ID. If the external ID already exists, this API will return the onlineMeeting object with that external ID. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-beta operationId: app.onlineMeetings.createOrGet requestBody: description: Action parameters content: application/json: schema: type: object properties: chatInfo: anyOf: - $ref: '#/components/schemas/microsoft.graph.chatInfo' - type: object 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 externalId: type: string participants: anyOf: - $ref: '#/components/schemas/microsoft.graph.meetingParticipants' - type: object 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 subject: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onlineMeeting' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action '/app/onlineMeetings/getAllRecordings(meetingOrganizerUserId=''@meetingOrganizerUserId'',startDateTime=@startDateTime,endDateTime=@endDateTime)': description: Provides operations to call the getAllRecordings method. get: tags: - app.onlineMeeting summary: Invoke function getAllRecordings description: 'Get all recordings from scheduled onlineMeeting instances for which the specified user is the organizer. This API currently doesn''t support getting call recordings from channel meetings. You can apply the delta function on getAllRecordings to synchronize and get callRecording resources as they''re added for onlineMeeting instances organized by the specified user. The delta query supports both full synchronization and incremental synchronization. Full synchronization gets all the recordings for online meetings organized by the user. Incremental synchronization gets recordings that are added since the last synchronization. Typically, you do an initial full synchronization, and then get incremental changes to that recording view periodically. Find more information in the delta query documentation. For more examples, see callRecording: delta. To learn more about using 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/onlinemeeting-getallrecordings?view=graph-rest-beta operationId: app.onlineMeetings.getAllRecordings 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 callRecording type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.callRecording' 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: meetingOrganizerUserId in: query description: 'Usage: meetingOrganizerUserId=''@meetingOrganizerUserId''' schema: type: string nullable: true - name: startDateTime in: query description: 'Usage: startDateTime=@startDateTime' schema: 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 - name: endDateTime in: query description: 'Usage: endDateTime=@endDateTime' schema: 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 '/app/onlineMeetings/getAllTranscripts(meetingOrganizerUserId=''@meetingOrganizerUserId'',startDateTime=@startDateTime,endDateTime=@endDateTime)': description: Provides operations to call the getAllTranscripts method. get: tags: - app.onlineMeeting summary: Invoke function getAllTranscripts description: 'Get all transcripts from scheduled onlineMeeting instances for which the specified user is the organizer. This API currently doesn''t support getting call transcripts from channel meetings. You can apply the delta function on getAllTranscripts to synchronize and get callTranscript resources as they''re added for onlineMeeting instances organized by the specified user. Delta query supports both full synchronization and incremental synchronization. Full synchronization gets all the transcripts for online meetings organized by the user. Incremental synchronization gets transcripts that are added since the last synchronization. Typically, you do an initial full synchronization, and then get incremental changes to that recording view periodically. For more information, see delta query. For more examples, see callTranscript: delta. To learn more about using 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/onlinemeeting-getalltranscripts?view=graph-rest-beta operationId: app.onlineMeetings.getAllTranscripts 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 callTranscript type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.callTranscript' 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: meetingOrganizerUserId in: query description: 'Usage: meetingOrganizerUserId=''@meetingOrganizerUserId''' schema: type: string nullable: true - name: startDateTime in: query description: 'Usage: startDateTime=@startDateTime' schema: 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 - name: endDateTime in: query description: 'Usage: endDateTime=@endDateTime' schema: 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 /appCatalogs: description: Provides operations to manage the appCatalogs singleton. get: tags: - appCatalogs.appCatalogs summary: Get appCatalogs operationId: appCatalogs.appCatalogs.GetAppCatalogs parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.appCatalogs' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - appCatalogs.appCatalogs summary: Update appCatalogs operationId: appCatalogs.appCatalogs.UpdateAppCatalogs requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.appCatalogs' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.appCatalogs' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation /appCatalogs/teamsApps: description: Provides operations to manage the teamsApps property of the microsoft.graph.appCatalogs entity. get: tags: - appCatalogs.teamsApp summary: List teamsApp description: 'List apps from the Microsoft Teams app catalog, including apps from the Microsoft Teams store and apps from your organization''s app catalog (the tenant app catalog). To get apps from your organization''s app catalog only, specify organization as the distributionMethod in the request.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/appcatalogs-list-teamsapps?view=graph-rest-beta operationId: appCatalogs.ListTeamsApps 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.teamsAppCollectionResponse' 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: - appCatalogs.teamsApp summary: Publish teamsApp description: "Publish an app to the Microsoft Teams app catalog.\nSpecifically, this API publishes the app to your organization's catalog (the tenant app catalog);\nthe created resource has a distributionMethod property value of organization. The requiresReview property allows any user to submit an app for review by an administrator. Admins can approve or reject these apps via this API or the Microsoft Teams admin center." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/teamsapp-publish?view=graph-rest-beta operationId: appCatalogs.CreateTeamsApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsApp' required: true responses: 2XX: description: Created 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 '/appCatalogs/teamsApps/{teamsApp-id}': description: Provides operations to manage the teamsApps property of the microsoft.graph.appCatalogs entity. get: tags: - appCatalogs.teamsApp summary: Get teamsApps from appCatalogs operationId: appCatalogs.GetTeamsApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: 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 patch: tags: - appCatalogs.teamsApp summary: Update the navigation property teamsApps in appCatalogs operationId: appCatalogs.UpdateTeamsApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsApp' required: true responses: 2XX: description: Success 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 delete: tags: - appCatalogs.teamsApp summary: Delete teamsApp description: 'Delete an app from an organization''s app catalog (the tenant app catalog). To delete an app, the distributionMethod property for the app must be set to organization. You can also use this API to remove a submitted app from the review process.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/teamsapp-delete?view=graph-rest-beta operationId: appCatalogs.DeleteTeamsApps parameters: - 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: teamsApp-id in: path description: The unique identifier of teamsApp required: true schema: type: string x-ms-docs-key-type: teamsApp '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions': description: Provides operations to manage the appDefinitions property of the microsoft.graph.teamsApp entity. get: tags: - appCatalogs.teamsApp summary: Get appDefinitions from appCatalogs description: The details for each version of the app. operationId: appCatalogs.teamsApps.ListAppDefinitions 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.teamsAppDefinitionCollectionResponse' 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: - appCatalogs.teamsApp summary: Update teamsApp description: 'Update an app previously published to the Microsoft Teams app catalog. To update an app, the distributionMethod property for the app must be set to organization. This API specifically updates an app published to your organization''s app catalog (the tenant app catalog). ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/teamsapp-update?view=graph-rest-beta operationId: appCatalogs.teamsApps.CreateAppDefinitions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition' required: true responses: 2XX: description: Created 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: teamsApp-id in: path description: The unique identifier of teamsApp required: true schema: type: string x-ms-docs-key-type: teamsApp '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}': description: Provides operations to manage the appDefinitions property of the microsoft.graph.teamsApp entity. get: tags: - appCatalogs.teamsApp summary: Get appDefinitions from appCatalogs description: The details for each version of the app. operationId: appCatalogs.teamsApps.GetAppDefinitions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: 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 patch: tags: - appCatalogs.teamsApp summary: Publish teamsApp description: "Publish an app to the Microsoft Teams app catalog.\nSpecifically, this API publishes the app to your organization's catalog (the tenant app catalog);\nthe created resource has a distributionMethod property value of organization. The requiresReview property allows any user to submit an app for review by an administrator. Admins can approve or reject these apps via this API or the Microsoft Teams admin center." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/teamsapp-publish?view=graph-rest-beta operationId: appCatalogs.teamsApps.UpdateAppDefinitions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppDefinition' required: true responses: 2XX: description: Success 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 delete: tags: - appCatalogs.teamsApp summary: Delete navigation property appDefinitions for appCatalogs operationId: appCatalogs.teamsApps.DeleteAppDefinitions parameters: - 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: teamsApp-id in: path description: The unique identifier of teamsApp required: true schema: type: string x-ms-docs-key-type: teamsApp - name: teamsAppDefinition-id in: path description: The unique identifier of teamsAppDefinition required: true schema: type: string x-ms-docs-key-type: teamsAppDefinition '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot': description: Provides operations to manage the bot property of the microsoft.graph.teamsAppDefinition entity. get: tags: - appCatalogs.teamsApp summary: Get teamworkBot description: Get the bot associated with a specific definition of the TeamsApp. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/teamworkbot-get?view=graph-rest-beta operationId: appCatalogs.teamsApps.appDefinitions.GetBot parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkBot' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - appCatalogs.teamsApp summary: Update the navigation property bot in appCatalogs operationId: appCatalogs.teamsApps.appDefinitions.UpdateBot requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkBot' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkBot' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - appCatalogs.teamsApp summary: Delete navigation property bot for appCatalogs operationId: appCatalogs.teamsApps.appDefinitions.DeleteBot parameters: - 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: teamsApp-id in: path description: The unique identifier of teamsApp required: true schema: type: string x-ms-docs-key-type: teamsApp - name: teamsAppDefinition-id in: path description: The unique identifier of teamsAppDefinition required: true schema: type: string x-ms-docs-key-type: teamsAppDefinition '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon': description: Provides operations to manage the colorIcon property of the microsoft.graph.teamsAppDefinition entity. get: tags: - appCatalogs.teamsApp summary: Get teamsAppIcon description: Retrieve a Teams app icon associated with a specific definition of an app. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/teamsappicon-get?view=graph-rest-beta operationId: appCatalogs.teamsApps.appDefinitions.GetColorIcon parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppIcon' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - appCatalogs.teamsApp summary: Update the navigation property colorIcon in appCatalogs operationId: appCatalogs.teamsApps.appDefinitions.UpdateColorIcon requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppIcon' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppIcon' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - appCatalogs.teamsApp summary: Delete navigation property colorIcon for appCatalogs operationId: appCatalogs.teamsApps.appDefinitions.DeleteColorIcon parameters: - 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: teamsApp-id in: path description: The unique identifier of teamsApp required: true schema: type: string x-ms-docs-key-type: teamsApp - name: teamsAppDefinition-id in: path description: The unique identifier of teamsAppDefinition required: true schema: type: string x-ms-docs-key-type: teamsAppDefinition '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent': description: Provides operations to manage the hostedContent property of the microsoft.graph.teamsAppIcon entity. get: tags: - appCatalogs.teamsApp summary: Get teamworkHostedContent description: Retrieve the hosted content in an app's icon. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/teamworkhostedcontent-get?view=graph-rest-beta operationId: appCatalogs.teamsApps.appDefinitions.colorIcon.GetHostedContent parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - appCatalogs.teamsApp summary: Update the navigation property hostedContent in appCatalogs operationId: appCatalogs.teamsApps.appDefinitions.colorIcon.UpdateHostedContent requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - appCatalogs.teamsApp summary: Delete navigation property hostedContent for appCatalogs operationId: appCatalogs.teamsApps.appDefinitions.colorIcon.DeleteHostedContent parameters: - 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: teamsApp-id in: path description: The unique identifier of teamsApp required: true schema: type: string x-ms-docs-key-type: teamsApp - name: teamsAppDefinition-id in: path description: The unique identifier of teamsAppDefinition required: true schema: type: string x-ms-docs-key-type: teamsAppDefinition x-ms-docs-grouped-path: - '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent' '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent/$value': description: Provides operations to manage the media for the appCatalogs entity. get: tags: - appCatalogs.teamsApp summary: Get teamworkHostedContent description: Retrieve the hosted content in an app's icon. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/teamworkhostedcontent-get?view=graph-rest-beta operationId: appCatalogs.teamsApps.appDefinitions.colorIcon.GetHostedContentContent 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: - appCatalogs.teamsApp summary: Update media content for the navigation property hostedContent in appCatalogs description: The contents of the app icon if the icon is hosted within the Teams infrastructure. operationId: appCatalogs.teamsApps.appDefinitions.colorIcon.UpdateHostedContentContent 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: - appCatalogs.teamsApp summary: Delete media content for the navigation property hostedContent in appCatalogs description: The contents of the app icon if the icon is hosted within the Teams infrastructure. operationId: appCatalogs.teamsApps.appDefinitions.colorIcon.DeleteHostedContentContent parameters: - 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: teamsApp-id in: path description: The unique identifier of teamsApp required: true schema: type: string x-ms-docs-key-type: teamsApp - name: teamsAppDefinition-id in: path description: The unique identifier of teamsAppDefinition required: true schema: type: string x-ms-docs-key-type: teamsAppDefinition '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards': description: Provides operations to manage the dashboardCards property of the microsoft.graph.teamsAppDefinition entity. get: tags: - appCatalogs.teamsApp summary: Get dashboardCards from appCatalogs description: Dashboard cards specified in the Teams app manifest. operationId: appCatalogs.teamsApps.appDefinitions.ListDashboardCards 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.teamsAppDashboardCardDefinitionCollectionResponse' 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: - appCatalogs.teamsApp summary: Create new navigation property to dashboardCards for appCatalogs operationId: appCatalogs.teamsApps.appDefinitions.CreateDashboardCards requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppDashboardCardDefinition' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppDashboardCardDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: teamsApp-id in: path description: The unique identifier of teamsApp required: true schema: type: string x-ms-docs-key-type: teamsApp - name: teamsAppDefinition-id in: path description: The unique identifier of teamsAppDefinition required: true schema: type: string x-ms-docs-key-type: teamsAppDefinition '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards/{teamsAppDashboardCardDefinition-id}': description: Provides operations to manage the dashboardCards property of the microsoft.graph.teamsAppDefinition entity. get: tags: - appCatalogs.teamsApp summary: Get dashboardCards from appCatalogs description: Dashboard cards specified in the Teams app manifest. operationId: appCatalogs.teamsApps.appDefinitions.GetDashboardCards parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppDashboardCardDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - appCatalogs.teamsApp summary: Update the navigation property dashboardCards in appCatalogs operationId: appCatalogs.teamsApps.appDefinitions.UpdateDashboardCards requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppDashboardCardDefinition' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppDashboardCardDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - appCatalogs.teamsApp summary: Delete navigation property dashboardCards for appCatalogs operationId: appCatalogs.teamsApps.appDefinitions.DeleteDashboardCards parameters: - 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: teamsApp-id in: path description: The unique identifier of teamsApp required: true schema: type: string x-ms-docs-key-type: teamsApp - name: teamsAppDefinition-id in: path description: The unique identifier of teamsAppDefinition required: true schema: type: string x-ms-docs-key-type: teamsAppDefinition - name: teamsAppDashboardCardDefinition-id in: path description: The unique identifier of teamsAppDashboardCardDefinition required: true schema: type: string x-ms-docs-key-type: teamsAppDashboardCardDefinition '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards/$count': description: Provides operations to count the resources in the collection. get: tags: - appCatalogs.teamsApp summary: Get the number of the resource operationId: appCatalogs.teamsApps.appDefinitions.dashboardCards.GetCount-f73a 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: teamsApp-id in: path description: The unique identifier of teamsApp required: true schema: type: string x-ms-docs-key-type: teamsApp - name: teamsAppDefinition-id in: path description: The unique identifier of teamsAppDefinition required: true schema: type: string x-ms-docs-key-type: teamsAppDefinition '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon': description: Provides operations to manage the outlineIcon property of the microsoft.graph.teamsAppDefinition entity. get: tags: - appCatalogs.teamsApp summary: Get teamsAppIcon description: Retrieve a Teams app icon associated with a specific definition of an app. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/teamsappicon-get?view=graph-rest-beta operationId: appCatalogs.teamsApps.appDefinitions.GetOutlineIcon parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppIcon' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - appCatalogs.teamsApp summary: Update the navigation property outlineIcon in appCatalogs operationId: appCatalogs.teamsApps.appDefinitions.UpdateOutlineIcon requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppIcon' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamsAppIcon' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - appCatalogs.teamsApp summary: Delete navigation property outlineIcon for appCatalogs operationId: appCatalogs.teamsApps.appDefinitions.DeleteOutlineIcon parameters: - 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: teamsApp-id in: path description: The unique identifier of teamsApp required: true schema: type: string x-ms-docs-key-type: teamsApp - name: teamsAppDefinition-id in: path description: The unique identifier of teamsAppDefinition required: true schema: type: string x-ms-docs-key-type: teamsAppDefinition '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent': description: Provides operations to manage the hostedContent property of the microsoft.graph.teamsAppIcon entity. get: tags: - appCatalogs.teamsApp summary: Get teamworkHostedContent description: Retrieve the hosted content in an app's icon. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/teamworkhostedcontent-get?view=graph-rest-beta operationId: appCatalogs.teamsApps.appDefinitions.outlineIcon.GetHostedContent parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - appCatalogs.teamsApp summary: Update the navigation property hostedContent in appCatalogs operationId: appCatalogs.teamsApps.appDefinitions.outlineIcon.UpdateHostedContent requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.teamworkHostedContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - appCatalogs.teamsApp summary: Delete navigation property hostedContent for appCatalogs operationId: appCatalogs.teamsApps.appDefinitions.outlineIcon.DeleteHostedContent parameters: - 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: teamsApp-id in: path description: The unique identifier of teamsApp required: true schema: type: string x-ms-docs-key-type: teamsApp - name: teamsAppDefinition-id in: path description: The unique identifier of teamsAppDefinition required: true schema: type: string x-ms-docs-key-type: teamsAppDefinition x-ms-docs-grouped-path: - '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent' '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent/$value': description: Provides operations to manage the media for the appCatalogs entity. get: tags: - appCatalogs.teamsApp summary: Get teamworkHostedContent description: Retrieve the hosted content in an app's icon. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/teamworkhostedcontent-get?view=graph-rest-beta operationId: appCatalogs.teamsApps.appDefinitions.outlineIcon.GetHostedContentContent 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: - appCatalogs.teamsApp summary: Update media content for the navigation property hostedContent in appCatalogs description: The contents of the app icon if the icon is hosted within the Teams infrastructure. operationId: appCatalogs.teamsApps.appDefinitions.outlineIcon.UpdateHostedContentContent 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: - appCatalogs.teamsApp summary: Delete media content for the navigation property hostedContent in appCatalogs description: The contents of the app icon if the icon is hosted within the Teams infrastructure. operationId: appCatalogs.teamsApps.appDefinitions.outlineIcon.DeleteHostedContentContent parameters: - 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: teamsApp-id in: path description: The unique identifier of teamsApp required: true schema: type: string x-ms-docs-key-type: teamsApp - name: teamsAppDefinition-id in: path description: The unique identifier of teamsAppDefinition required: true schema: type: string x-ms-docs-key-type: teamsAppDefinition '/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/$count': description: Provides operations to count the resources in the collection. get: tags: - appCatalogs.teamsApp summary: Get the number of the resource operationId: appCatalogs.teamsApps.appDefinitions.GetCount-ad4f 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: teamsApp-id in: path description: The unique identifier of teamsApp required: true schema: type: string x-ms-docs-key-type: teamsApp /appCatalogs/teamsApps/$count: description: Provides operations to count the resources in the collection. get: tags: - appCatalogs.teamsApp summary: Get the number of the resource operationId: appCatalogs.teamsApps.GetCount-d4ad 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' /applications: description: Provides operations to manage the collection of application entities. get: tags: - applications.application summary: List applications description: Get the list of applications in this organization. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-list?view=graph-rest-beta operationId: applications.application.ListApplication 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 x-ms-docs-operation-type: operation post: tags: - applications.application summary: Create application description: Create a new application object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-post-applications?view=graph-rest-beta operationId: applications.application.CreateApplication requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.application' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.application' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/applications/{application-id}': description: Provides operations to manage the collection of application entities. get: tags: - applications.application summary: Get application description: Get the properties and relationships of an application object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-get?view=graph-rest-beta operationId: applications.application.GetApplication parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.application' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - applications.application summary: Upsert application description: 'Create a new application object if it doesn''t exist, or update the properties of an existing application object.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-beta operationId: applications.application.UpdateApplication requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.application' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.application' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - applications.application summary: Delete application description: 'Deletes an application. When deleted, apps are moved to a temporary container and can be restored within 30 days. After that time, they are permanently deleted.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-beta operationId: applications.application.DeleteApplication parameters: - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/appManagementPolicies': description: Provides operations to manage the appManagementPolicies property of the microsoft.graph.application entity. get: tags: - applications.appManagementPolicy summary: Get appManagementPolicies from applications description: The appManagementPolicy applied to this application. operationId: applications.ListAppManagementPolicies 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.appManagementPolicyCollectionResponse' 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/appManagementPolicies/{appManagementPolicy-id}/$ref': description: Provides operations to manage the collection of application entities. delete: tags: - applications.appManagementPolicy summary: Remove appliesTo description: 'Remove an appManagementPolicy policy object from an application or service principal object. When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/appmanagementpolicy-delete-appliesto?view=graph-rest-beta operationId: applications.appManagementPolicies.DeleteRefAppManagementPolicy parameters: - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: appManagementPolicy-id in: path description: The unique identifier of appManagementPolicy required: true schema: type: string x-ms-docs-key-type: appManagementPolicy '/applications/{application-id}/appManagementPolicies/$count': description: Provides operations to count the resources in the collection. get: tags: - applications.appManagementPolicy summary: Get the number of the resource operationId: applications.appManagementPolicies.GetCount-3aad 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/appManagementPolicies/$ref': description: Provides operations to manage the collection of application entities. get: tags: - applications.appManagementPolicy summary: Get ref of appManagementPolicies from applications description: The appManagementPolicy applied to this application. operationId: applications.ListRefAppManagementPolicies 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: - applications.appManagementPolicy summary: Assign appliesTo description: Assign an appManagementPolicy policy object to an application or service principal object. The application or service principal adopts this policy over the tenant-wide tenantAppManagementPolicy setting. Only one policy object can be assigned to an application or service principal. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/appmanagementpolicy-post-appliesto?view=graph-rest-beta operationId: applications.CreateRefAppManagementPolicies 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: - applications.appManagementPolicy summary: Remove appliesTo description: 'Remove an appManagementPolicy policy object from an application or service principal object. When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/appmanagementpolicy-delete-appliesto?view=graph-rest-beta operationId: applications.DeleteRefAppManagementPolicies 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/connectorGroup': description: Provides operations to manage the connectorGroup property of the microsoft.graph.application entity. get: tags: - applications.connectorGroup summary: Get connectorGroup from applications description: The connectorGroup the application is using with Microsoft Entra application proxy. Nullable. operationId: applications.GetConnectorGroup parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.connectorGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/connectorGroup/$ref': description: Provides operations to manage the collection of application entities. get: tags: - applications.connectorGroup summary: Get ref of connectorGroup from applications description: The connectorGroup the application is using with Microsoft Entra application proxy. Nullable. operationId: applications.GetRefConnectorGroup responses: 2XX: description: Retrieved navigation property link content: application/json: schema: type: string 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation put: tags: - applications.connectorGroup summary: Assign a connectorGroup to an application description: Assign a connectorGroup to an application. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/connectorgroup-post-applications?view=graph-rest-beta operationId: applications.UpdateRefConnectorGroup requestBody: $ref: '#/components/requestBodies/refPutBody' responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - applications.connectorGroup summary: Delete ref of navigation property connectorGroup for applications operationId: applications.DeleteRefConnectorGroup parameters: - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/createdOnBehalfOf': description: Provides operations to manage the createdOnBehalfOf property of the microsoft.graph.application entity. get: tags: - applications.directoryObject summary: Get createdOnBehalfOf from applications description: 'Supports $filter (/$count eq 0, /$count ne 0). Read-only.' operationId: applications.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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/extensionProperties': description: Provides operations to manage the extensionProperties property of the microsoft.graph.application entity. get: tags: - applications.extensionProperty summary: List extensionProperties (directory extensions) description: 'Retrieve the list of directory extension definitions, represented by extensionProperty objects on an application.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-list-extensionproperty?view=graph-rest-beta operationId: applications.ListExtensionProperties 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.extensionPropertyCollectionResponse' 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: - applications.extensionProperty summary: Create extensionProperty (directory extension) description: 'Create a new directory extension definition, represented by an extensionProperty object.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-post-extensionproperty?view=graph-rest-beta operationId: applications.CreateExtensionProperties requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extensionProperty' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extensionProperty' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/extensionProperties/{extensionProperty-id}': description: Provides operations to manage the extensionProperties property of the microsoft.graph.application entity. get: tags: - applications.extensionProperty summary: Get extensionProperty (directory extension) description: Read a directory extension definition represented by an extensionProperty object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/extensionproperty-get?view=graph-rest-beta operationId: applications.GetExtensionProperties parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extensionProperty' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - applications.extensionProperty summary: Update the navigation property extensionProperties in applications operationId: applications.UpdateExtensionProperties requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extensionProperty' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.extensionProperty' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - applications.extensionProperty summary: Delete extensionProperty (directory extension) description: Delete a directory extension definition represented by an extensionProperty object. You can delete only directory extensions that aren't synced from on-premises active directory (AD). externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/extensionproperty-delete?view=graph-rest-beta operationId: applications.DeleteExtensionProperties parameters: - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: extensionProperty-id in: path description: The unique identifier of extensionProperty required: true schema: type: string x-ms-docs-key-type: extensionProperty '/applications/{application-id}/extensionProperties/$count': description: Provides operations to count the resources in the collection. get: tags: - applications.extensionProperty summary: Get the number of the resource operationId: applications.extensionProperties.GetCount-3535 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/federatedIdentityCredentials': description: Provides operations to manage the federatedIdentityCredentials property of the microsoft.graph.application entity. get: tags: - applications.federatedIdentityCredential summary: List federatedIdentityCredentials description: Get a list of the federatedIdentityCredential objects and their properties. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-list-federatedidentitycredentials?view=graph-rest-beta operationId: applications.ListFederatedIdentityCredentials 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.federatedIdentityCredentialCollectionResponse' 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: - applications.federatedIdentityCredential summary: Create federatedIdentityCredential description: 'Create a new federatedIdentityCredential object for an application. By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-post-federatedidentitycredentials?view=graph-rest-beta operationId: applications.CreateFederatedIdentityCredentials requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.federatedIdentityCredential' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.federatedIdentityCredential' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}': description: Provides operations to manage the federatedIdentityCredentials property of the microsoft.graph.application entity. get: tags: - applications.federatedIdentityCredential summary: Get federatedIdentityCredential description: Read the properties and relationships of a federatedIdentityCredential object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/federatedidentitycredential-get?view=graph-rest-beta operationId: applications.GetFederatedIdentityCredentials parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.federatedIdentityCredential' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - applications.federatedIdentityCredential summary: Upsert federatedIdentityCredential description: 'Create a new federatedIdentityCredential object for an application if it doesn''t exist, or update the properties of an existing federatedIdentityCredential object. By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/federatedidentitycredential-upsert?view=graph-rest-beta operationId: applications.UpdateFederatedIdentityCredentials requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.federatedIdentityCredential' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.federatedIdentityCredential' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - applications.federatedIdentityCredential summary: Delete federatedIdentityCredential description: Deletes a federatedIdentityCredential object from an application. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/federatedidentitycredential-delete?view=graph-rest-beta operationId: applications.DeleteFederatedIdentityCredentials parameters: - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: federatedIdentityCredential-id in: path description: The unique identifier of federatedIdentityCredential required: true schema: type: string x-ms-docs-key-type: federatedIdentityCredential x-ms-docs-grouped-path: - '/applications/{application-id}/federatedIdentityCredentials(name=''{name}'')' '/applications/{application-id}/federatedIdentityCredentials(name=''{name}'')': description: Provides operations to manage the federatedIdentityCredentials property of the microsoft.graph.application entity. get: tags: - applications.federatedIdentityCredential summary: Get federatedIdentityCredential description: Read the properties and relationships of a federatedIdentityCredential object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/federatedidentitycredential-get?view=graph-rest-beta operationId: applications.federatedIdentityCredentials.GetByName parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.federatedIdentityCredential' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - applications.federatedIdentityCredential summary: Upsert federatedIdentityCredential description: 'Create a new federatedIdentityCredential object for an application if it doesn''t exist, or update the properties of an existing federatedIdentityCredential object. By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/federatedidentitycredential-upsert?view=graph-rest-beta operationId: applications.federatedIdentityCredentials.UpdateByName requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.federatedIdentityCredential' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.federatedIdentityCredential' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - applications.federatedIdentityCredential summary: Delete federatedIdentityCredential description: Deletes a federatedIdentityCredential object from an application. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/federatedidentitycredential-delete?view=graph-rest-beta operationId: applications.federatedIdentityCredentials.DeleteByName parameters: - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: name in: path description: Alternate key of federatedIdentityCredential required: true schema: type: string x-ms-docs-grouped-path: - '/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}' '/applications/{application-id}/federatedIdentityCredentials/$count': description: Provides operations to count the resources in the collection. get: tags: - applications.federatedIdentityCredential summary: Get the number of the resource operationId: applications.federatedIdentityCredentials.GetCount-d653 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/homeRealmDiscoveryPolicies': description: Provides operations to manage the homeRealmDiscoveryPolicies property of the microsoft.graph.application entity. get: tags: - applications.homeRealmDiscoveryPolicy summary: Get homeRealmDiscoveryPolicies from applications operationId: applications.ListHomeRealmDiscoveryPolicies 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.homeRealmDiscoveryPolicyCollectionResponse' 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}': description: Provides operations to manage the homeRealmDiscoveryPolicies property of the microsoft.graph.application entity. get: tags: - applications.homeRealmDiscoveryPolicy summary: Get homeRealmDiscoveryPolicies from applications operationId: applications.GetHomeRealmDiscoveryPolicies parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.homeRealmDiscoveryPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: homeRealmDiscoveryPolicy-id in: path description: The unique identifier of homeRealmDiscoveryPolicy required: true schema: type: string x-ms-docs-key-type: homeRealmDiscoveryPolicy '/applications/{application-id}/homeRealmDiscoveryPolicies/$count': description: Provides operations to count the resources in the collection. get: tags: - applications.homeRealmDiscoveryPolicy summary: Get the number of the resource operationId: applications.homeRealmDiscoveryPolicies.GetCount-1662 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/logo': description: Provides operations to manage the media for the application entity. get: tags: - applications.application summary: Get logo for application from applications description: The main logo for the application. Not nullable. operationId: applications.application.GetLogo 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: - applications.application summary: Update logo for application in applications description: The main logo for the application. Not nullable. operationId: applications.application.UpdateLogo 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: - applications.application summary: Delete logo for application in applications description: The main logo for the application. Not nullable. operationId: applications.application.DeleteLogo parameters: - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/addKey': description: Provides operations to call the addKey method. post: tags: - applications.application.Actions summary: Invoke action addKey description: 'Add a key credential to an application. This method, along with removeKey, can be used by an application to automate rolling its expiring keys. As part of the request validation for this method, a proof of possession of an existing key is verified before the action can be performed. Applications that don''t have any existing valid certificates (no certificates have been added yet, or all certificates have expired), won''t be able to use this service action. You can use the Update application operation to perform an update instead.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-addkey?view=graph-rest-beta operationId: applications.application.addKey requestBody: description: Action parameters content: application/json: schema: type: object properties: keyCredential: $ref: '#/components/schemas/microsoft.graph.keyCredential' passwordCredential: anyOf: - $ref: '#/components/schemas/microsoft.graph.passwordCredential' - type: object nullable: true proof: type: string required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.keyCredential' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/addPassword': description: Provides operations to call the addPassword method. post: tags: - applications.application.Actions summary: Invoke action addPassword description: Adds a strong password to an application. You can also add passwords while creating the application. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-addpassword?view=graph-rest-beta operationId: applications.application.addPassword requestBody: description: Action parameters content: application/json: schema: type: object properties: passwordCredential: anyOf: - $ref: '#/components/schemas/microsoft.graph.passwordCredential' - type: object nullable: true required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.passwordCredential' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/checkMemberGroups': description: Provides operations to call the checkMemberGroups method. post: tags: - applications.application.Actions summary: 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:\n- user\n- group\n- service principal\n- organizational contact\n- device\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-beta operationId: applications.application.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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/checkMemberObjects': description: Provides operations to call the checkMemberObjects method. post: tags: - applications.application.Actions summary: Invoke action checkMemberObjects operationId: applications.application.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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/getMemberGroups': description: Provides operations to call the getMemberGroups method. post: tags: - applications.application.Actions summary: 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-beta operationId: applications.application.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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/getMemberObjects': description: Provides operations to call the getMemberObjects method. post: tags: - applications.application.Actions summary: Invoke action getMemberObjects operationId: applications.application.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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/removeKey': description: Provides operations to call the removeKey method. post: tags: - applications.application.Actions summary: Invoke action removeKey description: 'Remove a key credential from an application. This method along with addKey can be used by an application to automate rolling its expiring keys. As part of the request validation for this method, a proof of possession of an existing key is verified before the action can be performed.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-removekey?view=graph-rest-beta operationId: applications.application.removeKey requestBody: description: Action parameters content: application/json: schema: type: object properties: keyId: 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 proof: type: string required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/removePassword': description: Provides operations to call the removePassword method. post: tags: - applications.application.Actions summary: Invoke action removePassword description: Removes a password from an application. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-removepassword?view=graph-rest-beta operationId: applications.application.removePassword requestBody: description: Action parameters content: application/json: schema: type: object properties: keyId: 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: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/restore': description: Provides operations to call the restore method. post: tags: - applications.application.Actions summary: Invoke action restore description: "Restore a recently deleted directory object from deleted items. The following types are supported:\n- administrativeUnit\n- application\n- certificateBasedAuthPki\n- certificateAuthorityDetail\n- externalUserProfile\n- group\n- pendingExternalUserProfile\n- servicePrincipal\n- user If an item was accidentally deleted, you can fully restore the item. This isn't applicable to security groups, which are deleted permanently. Also, restoring an application doesn't 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-beta operationId: applications.application.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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/setVerifiedPublisher': description: Provides operations to call the setVerifiedPublisher method. post: tags: - applications.application.Actions summary: Invoke action setVerifiedPublisher description: 'Set the the verifiedPublisher on an application. For more information, including prerequisites to setting a verified publisher, see Publisher verification.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-setverifiedpublisher?view=graph-rest-beta operationId: applications.application.setVerifiedPublisher requestBody: description: Action parameters content: application/json: schema: type: object properties: verifiedPublisherId: type: string required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/unsetVerifiedPublisher': description: Provides operations to call the unsetVerifiedPublisher method. post: tags: - applications.application.Actions summary: Invoke action unsetVerifiedPublisher description: 'Unset the verifiedPublisher previously set on an application, removing all verified publisher properties. For more information, see Publisher verification.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-unsetverifiedpublisher?view=graph-rest-beta operationId: applications.application.unsetVerifiedPublisher responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/owners': description: Provides operations to manage the owners property of the microsoft.graph.application entity. get: tags: - applications.directoryObject summary: List owners of an application description: Retrieve a list of owners for an application that are directoryObject types. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-list-owners?view=graph-rest-beta operationId: applications.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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/owners/{directoryObject-id}/$ref': description: Provides operations to manage the collection of application entities. delete: tags: - applications.directoryObject summary: Remove owner description: 'Remove an owner from an application. As a recommended best practice, apps should have at least two owners.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-delete-owners?view=graph-rest-beta operationId: applications.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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/applications/{application-id}/owners/{directoryObject-id}/graph.appRoleAssignment': description: Casts the previous resource to appRoleAssignment. get: tags: - applications.directoryObject summary: Get the item of type microsoft.graph.directoryObject as microsoft.graph.appRoleAssignment operationId: applications.GetOwners.AsAppRoleAssignment 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.appRoleAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/applications/{application-id}/owners/{directoryObject-id}/graph.endpoint': description: Casts the previous resource to endpoint. get: tags: - applications.directoryObject summary: Get the item of type microsoft.graph.directoryObject as microsoft.graph.endpoint operationId: applications.GetOwners.AsEndpoint 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.endpoint' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/applications/{application-id}/owners/{directoryObject-id}/graph.servicePrincipal': description: Casts the previous resource to servicePrincipal. get: tags: - applications.directoryObject summary: Get the item of type microsoft.graph.directoryObject as microsoft.graph.servicePrincipal operationId: applications.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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/applications/{application-id}/owners/{directoryObject-id}/graph.user': description: Casts the previous resource to user. get: tags: - applications.directoryObject summary: Get the item of type microsoft.graph.directoryObject as microsoft.graph.user operationId: applications.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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/applications/{application-id}/owners/$count': description: Provides operations to count the resources in the collection. get: tags: - applications.directoryObject summary: Get the number of the resource operationId: applications.owners.GetCount-2b88 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/owners/$ref': description: Provides operations to manage the collection of application entities. get: tags: - applications.directoryObject summary: List owners of an application description: Retrieve a list of owners for an application that are directoryObject types. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-list-owners?view=graph-rest-beta operationId: applications.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: - applications.directoryObject summary: Add owner description: 'Add an owner to an application. Application owners can be individual users, the associated service principal, or another service principal.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-post-owners?view=graph-rest-beta operationId: applications.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: - applications.directoryObject summary: Remove owner description: 'Remove an owner from an application. As a recommended best practice, apps should have at least two owners.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-delete-owners?view=graph-rest-beta operationId: applications.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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/owners/graph.appRoleAssignment': description: Casts the previous resource to appRoleAssignment. get: tags: - applications.directoryObject summary: Get the items of type microsoft.graph.appRoleAssignment in the microsoft.graph.directoryObject collection operationId: applications.ListOwners.AsAppRoleAssignment 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 parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/owners/graph.appRoleAssignment/$count': description: Provides operations to count the resources in the collection. get: tags: - applications.directoryObject summary: Get the number of the resource operationId: applications.Owners.GetCount.AsAppRoleAssignment-eb25 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/owners/graph.endpoint': description: Casts the previous resource to endpoint. get: tags: - applications.directoryObject summary: Get the items of type microsoft.graph.endpoint in the microsoft.graph.directoryObject collection operationId: applications.ListOwners.AsEndpoint 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.endpointCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/owners/graph.endpoint/$count': description: Provides operations to count the resources in the collection. get: tags: - applications.directoryObject summary: Get the number of the resource operationId: applications.Owners.GetCount.AsEndpoint-0426 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/owners/graph.servicePrincipal': description: Casts the previous resource to servicePrincipal. get: tags: - applications.directoryObject summary: Get the items of type microsoft.graph.servicePrincipal in the microsoft.graph.directoryObject collection operationId: applications.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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/owners/graph.servicePrincipal/$count': description: Provides operations to count the resources in the collection. get: tags: - applications.directoryObject summary: Get the number of the resource operationId: applications.Owners.GetCount.AsServicePrincipal-0959 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/owners/graph.user': description: Casts the previous resource to user. get: tags: - applications.directoryObject summary: Get the items of type microsoft.graph.user in the microsoft.graph.directoryObject collection operationId: applications.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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/owners/graph.user/$count': description: Provides operations to count the resources in the collection. get: tags: - applications.directoryObject summary: Get the number of the resource operationId: applications.Owners.GetCount.AsUser-c674 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/synchronization': description: Provides operations to manage the synchronization property of the microsoft.graph.application entity. get: tags: - applications.synchronization summary: Get synchronization from applications description: Represents the capability for Microsoft Entra identity synchronization through the Microsoft Graph API. operationId: applications.GetSynchronization parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronization' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation put: tags: - applications.synchronization summary: Update the navigation property synchronization in applications operationId: applications.SetSynchronization requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronization' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronization' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - applications.synchronization summary: Delete navigation property synchronization for applications operationId: applications.DeleteSynchronization parameters: - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/synchronization/jobs': description: Provides operations to manage the jobs property of the microsoft.graph.synchronization entity. get: tags: - applications.synchronization summary: Get jobs from applications description: 'Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory.' operationId: applications.synchronization.ListJobs 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.synchronizationJobCollectionResponse' 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: - applications.synchronization summary: Create new navigation property to jobs for applications operationId: applications.synchronization.CreateJobs requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronizationJob' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronizationJob' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}': description: Provides operations to manage the jobs property of the microsoft.graph.synchronization entity. get: tags: - applications.synchronization summary: Get jobs from applications description: 'Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory.' operationId: applications.synchronization.GetJobs parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronizationJob' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - applications.synchronization summary: Update the navigation property jobs in applications operationId: applications.synchronization.UpdateJobs requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronizationJob' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronizationJob' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - applications.synchronization summary: Delete navigation property jobs for applications operationId: applications.synchronization.DeleteJobs parameters: - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationJob-id in: path description: The unique identifier of synchronizationJob required: true schema: type: string x-ms-docs-key-type: synchronizationJob '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload': description: Provides operations to manage the bulkUpload property of the microsoft.graph.synchronizationJob entity. get: tags: - applications.synchronization summary: Get bulkUpload from applications description: The bulk upload operation for the job. operationId: applications.synchronization.jobs.GetBulkUpload parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bulkUpload' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - applications.synchronization summary: Update the navigation property bulkUpload in applications operationId: applications.synchronization.jobs.UpdateBulkUpload requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bulkUpload' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bulkUpload' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - applications.synchronization summary: Delete navigation property bulkUpload for applications operationId: applications.synchronization.jobs.DeleteBulkUpload parameters: - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationJob-id in: path description: The unique identifier of synchronizationJob required: true schema: type: string x-ms-docs-key-type: synchronizationJob '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value': description: Provides operations to manage the media for the application entity. get: tags: - applications.synchronization summary: Get media content for the navigation property bulkUpload from applications description: The bulk upload operation for the job. operationId: applications.synchronization.jobs.GetBulkUploadContent 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: - applications.synchronization summary: Update media content for the navigation property bulkUpload in applications description: The bulk upload operation for the job. operationId: applications.synchronization.jobs.UpdateBulkUploadContent 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: - applications.synchronization summary: Delete media content for the navigation property bulkUpload in applications description: The bulk upload operation for the job. operationId: applications.synchronization.jobs.DeleteBulkUploadContent parameters: - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationJob-id in: path description: The unique identifier of synchronizationJob required: true schema: type: string x-ms-docs-key-type: synchronizationJob '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/pause': description: Provides operations to call the pause method. post: tags: - applications.synchronization summary: Invoke action pause description: 'Temporarily stop a running synchronization job. All the progress, including job state, is persisted, and the job continues from where it left off when a start call is made.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-beta operationId: applications.application.synchronization.jobs.synchronizationJob.pause responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationJob-id in: path description: The unique identifier of synchronizationJob required: true schema: type: string x-ms-docs-key-type: synchronizationJob '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/provisionOnDemand': description: Provides operations to call the provisionOnDemand method. post: tags: - applications.synchronization summary: Invoke action provisionOnDemand description: Select a user and provision the account on-demand. The rate limit for this API is 5 requests per 10 seconds. No user or group will be provisioned on-demand that would not have been provisioned through the regular provisioning cycles. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-beta operationId: applications.application.synchronization.jobs.synchronizationJob.provisionOnDemand requestBody: description: Action parameters content: application/json: schema: type: object properties: parameters: type: array items: $ref: '#/components/schemas/microsoft.graph.synchronizationJobApplicationParameters' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.stringKeyStringValuePair' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationJob-id in: path description: The unique identifier of synchronizationJob required: true schema: type: string x-ms-docs-key-type: synchronizationJob '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/restart': description: Provides operations to call the restart method. post: tags: - applications.synchronization summary: Invoke action restart description: 'Restart a stopped synchronization job, forcing it to reprocess all the objects in the directory. Optionally clears existing the synchronization state and previous errors.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-beta operationId: applications.application.synchronization.jobs.synchronizationJob.restart requestBody: description: Action parameters content: application/json: schema: type: object properties: criteria: anyOf: - $ref: '#/components/schemas/microsoft.graph.synchronizationJobRestartCriteria' - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationJob-id in: path description: The unique identifier of synchronizationJob required: true schema: type: string x-ms-docs-key-type: synchronizationJob '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/start': description: Provides operations to call the start method. post: tags: - applications.synchronization summary: Invoke action start description: 'Start an existing synchronization job. If the job is in a paused state, it continues processing changes from the point where it was paused. If the job is in quarantine, the quarantine status is cleared. Don''t create scripts to call the start job continuously while it''s running because that can cause the service to stop running. Use the start job only when the job is currently paused or in quarantine. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-beta operationId: applications.application.synchronization.jobs.synchronizationJob.start responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationJob-id in: path description: The unique identifier of synchronizationJob required: true schema: type: string x-ms-docs-key-type: synchronizationJob '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/validateCredentials': description: Provides operations to call the validateCredentials method. post: tags: - applications.synchronization summary: Invoke action validateCredentials description: Validate that the credentials are valid in the tenant. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-beta operationId: applications.application.synchronization.jobs.synchronizationJob.validateCredentials requestBody: description: Action parameters content: application/json: schema: type: object properties: applicationIdentifier: type: string nullable: true templateId: type: string nullable: true useSavedCredentials: type: boolean default: false nullable: true credentials: type: array items: $ref: '#/components/schemas/microsoft.graph.synchronizationSecretKeyStringValuePair' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationJob-id in: path description: The unique identifier of synchronizationJob required: true schema: type: string x-ms-docs-key-type: synchronizationJob x-ms-docs-grouped-path: - '/applications/{application-id}/synchronization/jobs/validateCredentials' '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema': description: Provides operations to manage the schema property of the microsoft.graph.synchronizationJob entity. get: tags: - applications.synchronization summary: Get schema from applications description: The synchronization schema configured for the job. operationId: applications.synchronization.jobs.GetSchema parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronizationSchema' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - applications.synchronization summary: Update the navigation property schema in applications operationId: applications.synchronization.jobs.UpdateSchema requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronizationSchema' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronizationSchema' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - applications.synchronization summary: Delete navigation property schema for applications operationId: applications.synchronization.jobs.DeleteSchema parameters: - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationJob-id in: path description: The unique identifier of synchronizationJob required: true schema: type: string x-ms-docs-key-type: synchronizationJob '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories': description: Provides operations to manage the directories property of the microsoft.graph.synchronizationSchema entity. get: tags: - applications.synchronization summary: Get directories from applications description: Contains the collection of directories and all of their objects. operationId: applications.synchronization.jobs.schema.ListDirectories 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.directoryDefinitionCollectionResponse' 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: - applications.synchronization summary: Create new navigation property to directories for applications operationId: applications.synchronization.jobs.schema.CreateDirectories requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryDefinition' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationJob-id in: path description: The unique identifier of synchronizationJob required: true schema: type: string x-ms-docs-key-type: synchronizationJob x-ms-docs-grouped-path: - '/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories' '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}': description: Provides operations to manage the directories property of the microsoft.graph.synchronizationSchema entity. get: tags: - applications.synchronization summary: Get directories from applications description: Contains the collection of directories and all of their objects. operationId: applications.synchronization.jobs.schema.GetDirectories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - applications.synchronization summary: Update the navigation property directories in applications operationId: applications.synchronization.jobs.schema.UpdateDirectories requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryDefinition' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - applications.synchronization summary: Delete navigation property directories for applications operationId: applications.synchronization.jobs.schema.DeleteDirectories parameters: - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationJob-id in: path description: The unique identifier of synchronizationJob required: true schema: type: string x-ms-docs-key-type: synchronizationJob - name: directoryDefinition-id in: path description: The unique identifier of directoryDefinition required: true schema: type: string x-ms-docs-key-type: directoryDefinition x-ms-docs-grouped-path: - '/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}' '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover': description: Provides operations to call the discover method. post: tags: - applications.synchronization summary: Invoke action discover description: 'Discover the latest schema definition for provisioning to an application. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-beta operationId: applications.application.synchronization.jobs.synchronizationJob.schema.directories.directoryDefinition.discover responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.directoryDefinition' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationJob-id in: path description: The unique identifier of synchronizationJob required: true schema: type: string x-ms-docs-key-type: synchronizationJob - name: directoryDefinition-id in: path description: The unique identifier of directoryDefinition required: true schema: type: string x-ms-docs-key-type: directoryDefinition x-ms-docs-grouped-path: - '/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover' '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/$count': description: Provides operations to count the resources in the collection. get: tags: - applications.synchronization summary: Get the number of the resource operationId: applications.synchronization.jobs.schema.directories.GetCount-03bf 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationJob-id in: path description: The unique identifier of synchronizationJob required: true schema: type: string x-ms-docs-key-type: synchronizationJob '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/filterOperators()': description: Provides operations to call the filterOperators method. get: tags: - applications.synchronization summary: Invoke function filterOperators description: List all operators supported in the scoping filters. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-beta operationId: applications.application.synchronization.jobs.synchronizationJob.schema.filterOperators 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 filterOperatorSchema type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.filterOperatorSchema' 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationJob-id in: path description: The unique identifier of synchronizationJob required: true schema: type: string x-ms-docs-key-type: synchronizationJob x-ms-docs-grouped-path: - '/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/filterOperators()' '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/functions()': description: Provides operations to call the functions method. get: tags: - applications.synchronization summary: Invoke function functions description: List all the functions currently supported in the attributeMappingSource. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-beta operationId: applications.application.synchronization.jobs.synchronizationJob.schema.functions 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 attributeMappingFunctionSchema type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.attributeMappingFunctionSchema' 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationJob-id in: path description: The unique identifier of synchronizationJob required: true schema: type: string x-ms-docs-key-type: synchronizationJob x-ms-docs-grouped-path: - '/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/functions()' '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/parseExpression': description: Provides operations to call the parseExpression method. post: tags: - applications.synchronization summary: Invoke action parseExpression description: 'Parse a given string expression into an attributeMappingSource object. For more information about expressions, see Writing Expressions for Attribute Mappings in Microsoft Entra ID.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-beta operationId: applications.application.synchronization.jobs.synchronizationJob.schema.parseExpression requestBody: description: Action parameters content: application/json: schema: type: object properties: expression: type: string nullable: true testInputObject: anyOf: - $ref: '#/components/schemas/microsoft.graph.expressionInputObject' - type: object nullable: true targetAttributeDefinition: anyOf: - $ref: '#/components/schemas/microsoft.graph.attributeDefinition' - type: object nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.parseExpressionResponse' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationJob-id in: path description: The unique identifier of synchronizationJob required: true schema: type: string x-ms-docs-key-type: synchronizationJob x-ms-docs-grouped-path: - '/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/parseExpression' '/applications/{application-id}/synchronization/jobs/$count': description: Provides operations to count the resources in the collection. get: tags: - applications.synchronization summary: Get the number of the resource operationId: applications.synchronization.jobs.GetCount-30ed 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/synchronization/jobs/validateCredentials': description: Provides operations to call the validateCredentials method. post: tags: - applications.synchronization summary: Invoke action validateCredentials operationId: applications.application.synchronization.jobs.validateCredentials requestBody: description: Action parameters content: application/json: schema: type: object properties: applicationIdentifier: type: string nullable: true templateId: type: string nullable: true useSavedCredentials: type: boolean default: false nullable: true credentials: type: array items: $ref: '#/components/schemas/microsoft.graph.synchronizationSecretKeyStringValuePair' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application x-ms-docs-grouped-path: - '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/validateCredentials' '/applications/{application-id}/synchronization/acquireAccessToken': description: Provides operations to call the acquireAccessToken method. post: tags: - applications.synchronization summary: Invoke action acquireAccessToken description: Acquire an OAuth Access token to authorize the Microsoft Entra provisioning service to provision users into an application. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-beta operationId: applications.application.synchronization.acquireAccessToken requestBody: description: Action parameters content: application/json: schema: type: object properties: credentials: type: array items: $ref: '#/components/schemas/microsoft.graph.synchronizationSecretKeyStringValuePair' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/synchronization/Ping()': description: Provides operations to call the Ping method. get: tags: - applications.synchronization summary: Invoke function Ping operationId: applications.application.synchronization.Ping responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/synchronization/secrets': put: tags: - applications.synchronization summary: Update property secrets value. operationId: applications.synchronization.SetSecrets requestBody: description: New property values content: application/json: schema: type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.synchronizationSecretKeyStringValuePair' required: true responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.synchronizationSecretKeyStringValuePair' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/synchronization/secrets/$count': description: Provides operations to count the resources in the collection. get: tags: - applications.synchronization summary: Get the number of the resource operationId: applications.synchronization.Secrets.GetCount-26f1 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/synchronization/templates': description: Provides operations to manage the templates property of the microsoft.graph.synchronization entity. get: tags: - applications.synchronization summary: Get templates from applications description: Pre-configured synchronization settings for a particular application. operationId: applications.synchronization.ListTemplates 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.synchronizationTemplateCollectionResponse' 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: - applications.synchronization summary: Create new navigation property to templates for applications operationId: applications.synchronization.CreateTemplates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronizationTemplate' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronizationTemplate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}': description: Provides operations to manage the templates property of the microsoft.graph.synchronization entity. get: tags: - applications.synchronization summary: Get templates from applications description: Pre-configured synchronization settings for a particular application. operationId: applications.synchronization.GetTemplates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronizationTemplate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - applications.synchronization summary: Update synchronizationTemplate description: Update (override) the synchronization template associated with a given application. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/synchronization-synchronizationtemplate-update?view=graph-rest-beta operationId: applications.synchronization.UpdateTemplates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronizationTemplate' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronizationTemplate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - applications.synchronization summary: Delete navigation property templates for applications operationId: applications.synchronization.DeleteTemplates parameters: - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationTemplate-id in: path description: The unique identifier of synchronizationTemplate required: true schema: type: string x-ms-docs-key-type: synchronizationTemplate '/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema': description: Provides operations to manage the schema property of the microsoft.graph.synchronizationTemplate entity. get: tags: - applications.synchronization summary: Get schema from applications description: Default synchronization schema for the jobs based on this template. operationId: applications.synchronization.templates.GetSchema parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronizationSchema' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - applications.synchronization summary: Update the navigation property schema in applications operationId: applications.synchronization.templates.UpdateSchema requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronizationSchema' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.synchronizationSchema' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - applications.synchronization summary: Delete navigation property schema for applications operationId: applications.synchronization.templates.DeleteSchema parameters: - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationTemplate-id in: path description: The unique identifier of synchronizationTemplate required: true schema: type: string x-ms-docs-key-type: synchronizationTemplate '/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories': description: Provides operations to manage the directories property of the microsoft.graph.synchronizationSchema entity. get: tags: - applications.synchronization summary: Get directories from applications description: Contains the collection of directories and all of their objects. operationId: applications.synchronization.templates.schema.ListDirectories 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.directoryDefinitionCollectionResponse' 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: - applications.synchronization summary: Create new navigation property to directories for applications operationId: applications.synchronization.templates.schema.CreateDirectories requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryDefinition' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationTemplate-id in: path description: The unique identifier of synchronizationTemplate required: true schema: type: string x-ms-docs-key-type: synchronizationTemplate x-ms-docs-grouped-path: - '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories' '/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}': description: Provides operations to manage the directories property of the microsoft.graph.synchronizationSchema entity. get: tags: - applications.synchronization summary: Get directories from applications description: Contains the collection of directories and all of their objects. operationId: applications.synchronization.templates.schema.GetDirectories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - applications.synchronization summary: Update the navigation property directories in applications operationId: applications.synchronization.templates.schema.UpdateDirectories requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryDefinition' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - applications.synchronization summary: Delete navigation property directories for applications operationId: applications.synchronization.templates.schema.DeleteDirectories parameters: - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationTemplate-id in: path description: The unique identifier of synchronizationTemplate required: true schema: type: string x-ms-docs-key-type: synchronizationTemplate - name: directoryDefinition-id in: path description: The unique identifier of directoryDefinition required: true schema: type: string x-ms-docs-key-type: directoryDefinition x-ms-docs-grouped-path: - '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}' '/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover': description: Provides operations to call the discover method. post: tags: - applications.synchronization summary: Invoke action discover description: 'Discover the latest schema definition for provisioning to an application. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-beta operationId: applications.application.synchronization.templates.synchronizationTemplate.schema.directories.directoryDefinition.discover responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.directoryDefinition' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationTemplate-id in: path description: The unique identifier of synchronizationTemplate required: true schema: type: string x-ms-docs-key-type: synchronizationTemplate - name: directoryDefinition-id in: path description: The unique identifier of directoryDefinition required: true schema: type: string x-ms-docs-key-type: directoryDefinition x-ms-docs-grouped-path: - '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover' '/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/$count': description: Provides operations to count the resources in the collection. get: tags: - applications.synchronization summary: Get the number of the resource operationId: applications.synchronization.templates.schema.directories.GetCount-27bc 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationTemplate-id in: path description: The unique identifier of synchronizationTemplate required: true schema: type: string x-ms-docs-key-type: synchronizationTemplate '/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/filterOperators()': description: Provides operations to call the filterOperators method. get: tags: - applications.synchronization summary: Invoke function filterOperators description: List all operators supported in the scoping filters. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-beta operationId: applications.application.synchronization.templates.synchronizationTemplate.schema.filterOperators 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 filterOperatorSchema type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.filterOperatorSchema' 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationTemplate-id in: path description: The unique identifier of synchronizationTemplate required: true schema: type: string x-ms-docs-key-type: synchronizationTemplate x-ms-docs-grouped-path: - '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/filterOperators()' '/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/functions()': description: Provides operations to call the functions method. get: tags: - applications.synchronization summary: Invoke function functions description: List all the functions currently supported in the attributeMappingSource. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-beta operationId: applications.application.synchronization.templates.synchronizationTemplate.schema.functions 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 attributeMappingFunctionSchema type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.attributeMappingFunctionSchema' 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationTemplate-id in: path description: The unique identifier of synchronizationTemplate required: true schema: type: string x-ms-docs-key-type: synchronizationTemplate x-ms-docs-grouped-path: - '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/functions()' '/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/parseExpression': description: Provides operations to call the parseExpression method. post: tags: - applications.synchronization summary: Invoke action parseExpression description: 'Parse a given string expression into an attributeMappingSource object. For more information about expressions, see Writing Expressions for Attribute Mappings in Microsoft Entra ID.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-beta operationId: applications.application.synchronization.templates.synchronizationTemplate.schema.parseExpression requestBody: description: Action parameters content: application/json: schema: type: object properties: expression: type: string nullable: true testInputObject: anyOf: - $ref: '#/components/schemas/microsoft.graph.expressionInputObject' - type: object nullable: true targetAttributeDefinition: anyOf: - $ref: '#/components/schemas/microsoft.graph.attributeDefinition' - type: object nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.parseExpressionResponse' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: synchronizationTemplate-id in: path description: The unique identifier of synchronizationTemplate required: true schema: type: string x-ms-docs-key-type: synchronizationTemplate x-ms-docs-grouped-path: - '/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/parseExpression' '/applications/{application-id}/synchronization/templates/$count': description: Provides operations to count the resources in the collection. get: tags: - applications.synchronization summary: Get the number of the resource operationId: applications.synchronization.templates.GetCount-738a 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/tokenIssuancePolicies': description: Provides operations to manage the tokenIssuancePolicies property of the microsoft.graph.application entity. get: tags: - applications.tokenIssuancePolicy summary: List assigned tokenIssuancePolicies description: List the tokenIssuancePolicy objects that are assigned to an application. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-list-tokenissuancepolicies?view=graph-rest-beta operationId: applications.ListTokenIssuancePolicies 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.tokenIssuancePolicyCollectionResponse' 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/tokenIssuancePolicies/{tokenIssuancePolicy-id}/$ref': description: Provides operations to manage the collection of application entities. delete: tags: - applications.tokenIssuancePolicy summary: Remove tokenIssuancePolicy description: Remove a tokenIssuancePolicy from an application. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-delete-tokenissuancepolicies?view=graph-rest-beta operationId: applications.tokenIssuancePolicies.DeleteRefTokenIssuancePolicy parameters: - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: tokenIssuancePolicy-id in: path description: The unique identifier of tokenIssuancePolicy required: true schema: type: string x-ms-docs-key-type: tokenIssuancePolicy '/applications/{application-id}/tokenIssuancePolicies/$count': description: Provides operations to count the resources in the collection. get: tags: - applications.tokenIssuancePolicy summary: Get the number of the resource operationId: applications.tokenIssuancePolicies.GetCount-4be5 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/tokenIssuancePolicies/$ref': description: Provides operations to manage the collection of application entities. get: tags: - applications.tokenIssuancePolicy summary: List assigned tokenIssuancePolicies description: List the tokenIssuancePolicy objects that are assigned to an application. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-list-tokenissuancepolicies?view=graph-rest-beta operationId: applications.ListRefTokenIssuancePolicies 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: - applications.tokenIssuancePolicy summary: Assign tokenIssuancePolicy description: Assign a tokenIssuancePolicy to an application. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-post-tokenissuancepolicies?view=graph-rest-beta operationId: applications.CreateRefTokenIssuancePolicies 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: - applications.tokenIssuancePolicy summary: Remove tokenIssuancePolicy description: Remove a tokenIssuancePolicy from an application. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-delete-tokenissuancepolicies?view=graph-rest-beta operationId: applications.DeleteRefTokenIssuancePolicies 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/tokenLifetimePolicies': description: Provides operations to manage the tokenLifetimePolicies property of the microsoft.graph.application entity. get: tags: - applications.tokenLifetimePolicy summary: List assigned tokenLifetimePolicy description: List the tokenLifetimePolicy objects that are assigned to an application or servicePrincipal. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-list-tokenlifetimepolicies?view=graph-rest-beta operationId: applications.ListTokenLifetimePolicies 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.tokenLifetimePolicyCollectionResponse' 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/tokenLifetimePolicies/{tokenLifetimePolicy-id}/$ref': description: Provides operations to manage the collection of application entities. delete: tags: - applications.tokenLifetimePolicy summary: Remove tokenLifetimePolicy description: Remove a tokenLifetimePolicy from an application or servicePrincipal. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-delete-tokenlifetimepolicies?view=graph-rest-beta operationId: applications.tokenLifetimePolicies.DeleteRefTokenLifetimePolicy parameters: - 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application - name: tokenLifetimePolicy-id in: path description: The unique identifier of tokenLifetimePolicy required: true schema: type: string x-ms-docs-key-type: tokenLifetimePolicy '/applications/{application-id}/tokenLifetimePolicies/$count': description: Provides operations to count the resources in the collection. get: tags: - applications.tokenLifetimePolicy summary: Get the number of the resource operationId: applications.tokenLifetimePolicies.GetCount-5de4 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications/{application-id}/tokenLifetimePolicies/$ref': description: Provides operations to manage the collection of application entities. get: tags: - applications.tokenLifetimePolicy summary: List assigned tokenLifetimePolicy description: List the tokenLifetimePolicy objects that are assigned to an application or servicePrincipal. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-list-tokenlifetimepolicies?view=graph-rest-beta operationId: applications.ListRefTokenLifetimePolicies 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: - applications.tokenLifetimePolicy summary: Assign tokenLifetimePolicy description: Assign a tokenLifetimePolicy to an application or servicePrincipal. You can have multiple tokenLifetimePolicy policies in a tenant but can assign only one tokenLifetimePolicy per application. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-post-tokenlifetimepolicies?view=graph-rest-beta operationId: applications.CreateRefTokenLifetimePolicies 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: - applications.tokenLifetimePolicy summary: Remove tokenLifetimePolicy description: Remove a tokenLifetimePolicy from an application or servicePrincipal. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-delete-tokenlifetimepolicies?view=graph-rest-beta operationId: applications.DeleteRefTokenLifetimePolicies 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: application-id in: path description: The unique identifier of application required: true schema: type: string x-ms-docs-key-type: application '/applications(appId=''{appId}'')': description: Provides operations to manage the collection of application entities. get: tags: - applications.application summary: Get application description: Get the properties and relationships of an application object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-get?view=graph-rest-beta operationId: applications.application.GetApplicationByAppId parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.application' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - applications.application summary: Upsert application description: 'Create a new application object if it doesn''t exist, or update the properties of an existing application object.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-beta operationId: applications.application.UpdateApplicationByAppId requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.application' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.application' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - applications.application summary: Delete application description: 'Deletes an application. When deleted, apps are moved to a temporary container and can be restored within 30 days. After that time, they are permanently deleted.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-beta operationId: applications.application.DeleteApplicationByAppId parameters: - 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: appId in: path description: Alternate key of application required: true schema: type: string nullable: true '/applications(uniqueName=''{uniqueName}'')': description: Provides operations to manage the collection of application entities. get: tags: - applications.application summary: Get application description: Get the properties and relationships of an application object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-get?view=graph-rest-beta operationId: applications.application.GetApplicationByUniqueName parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.application' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - applications.application summary: Upsert application description: 'Create a new application object if it doesn''t exist, or update the properties of an existing application object.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-beta operationId: applications.application.UpdateApplicationByUniqueName requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.application' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.application' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - applications.application summary: Delete application description: 'Deletes an application. When deleted, apps are moved to a temporary container and can be restored within 30 days. After that time, they are permanently deleted.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-beta operationId: applications.application.DeleteApplicationByUniqueName parameters: - 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 application required: true schema: type: string nullable: true /applications/$count: description: Provides operations to count the resources in the collection. get: tags: - applications.application summary: Get the number of the resource operationId: applications.GetCount-8398 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' /applications/delta(): description: Provides operations to call the delta method. get: tags: - applications.application.Functions summary: Invoke function delta description: 'Get newly created, updated, or deleted applications without having to perform a full read of the entire resource 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/application-delta?view=graph-rest-beta operationId: applications.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 application type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.application' 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: - /applications/delta() /applications/getByIds: description: Provides operations to call the getByIds method. post: tags: - applications.application.Actions summary: Invoke action getByIds description: 'Return the directory objects specified in a list of IDs. 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-beta operationId: applications.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 /applications/getUserOwnedObjects: description: Provides operations to call the getUserOwnedObjects method. post: tags: - applications.application.Actions summary: Invoke action getUserOwnedObjects description: 'Retrieve a list of recently deleted application and group objects owned by the specified user. This API returns up to 1,000 deleted objects owned by the user, sorted by ID, and doesn''t support pagination.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta operationId: applications.getUserOwnedObjects requestBody: description: Action parameters content: application/json: schema: type: object properties: userId: type: string nullable: true type: type: string nullable: true required: true 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 /applications/validateProperties: description: Provides operations to call the validateProperties method. post: tags: - applications.application.Actions summary: 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. For validating properties of an existing group, use the validateProperties function for groups. The following validations are performed for the display name and mail nickname properties: \n1. Validate the prefix and suffix naming policy\n2. Validate the custom banned words policy\n3. Validate the mail nickname is unique This API returns with the first failure encountered. If one or more properties fail multiple validations, only the property with 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." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta operationId: applications.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 /applicationTemplates: description: Provides operations to manage the collection of applicationTemplate entities. get: tags: - applicationTemplates.applicationTemplate summary: List applicationTemplates description: Retrieve a list of applicationTemplate objects from the Microsoft Entra application gallery. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/applicationtemplate-list?view=graph-rest-beta operationId: applicationTemplates.applicationTemplate.ListApplicationTemplate 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.applicationTemplateCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation '/applicationTemplates/{applicationTemplate-id}': description: Provides operations to manage the collection of applicationTemplate entities. get: tags: - applicationTemplates.applicationTemplate summary: Get applicationTemplate description: Retrieve the properties of an applicationTemplate object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/applicationtemplate-get?view=graph-rest-beta operationId: applicationTemplates.applicationTemplate.GetApplicationTemplate parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.applicationTemplate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: applicationTemplate-id in: path description: The unique identifier of applicationTemplate required: true schema: type: string x-ms-docs-key-type: applicationTemplate '/applicationTemplates/{applicationTemplate-id}/instantiate': description: Provides operations to call the instantiate method. post: tags: - applicationTemplates.applicationTemplate.Actions summary: Invoke action instantiate description: 'Add an instance of an application from the Microsoft Entra application gallery into your directory. For non-gallery apps, use an application template with one of the following IDs to configure different single sign-on (SSO) modes like SAML SSO and password-based SSO.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/applicationtemplate-instantiate?view=graph-rest-beta operationId: applicationTemplates.applicationTemplate.instantiate requestBody: description: Action parameters content: application/json: schema: type: object properties: displayName: type: string nullable: true serviceManagementReference: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.applicationServicePrincipal' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: applicationTemplate-id in: path description: The unique identifier of applicationTemplate required: true schema: type: string x-ms-docs-key-type: applicationTemplate /applicationTemplates/$count: description: Provides operations to count the resources in the collection. get: tags: - applicationTemplates.applicationTemplate summary: Get the number of the resource operationId: applicationTemplates.GetCount-d1a3 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' /approvalWorkflowProviders: description: Provides operations to manage the collection of approvalWorkflowProvider entities. get: tags: - approvalWorkflowProviders.approvalWorkflowProvider summary: Get entities from approvalWorkflowProviders operationId: approvalWorkflowProviders.approvalWorkflowProvider.ListApprovalWorkflowProvider 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.approvalWorkflowProviderCollectionResponse' 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: - approvalWorkflowProviders.approvalWorkflowProvider summary: Add new entity to approvalWorkflowProviders operationId: approvalWorkflowProviders.approvalWorkflowProvider.CreateApprovalWorkflowProvider requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.approvalWorkflowProvider' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.approvalWorkflowProvider' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/approvalWorkflowProviders/{approvalWorkflowProvider-id}': description: Provides operations to manage the collection of approvalWorkflowProvider entities. get: tags: - approvalWorkflowProviders.approvalWorkflowProvider summary: Get entity from approvalWorkflowProviders by key operationId: approvalWorkflowProviders.approvalWorkflowProvider.GetApprovalWorkflowProvider parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.approvalWorkflowProvider' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - approvalWorkflowProviders.approvalWorkflowProvider summary: Update entity in approvalWorkflowProviders operationId: approvalWorkflowProviders.approvalWorkflowProvider.UpdateApprovalWorkflowProvider requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.approvalWorkflowProvider' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.approvalWorkflowProvider' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - approvalWorkflowProviders.approvalWorkflowProvider summary: Delete entity from approvalWorkflowProviders operationId: approvalWorkflowProviders.approvalWorkflowProvider.DeleteApprovalWorkflowProvider parameters: - 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: approvalWorkflowProvider-id in: path description: The unique identifier of approvalWorkflowProvider required: true schema: type: string x-ms-docs-key-type: approvalWorkflowProvider '/approvalWorkflowProviders/{approvalWorkflowProvider-id}/businessFlows': description: Provides operations to manage the businessFlows property of the microsoft.graph.approvalWorkflowProvider entity. get: tags: - approvalWorkflowProviders.businessFlow summary: Get businessFlows from approvalWorkflowProviders operationId: approvalWorkflowProviders.ListBusinessFlows 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.businessFlowCollectionResponse' 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: - approvalWorkflowProviders.businessFlow summary: Create new navigation property to businessFlows for approvalWorkflowProviders operationId: approvalWorkflowProviders.CreateBusinessFlows requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.businessFlow' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.businessFlow' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: approvalWorkflowProvider-id in: path description: The unique identifier of approvalWorkflowProvider required: true schema: type: string x-ms-docs-key-type: approvalWorkflowProvider '/approvalWorkflowProviders/{approvalWorkflowProvider-id}/businessFlows/{businessFlow-id}': description: Provides operations to manage the businessFlows property of the microsoft.graph.approvalWorkflowProvider entity. get: tags: - approvalWorkflowProviders.businessFlow summary: Get businessFlows from approvalWorkflowProviders operationId: approvalWorkflowProviders.GetBusinessFlows parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.businessFlow' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - approvalWorkflowProviders.businessFlow summary: Update the navigation property businessFlows in approvalWorkflowProviders operationId: approvalWorkflowProviders.UpdateBusinessFlows requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.businessFlow' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.businessFlow' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - approvalWorkflowProviders.businessFlow summary: Delete navigation property businessFlows for approvalWorkflowProviders operationId: approvalWorkflowProviders.DeleteBusinessFlows parameters: - 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: approvalWorkflowProvider-id in: path description: The unique identifier of approvalWorkflowProvider required: true schema: type: string x-ms-docs-key-type: approvalWorkflowProvider - name: businessFlow-id in: path description: The unique identifier of businessFlow required: true schema: type: string x-ms-docs-key-type: businessFlow '/approvalWorkflowProviders/{approvalWorkflowProvider-id}/businessFlows/{businessFlow-id}/recordDecisions': description: Provides operations to call the recordDecisions method. post: tags: - approvalWorkflowProviders.businessFlow summary: Invoke action recordDecisions operationId: approvalWorkflowProviders.approvalWorkflowProvider.businessFlows.businessFlow.recordDecisions requestBody: description: Action parameters content: application/json: schema: type: object properties: reviewResult: type: string nullable: true justification: 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: approvalWorkflowProvider-id in: path description: The unique identifier of approvalWorkflowProvider required: true schema: type: string x-ms-docs-key-type: approvalWorkflowProvider - name: businessFlow-id in: path description: The unique identifier of businessFlow required: true schema: type: string x-ms-docs-key-type: businessFlow x-ms-docs-grouped-path: - '/approvalWorkflowProviders/{approvalWorkflowProvider-id}/businessFlowsWithRequestsAwaitingMyDecision/{businessFlow-id}/recordDecisions' '/approvalWorkflowProviders/{approvalWorkflowProvider-id}/businessFlows/$count': description: Provides operations to count the resources in the collection. get: tags: - approvalWorkflowProviders.businessFlow summary: Get the number of the resource operationId: approvalWorkflowProviders.businessFlows.GetCount-f24b 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: approvalWorkflowProvider-id in: path description: The unique identifier of approvalWorkflowProvider required: true schema: type: string x-ms-docs-key-type: approvalWorkflowProvider '/approvalWorkflowProviders/{approvalWorkflowProvider-id}/businessFlowsWithRequestsAwaitingMyDecision': description: Provides operations to manage the businessFlowsWithRequestsAwaitingMyDecision property of the microsoft.graph.approvalWorkflowProvider entity. get: tags: - approvalWorkflowProviders.businessFlow summary: Get businessFlowsWithRequestsAwaitingMyDecision from approvalWorkflowProviders operationId: approvalWorkflowProviders.ListBusinessFlowsWithRequestsAwaitingMyDecision 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.businessFlowCollectionResponse' 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: - approvalWorkflowProviders.businessFlow summary: Create new navigation property to businessFlowsWithRequestsAwaitingMyDecision for approvalWorkflowProviders operationId: approvalWorkflowProviders.CreateBusinessFlowsWithRequestsAwaitingMyDecision requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.businessFlow' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.businessFlow' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: approvalWorkflowProvider-id in: path description: The unique identifier of approvalWorkflowProvider required: true schema: type: string x-ms-docs-key-type: approvalWorkflowProvider '/approvalWorkflowProviders/{approvalWorkflowProvider-id}/businessFlowsWithRequestsAwaitingMyDecision/{businessFlow-id}': description: Provides operations to manage the businessFlowsWithRequestsAwaitingMyDecision property of the microsoft.graph.approvalWorkflowProvider entity. get: tags: - approvalWorkflowProviders.businessFlow summary: Get businessFlowsWithRequestsAwaitingMyDecision from approvalWorkflowProviders operationId: approvalWorkflowProviders.GetBusinessFlowsWithRequestsAwaitingMyDecision parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.businessFlow' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - approvalWorkflowProviders.businessFlow summary: Update the navigation property businessFlowsWithRequestsAwaitingMyDecision in approvalWorkflowProviders operationId: approvalWorkflowProviders.UpdateBusinessFlowsWithRequestsAwaitingMyDecision requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.businessFlow' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.businessFlow' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - approvalWorkflowProviders.businessFlow summary: Delete navigation property businessFlowsWithRequestsAwaitingMyDecision for approvalWorkflowProviders operationId: approvalWorkflowProviders.DeleteBusinessFlowsWithRequestsAwaitingMyDecision parameters: - 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: approvalWorkflowProvider-id in: path description: The unique identifier of approvalWorkflowProvider required: true schema: type: string x-ms-docs-key-type: approvalWorkflowProvider - name: businessFlow-id in: path description: The unique identifier of businessFlow required: true schema: type: string x-ms-docs-key-type: businessFlow '/approvalWorkflowProviders/{approvalWorkflowProvider-id}/businessFlowsWithRequestsAwaitingMyDecision/{businessFlow-id}/recordDecisions': description: Provides operations to call the recordDecisions method. post: tags: - approvalWorkflowProviders.businessFlow summary: Invoke action recordDecisions operationId: approvalWorkflowProviders.approvalWorkflowProvider.businessFlowsWithRequestsAwaitingMyDecision.businessFlow.recordDecisions requestBody: description: Action parameters content: application/json: schema: type: object properties: reviewResult: type: string nullable: true justification: 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: approvalWorkflowProvider-id in: path description: The unique identifier of approvalWorkflowProvider required: true schema: type: string x-ms-docs-key-type: approvalWorkflowProvider - name: businessFlow-id in: path description: The unique identifier of businessFlow required: true schema: type: string x-ms-docs-key-type: businessFlow x-ms-docs-grouped-path: - '/approvalWorkflowProviders/{approvalWorkflowProvider-id}/businessFlows/{businessFlow-id}/recordDecisions' '/approvalWorkflowProviders/{approvalWorkflowProvider-id}/businessFlowsWithRequestsAwaitingMyDecision/$count': description: Provides operations to count the resources in the collection. get: tags: - approvalWorkflowProviders.businessFlow summary: Get the number of the resource operationId: approvalWorkflowProviders.businessFlowsWithRequestsAwaitingMyDecision.GetCount-9b38 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: approvalWorkflowProvider-id in: path description: The unique identifier of approvalWorkflowProvider required: true schema: type: string x-ms-docs-key-type: approvalWorkflowProvider '/approvalWorkflowProviders/{approvalWorkflowProvider-id}/policyTemplates': description: Provides operations to manage the policyTemplates property of the microsoft.graph.approvalWorkflowProvider entity. get: tags: - approvalWorkflowProviders.governancePolicyTemplate summary: Get policyTemplates from approvalWorkflowProviders operationId: approvalWorkflowProviders.ListPolicyTemplates 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.governancePolicyTemplateCollectionResponse' 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: - approvalWorkflowProviders.governancePolicyTemplate summary: Create new navigation property to policyTemplates for approvalWorkflowProviders operationId: approvalWorkflowProviders.CreatePolicyTemplates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.governancePolicyTemplate' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.governancePolicyTemplate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: approvalWorkflowProvider-id in: path description: The unique identifier of approvalWorkflowProvider required: true schema: type: string x-ms-docs-key-type: approvalWorkflowProvider '/approvalWorkflowProviders/{approvalWorkflowProvider-id}/policyTemplates/{governancePolicyTemplate-id}': description: Provides operations to manage the policyTemplates property of the microsoft.graph.approvalWorkflowProvider entity. get: tags: - approvalWorkflowProviders.governancePolicyTemplate summary: Get policyTemplates from approvalWorkflowProviders operationId: approvalWorkflowProviders.GetPolicyTemplates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.governancePolicyTemplate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - approvalWorkflowProviders.governancePolicyTemplate summary: Update the navigation property policyTemplates in approvalWorkflowProviders operationId: approvalWorkflowProviders.UpdatePolicyTemplates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.governancePolicyTemplate' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.governancePolicyTemplate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - approvalWorkflowProviders.governancePolicyTemplate summary: Delete navigation property policyTemplates for approvalWorkflowProviders operationId: approvalWorkflowProviders.DeletePolicyTemplates parameters: - 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: approvalWorkflowProvider-id in: path description: The unique identifier of approvalWorkflowProvider required: true schema: type: string x-ms-docs-key-type: approvalWorkflowProvider - name: governancePolicyTemplate-id in: path description: The unique identifier of governancePolicyTemplate required: true schema: type: string x-ms-docs-key-type: governancePolicyTemplate '/approvalWorkflowProviders/{approvalWorkflowProvider-id}/policyTemplates/$count': description: Provides operations to count the resources in the collection. get: tags: - approvalWorkflowProviders.governancePolicyTemplate summary: Get the number of the resource operationId: approvalWorkflowProviders.policyTemplates.GetCount-acfa 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: approvalWorkflowProvider-id in: path description: The unique identifier of approvalWorkflowProvider required: true schema: type: string x-ms-docs-key-type: approvalWorkflowProvider /approvalWorkflowProviders/$count: description: Provides operations to count the resources in the collection. get: tags: - approvalWorkflowProviders.approvalWorkflowProvider summary: Get the number of the resource operationId: approvalWorkflowProviders.GetCount-ea36 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' /auditLogs: description: Provides operations to manage the auditLogRoot singleton. get: tags: - auditLogs.auditLogRoot summary: Get auditLogs operationId: auditLogs.auditLogRoot.GetAuditLogRoot parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.auditLogRoot' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - auditLogs.auditLogRoot summary: Update auditLogs operationId: auditLogs.auditLogRoot.UpdateAuditLogRoot requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.auditLogRoot' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.auditLogRoot' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation /auditLogs/customSecurityAttributeAudits: description: Provides operations to manage the customSecurityAttributeAudits property of the microsoft.graph.auditLogRoot entity. get: tags: - auditLogs.customSecurityAttributeAudit summary: List customSecurityAttributeAudits description: Get the list of audit logs generated by activities related to custom security attribute management in Microsoft Entra ID. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/auditlogroot-list-customsecurityattributeaudits?view=graph-rest-beta operationId: auditLogs.ListCustomSecurityAttributeAudits 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.customSecurityAttributeAuditCollectionResponse' 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: - auditLogs.customSecurityAttributeAudit summary: Create new navigation property to customSecurityAttributeAudits for auditLogs operationId: auditLogs.CreateCustomSecurityAttributeAudits requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.customSecurityAttributeAudit' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.customSecurityAttributeAudit' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/auditLogs/customSecurityAttributeAudits/{customSecurityAttributeAudit-id}': description: Provides operations to manage the customSecurityAttributeAudits property of the microsoft.graph.auditLogRoot entity. get: tags: - auditLogs.customSecurityAttributeAudit summary: Get customSecurityAttributeAudits from auditLogs description: Represents a custom security attribute audit log. operationId: auditLogs.GetCustomSecurityAttributeAudits parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.customSecurityAttributeAudit' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - auditLogs.customSecurityAttributeAudit summary: Update the navigation property customSecurityAttributeAudits in auditLogs operationId: auditLogs.UpdateCustomSecurityAttributeAudits requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.customSecurityAttributeAudit' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.customSecurityAttributeAudit' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - auditLogs.customSecurityAttributeAudit summary: Delete navigation property customSecurityAttributeAudits for auditLogs operationId: auditLogs.DeleteCustomSecurityAttributeAudits parameters: - 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: customSecurityAttributeAudit-id in: path description: The unique identifier of customSecurityAttributeAudit required: true schema: type: string x-ms-docs-key-type: customSecurityAttributeAudit /auditLogs/customSecurityAttributeAudits/$count: description: Provides operations to count the resources in the collection. get: tags: - auditLogs.customSecurityAttributeAudit summary: Get the number of the resource operationId: auditLogs.customSecurityAttributeAudits.GetCount-313a 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' /auditLogs/directoryAudits: description: Provides operations to manage the directoryAudits property of the microsoft.graph.auditLogRoot entity. get: tags: - auditLogs.directoryAudit summary: List directoryAudits description: 'Get the list of audit logs generated by Microsoft Entra ID. This includes audit logs generated by various services within Microsoft Entra ID, including user, app, device and group Management, privileged identity management (PIM), access reviews, terms of use, identity protection, password management (SSPR and admin password resets), and self service group management.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/directoryaudit-list?view=graph-rest-beta operationId: auditLogs.ListDirectoryAudits 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.directoryAuditCollectionResponse' 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: - auditLogs.directoryAudit summary: Create new navigation property to directoryAudits for auditLogs operationId: auditLogs.CreateDirectoryAudits requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryAudit' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryAudit' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/auditLogs/directoryAudits/{directoryAudit-id}': description: Provides operations to manage the directoryAudits property of the microsoft.graph.auditLogRoot entity. get: tags: - auditLogs.directoryAudit summary: Get directoryAudit description: 'Get a specific Microsoft Entra audit log item. This includes an audit log item generated by various services within Microsoft Entra ID like user, application, device and group management, privileged identity management (PIM), access reviews, terms of use, identity protection, password management (self-service and admin password resets), self-service group management, and so on.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/directoryaudit-get?view=graph-rest-beta operationId: auditLogs.GetDirectoryAudits parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryAudit' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - auditLogs.directoryAudit summary: Update the navigation property directoryAudits in auditLogs operationId: auditLogs.UpdateDirectoryAudits requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryAudit' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.directoryAudit' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - auditLogs.directoryAudit summary: Delete navigation property directoryAudits for auditLogs operationId: auditLogs.DeleteDirectoryAudits parameters: - 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: directoryAudit-id in: path description: The unique identifier of directoryAudit required: true schema: type: string x-ms-docs-key-type: directoryAudit /auditLogs/directoryAudits/$count: description: Provides operations to count the resources in the collection. get: tags: - auditLogs.directoryAudit summary: Get the number of the resource operationId: auditLogs.directoryAudits.GetCount-fedb 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' /auditLogs/directoryProvisioning: description: Provides operations to manage the directoryProvisioning property of the microsoft.graph.auditLogRoot entity. get: tags: - auditLogs.provisioningObjectSummary summary: Get directoryProvisioning from auditLogs operationId: auditLogs.ListDirectoryProvisioning 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.provisioningObjectSummaryCollectionResponse' 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: - auditLogs.provisioningObjectSummary summary: Create new navigation property to directoryProvisioning for auditLogs operationId: auditLogs.CreateDirectoryProvisioning requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.provisioningObjectSummary' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.provisioningObjectSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/auditLogs/directoryProvisioning/{provisioningObjectSummary-id}': description: Provides operations to manage the directoryProvisioning property of the microsoft.graph.auditLogRoot entity. get: tags: - auditLogs.provisioningObjectSummary summary: Get directoryProvisioning from auditLogs operationId: auditLogs.GetDirectoryProvisioning parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.provisioningObjectSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - auditLogs.provisioningObjectSummary summary: Update the navigation property directoryProvisioning in auditLogs operationId: auditLogs.UpdateDirectoryProvisioning requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.provisioningObjectSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.provisioningObjectSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - auditLogs.provisioningObjectSummary summary: Delete navigation property directoryProvisioning for auditLogs operationId: auditLogs.DeleteDirectoryProvisioning parameters: - 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: provisioningObjectSummary-id in: path description: The unique identifier of provisioningObjectSummary required: true schema: type: string x-ms-docs-key-type: provisioningObjectSummary /auditLogs/directoryProvisioning/$count: description: Provides operations to count the resources in the collection. get: tags: - auditLogs.provisioningObjectSummary summary: Get the number of the resource operationId: auditLogs.directoryProvisioning.GetCount-1cd0 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' /auditLogs/provisioning: description: Provides operations to manage the provisioning property of the microsoft.graph.auditLogRoot entity. get: tags: - auditLogs.provisioningObjectSummary summary: List provisioningObjectSummary description: 'Get all provisioning events that occurred in your tenant, such as the deletion of a group in a target application or the creation of a user when provisioning user accounts from your HR system. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/provisioningobjectsummary-list?view=graph-rest-beta operationId: auditLogs.ListProvisioning 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.provisioningObjectSummaryCollectionResponse' 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: - auditLogs.provisioningObjectSummary summary: Create new navigation property to provisioning for auditLogs operationId: auditLogs.CreateProvisioning requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.provisioningObjectSummary' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.provisioningObjectSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/auditLogs/provisioning/{provisioningObjectSummary-id}': description: Provides operations to manage the provisioning property of the microsoft.graph.auditLogRoot entity. get: tags: - auditLogs.provisioningObjectSummary summary: Get provisioning from auditLogs description: Represents an action performed by the Microsoft Entra provisioning service and its associated properties. operationId: auditLogs.GetProvisioning parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.provisioningObjectSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - auditLogs.provisioningObjectSummary summary: Update the navigation property provisioning in auditLogs operationId: auditLogs.UpdateProvisioning requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.provisioningObjectSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.provisioningObjectSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - auditLogs.provisioningObjectSummary summary: Delete navigation property provisioning for auditLogs operationId: auditLogs.DeleteProvisioning parameters: - 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: provisioningObjectSummary-id in: path description: The unique identifier of provisioningObjectSummary required: true schema: type: string x-ms-docs-key-type: provisioningObjectSummary /auditLogs/provisioning/$count: description: Provides operations to count the resources in the collection. get: tags: - auditLogs.provisioningObjectSummary summary: Get the number of the resource operationId: auditLogs.provisioning.GetCount-2f99 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' /auditLogs/signIns: description: Provides operations to manage the signIns property of the microsoft.graph.auditLogRoot entity. get: tags: - auditLogs.signIn summary: List signIns description: 'Get a list of signIn objects. The list contains the user sign-ins for your Microsoft Entra tenant. Sign-ins where a username and password are passed as part of authorization token, and successful federated sign-ins are currently included in the sign-in logs. The maximum and default page size is 1,000 objects and by default, the most recent sign-ins are returned first. Only sign-in events that occurred within the Microsoft Entra ID default retention period are available.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/signin-list?view=graph-rest-beta operationId: auditLogs.ListSignIns 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.signInCollectionResponse' 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: - auditLogs.signIn summary: Create new navigation property to signIns for auditLogs operationId: auditLogs.CreateSignIns requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.signIn' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.signIn' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/auditLogs/signIns/{signIn-id}': description: Provides operations to manage the signIns property of the microsoft.graph.auditLogRoot entity. get: tags: - auditLogs.signIn summary: Get signIn description: Retrieve a specific Microsoft Entra user sign-in event for your tenant. Sign-ins that are interactive in nature (where a username/password is passed as part of auth token) and successful federated sign-ins are currently included in the sign-in logs. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/signin-get?view=graph-rest-beta operationId: auditLogs.GetSignIns parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.signIn' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - auditLogs.signIn summary: Update the navigation property signIns in auditLogs operationId: auditLogs.UpdateSignIns requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.signIn' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.signIn' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - auditLogs.signIn summary: Delete navigation property signIns for auditLogs operationId: auditLogs.DeleteSignIns parameters: - 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: signIn-id in: path description: The unique identifier of signIn required: true schema: type: string x-ms-docs-key-type: signIn /auditLogs/signIns/$count: description: Provides operations to count the resources in the collection. get: tags: - auditLogs.signIn summary: Get the number of the resource operationId: auditLogs.signIns.GetCount-9ee4 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' /auditLogs/signIns/confirmCompromised: description: Provides operations to call the confirmCompromised method. post: tags: - auditLogs.signIn summary: Invoke action confirmCompromised description: 'Allow admins to mark an event in the Microsoft Entra sign-in logs as risky. Events marked as risky by an admin are immediately flagged as high risk in Microsoft Entra ID Protection, overriding previous risk states. Admins can confirm that events flagged as risky by Microsoft Entra ID Protection are in fact risky. For details about investigating Identity Protection risks, see How to investigate risk.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/signin-confirmcompromised?view=graph-rest-beta operationId: auditLogs.signIns.confirmCompromised requestBody: description: Action parameters content: application/json: schema: type: object properties: requestIds: type: array items: 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 /auditLogs/signIns/confirmSafe: description: Provides operations to call the confirmSafe method. post: tags: - auditLogs.signIn summary: Invoke action confirmSafe description: 'Allow admins to mark an event in Microsoft Entra sign-in logs as safe. Admins can either mark the events flagged as risky by Microsoft Entra ID Protection as safe, or they can mark unflagged events as safe. For details about investigating Identity Protection risks, see How to investigate risk.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/signin-confirmsafe?view=graph-rest-beta operationId: auditLogs.signIns.confirmSafe requestBody: description: Action parameters content: application/json: schema: type: object properties: requestIds: type: array items: 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 /auditLogs/signUps: description: Provides operations to manage the signUps property of the microsoft.graph.auditLogRoot entity. get: tags: - auditLogs.selfServiceSignUp summary: Get signUps from auditLogs operationId: auditLogs.ListSignUps 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.selfServiceSignUpCollectionResponse' 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: - auditLogs.selfServiceSignUp summary: Create new navigation property to signUps for auditLogs operationId: auditLogs.CreateSignUps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.selfServiceSignUp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.selfServiceSignUp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/auditLogs/signUps/{selfServiceSignUp-id}': description: Provides operations to manage the signUps property of the microsoft.graph.auditLogRoot entity. get: tags: - auditLogs.selfServiceSignUp summary: Get signUps from auditLogs operationId: auditLogs.GetSignUps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.selfServiceSignUp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - auditLogs.selfServiceSignUp summary: Update the navigation property signUps in auditLogs operationId: auditLogs.UpdateSignUps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.selfServiceSignUp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.selfServiceSignUp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - auditLogs.selfServiceSignUp summary: Delete navigation property signUps for auditLogs operationId: auditLogs.DeleteSignUps parameters: - 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: selfServiceSignUp-id in: path description: The unique identifier of selfServiceSignUp required: true schema: type: string x-ms-docs-key-type: selfServiceSignUp /auditLogs/signUps/$count: description: Provides operations to count the resources in the collection. get: tags: - auditLogs.selfServiceSignUp summary: Get the number of the resource operationId: auditLogs.signUps.GetCount-fd41 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' /authenticationMethodConfigurations: description: Provides operations to manage the collection of authenticationMethodConfiguration entities. get: tags: - authenticationMethodConfigurations.authenticationMethodConfiguration summary: Get entities from authenticationMethodConfigurations operationId: authenticationMethodConfigurations.authenticationMethodConfiguration.ListAuthenticationMethodConfiguration 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.authenticationMethodConfigurationCollectionResponse' 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: - authenticationMethodConfigurations.authenticationMethodConfiguration summary: Add new entity to authenticationMethodConfigurations operationId: authenticationMethodConfigurations.authenticationMethodConfiguration.CreateAuthenticationMethodConfiguration requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.authenticationMethodConfiguration' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.authenticationMethodConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}': description: Provides operations to manage the collection of authenticationMethodConfiguration entities. get: tags: - authenticationMethodConfigurations.authenticationMethodConfiguration summary: Get entity from authenticationMethodConfigurations by key operationId: authenticationMethodConfigurations.authenticationMethodConfiguration.GetAuthenticationMethodConfiguration parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.authenticationMethodConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - authenticationMethodConfigurations.authenticationMethodConfiguration summary: Update entity in authenticationMethodConfigurations operationId: authenticationMethodConfigurations.authenticationMethodConfiguration.UpdateAuthenticationMethodConfiguration requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.authenticationMethodConfiguration' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.authenticationMethodConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - authenticationMethodConfigurations.authenticationMethodConfiguration summary: Delete entity from authenticationMethodConfigurations operationId: authenticationMethodConfigurations.authenticationMethodConfiguration.DeleteAuthenticationMethodConfiguration parameters: - 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: authenticationMethodConfiguration-id in: path description: The unique identifier of authenticationMethodConfiguration required: true schema: type: string x-ms-docs-key-type: authenticationMethodConfiguration /authenticationMethodConfigurations/$count: description: Provides operations to count the resources in the collection. get: tags: - authenticationMethodConfigurations.authenticationMethodConfiguration summary: Get the number of the resource operationId: authenticationMethodConfigurations.GetCount-6d53 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' /authenticationMethodDevices: description: Provides operations to manage the collection of authenticationMethodDevice entities. get: tags: - authenticationMethodDevices.authenticationMethodDevice summary: Get entities from authenticationMethodDevices operationId: authenticationMethodDevices.authenticationMethodDevice.ListAuthenticationMethodDevice 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.authenticationMethodDeviceCollectionResponse' 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: - authenticationMethodDevices.authenticationMethodDevice summary: Add new entity to authenticationMethodDevices operationId: authenticationMethodDevices.authenticationMethodDevice.CreateAuthenticationMethodDevice requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.authenticationMethodDevice' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.authenticationMethodDevice' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/authenticationMethodDevices/{authenticationMethodDevice-id}': description: Provides operations to manage the collection of authenticationMethodDevice entities. get: tags: - authenticationMethodDevices.authenticationMethodDevice summary: Get entity from authenticationMethodDevices by key operationId: authenticationMethodDevices.authenticationMethodDevice.GetAuthenticationMethodDevice parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.authenticationMethodDevice' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - authenticationMethodDevices.authenticationMethodDevice summary: Update entity in authenticationMethodDevices operationId: authenticationMethodDevices.authenticationMethodDevice.UpdateAuthenticationMethodDevice requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.authenticationMethodDevice' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.authenticationMethodDevice' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - authenticationMethodDevices.authenticationMethodDevice summary: Delete entity from authenticationMethodDevices operationId: authenticationMethodDevices.authenticationMethodDevice.DeleteAuthenticationMethodDevice parameters: - 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: authenticationMethodDevice-id in: path description: The unique identifier of authenticationMethodDevice required: true schema: type: string x-ms-docs-key-type: authenticationMethodDevice '/authenticationMethodDevices/{authenticationMethodDevice-id}/hardwareOathDevices': description: Provides operations to manage the hardwareOathDevices property of the microsoft.graph.authenticationMethodDevice entity. get: tags: - authenticationMethodDevices.hardwareOathTokenAuthenticationMethodDevice summary: Get hardwareOathDevices from authenticationMethodDevices description: Exposes the hardware OATH method in the directory. operationId: authenticationMethodDevices.ListHardwareOathDevices 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.hardwareOathTokenAuthenticationMethodDeviceCollectionResponse' 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: - authenticationMethodDevices.hardwareOathTokenAuthenticationMethodDevice summary: Create new navigation property to hardwareOathDevices for authenticationMethodDevices operationId: authenticationMethodDevices.CreateHardwareOathDevices requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.hardwareOathTokenAuthenticationMethodDevice' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.hardwareOathTokenAuthenticationMethodDevice' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: authenticationMethodDevice-id in: path description: The unique identifier of authenticationMethodDevice required: true schema: type: string x-ms-docs-key-type: authenticationMethodDevice '/authenticationMethodDevices/{authenticationMethodDevice-id}/hardwareOathDevices/{hardwareOathTokenAuthenticationMethodDevice-id}': description: Provides operations to manage the hardwareOathDevices property of the microsoft.graph.authenticationMethodDevice entity. get: tags: - authenticationMethodDevices.hardwareOathTokenAuthenticationMethodDevice summary: Get hardwareOathDevices from authenticationMethodDevices description: Exposes the hardware OATH method in the directory. operationId: authenticationMethodDevices.GetHardwareOathDevices parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.hardwareOathTokenAuthenticationMethodDevice' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - authenticationMethodDevices.hardwareOathTokenAuthenticationMethodDevice summary: Update the navigation property hardwareOathDevices in authenticationMethodDevices operationId: authenticationMethodDevices.UpdateHardwareOathDevices requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.hardwareOathTokenAuthenticationMethodDevice' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.hardwareOathTokenAuthenticationMethodDevice' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - authenticationMethodDevices.hardwareOathTokenAuthenticationMethodDevice summary: Delete navigation property hardwareOathDevices for authenticationMethodDevices operationId: authenticationMethodDevices.DeleteHardwareOathDevices parameters: - 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: authenticationMethodDevice-id in: path description: The unique identifier of authenticationMethodDevice required: true schema: type: string x-ms-docs-key-type: authenticationMethodDevice - name: hardwareOathTokenAuthenticationMethodDevice-id in: path description: The unique identifier of hardwareOathTokenAuthenticationMethodDevice required: true schema: type: string x-ms-docs-key-type: hardwareOathTokenAuthenticationMethodDevice '/authenticationMethodDevices/{authenticationMethodDevice-id}/hardwareOathDevices/{hardwareOathTokenAuthenticationMethodDevice-id}/assignTo': description: Provides operations to manage the assignTo property of the microsoft.graph.hardwareOathTokenAuthenticationMethodDevice entity. get: tags: - authenticationMethodDevices.hardwareOathTokenAuthenticationMethodDevice summary: Get assignTo from authenticationMethodDevices description: Assign the hardware OATH token to a user. operationId: authenticationMethodDevices.hardwareOathDevices.GetAssignTo parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: 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: authenticationMethodDevice-id in: path description: The unique identifier of authenticationMethodDevice required: true schema: type: string x-ms-docs-key-type: authenticationMethodDevice - name: hardwareOathTokenAuthenticationMethodDevice-id in: path description: The unique identifier of hardwareOathTokenAuthenticationMethodDevice required: true schema: type: string x-ms-docs-key-type: hardwareOathTokenAuthenticationMethodDevice '/authenticationMethodDevices/{authenticationMethodDevice-id}/hardwareOathDevices/{hardwareOathTokenAuthenticationMethodDevice-id}/assignTo/mailboxSettings': get: tags: - authenticationMethodDevices.hardwareOathTokenAuthenticationMethodDevice summary: 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. For more information, see User preferences for languages and regional formats. Returned only on $select.' operationId: authenticationMethodDevices.hardwareOathDevices.assignTo.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: - authenticationMethodDevices.hardwareOathTokenAuthenticationMethodDevice summary: Update property mailboxSettings value. operationId: authenticationMethodDevices.hardwareOathDevices.assignTo.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: authenticationMethodDevice-id in: path description: The unique identifier of authenticationMethodDevice required: true schema: type: string x-ms-docs-key-type: authenticationMethodDevice - name: hardwareOathTokenAuthenticationMethodDevice-id in: path description: The unique identifier of hardwareOathTokenAuthenticationMethodDevice required: true schema: type: string x-ms-docs-key-type: hardwareOathTokenAuthenticationMethodDevice '/authenticationMethodDevices/{authenticationMethodDevice-id}/hardwareOathDevices/{hardwareOathTokenAuthenticationMethodDevice-id}/assignTo/serviceProvisioningErrors': get: tags: - authenticationMethodDevices.hardwareOathTokenAuthenticationMethodDevice summary: 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.' operationId: authenticationMethodDevices.hardwareOathDevices.assignTo.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: authenticationMethodDevice-id in: path description: The unique identifier of authenticationMethodDevice required: true schema: type: string x-ms-docs-key-type: authenticationMethodDevice - name: hardwareOathTokenAuthenticationMethodDevice-id in: path description: The unique identifier of hardwareOathTokenAuthenticationMethodDevice required: true schema: type: string x-ms-docs-key-type: hardwareOathTokenAuthenticationMethodDevice '/authenticationMethodDevices/{authenticationMethodDevice-id}/hardwareOathDevices/{hardwareOathTokenAuthenticationMethodDevice-id}/assignTo/serviceProvisioningErrors/$count': description: Provides operations to count the resources in the collection. get: tags: - authenticationMethodDevices.hardwareOathTokenAuthenticationMethodDevice summary: Get the number of the resource operationId: authenticationMethodDevices.hardwareOathDevices.assignTo.ServiceProvisioningErrors.GetCount-3182 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: authenticationMethodDevice-id in: path description: The unique identifier of authenticationMethodDevice required: true schema: type: string x-ms-docs-key-type: authenticationMethodDevice - name: hardwareOathTokenAuthenticationMethodDevice-id in: path description: The unique identifier of hardwareOathTokenAuthenticationMethodDevice required: true schema: type: string x-ms-docs-key-type: hardwareOathTokenAuthenticationMethodDevice '/authenticationMethodDevices/{authenticationMethodDevice-id}/hardwareOathDevices/$count': description: Provides operations to count the resources in the collection. get: tags: - authenticationMethodDevices.hardwareOathTokenAuthenticationMethodDevice summary: Get the number of the resource operationId: authenticationMethodDevices.hardwareOathDevices.GetCount-ad9a 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: authenticationMethodDevice-id in: path description: The unique identifier of authenticationMethodDevice required: true schema: type: string x-ms-docs-key-type: authenticationMethodDevice /authenticationMethodDevices/$count: description: Provides operations to count the resources in the collection. get: tags: - authenticationMethodDevices.authenticationMethodDevice summary: Get the number of the resource operationId: authenticationMethodDevices.GetCount-2a51 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' /authenticationMethodsPolicy: description: Provides operations to manage the authenticationMethodsPolicy singleton. get: tags: - authenticationMethodsPolicy.authenticationMethodsPolicy summary: Get authenticationMethodsPolicy operationId: authenticationMethodsPolicy.authenticationMethodsPolicy.GetAuthenticationMethodsPolicy parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.authenticationMethodsPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - authenticationMethodsPolicy.authenticationMethodsPolicy summary: Update authenticationMethodsPolicy operationId: authenticationMethodsPolicy.authenticationMethodsPolicy.UpdateAuthenticationMethodsPolicy requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.authenticationMethodsPolicy' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.authenticationMethodsPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation /authenticationMethodsPolicy/authenticationMethodConfigurations: description: Provides operations to manage the authenticationMethodConfigurations property of the microsoft.graph.authenticationMethodsPolicy entity. get: tags: - authenticationMethodsPolicy.authenticationMethodConfiguration summary: Get authenticationMethodConfigurations from authenticationMethodsPolicy description: Represents the settings for each authentication method. Automatically expanded on GET /policies/authenticationMethodsPolicy. operationId: authenticationMethodsPolicy.ListAuthenticationMethodConfigurations 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.authenticationMethodConfigurationCollectionResponse' 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: - authenticationMethodsPolicy.authenticationMethodConfiguration summary: Create new navigation property to authenticationMethodConfigurations for authenticationMethodsPolicy operationId: authenticationMethodsPolicy.CreateAuthenticationMethodConfigurations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.authenticationMethodConfiguration' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.authenticationMethodConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/authenticationMethodsPolicy/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}': description: Provides operations to manage the authenticationMethodConfigurations property of the microsoft.graph.authenticationMethodsPolicy entity. get: tags: - authenticationMethodsPolicy.authenticationMethodConfiguration summary: Get authenticationMethodConfigurations from authenticationMethodsPolicy description: Represents the settings for each authentication method. Automatically expanded on GET /policies/authenticationMethodsPolicy. operationId: authenticationMethodsPolicy.GetAuthenticationMethodConfigurations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.authenticationMethodConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - authenticationMethodsPolicy.authenticationMethodConfiguration summary: Update the navigation property authenticationMethodConfigurations in authenticationMethodsPolicy operationId: authenticationMethodsPolicy.UpdateAuthenticationMethodConfigurations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.authenticationMethodConfiguration' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.authenticationMethodConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - authenticationMethodsPolicy.authenticationMethodConfiguration summary: Delete navigation property authenticationMethodConfigurations for authenticationMethodsPolicy operationId: authenticationMethodsPolicy.DeleteAuthenticationMethodConfigurations parameters: - 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: authenticationMethodConfiguration-id in: path description: The unique identifier of authenticationMethodConfiguration required: true schema: type: string x-ms-docs-key-type: authenticationMethodConfiguration /authenticationMethodsPolicy/authenticationMethodConfigurations/$count: description: Provides operations to count the resources in the collection. get: tags: - authenticationMethodsPolicy.authenticationMethodConfiguration summary: Get the number of the resource operationId: authenticationMethodsPolicy.authenticationMethodConfigurations.GetCount-e7d5 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' /bookingBusinesses: description: Provides operations to manage the collection of bookingBusiness entities. get: tags: - bookingBusinesses.bookingBusiness summary: Get entities from bookingBusinesses operationId: bookingBusinesses.bookingBusiness.ListBookingBusiness 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.bookingBusinessCollectionResponse' 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: - bookingBusinesses.bookingBusiness summary: Add new entity to bookingBusinesses operationId: bookingBusinesses.bookingBusiness.CreateBookingBusiness requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingBusiness' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingBusiness' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/bookingBusinesses/{bookingBusiness-id}': description: Provides operations to manage the collection of bookingBusiness entities. get: tags: - bookingBusinesses.bookingBusiness summary: Get entity from bookingBusinesses by key description: Represents a Microsoft Bookings Business. operationId: bookingBusinesses.bookingBusiness.GetBookingBusiness parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.bookingBusiness' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - bookingBusinesses.bookingBusiness summary: Update entity in bookingBusinesses operationId: bookingBusinesses.bookingBusiness.UpdateBookingBusiness requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingBusiness' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingBusiness' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - bookingBusinesses.bookingBusiness summary: Delete entity from bookingBusinesses operationId: bookingBusinesses.bookingBusiness.DeleteBookingBusiness parameters: - 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: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness '/bookingBusinesses/{bookingBusiness-id}/appointments': description: Provides operations to manage the appointments property of the microsoft.graph.bookingBusiness entity. get: tags: - bookingBusinesses.bookingAppointment summary: Get appointments from bookingBusinesses description: All the appointments of this business. Read-only. Nullable. operationId: bookingBusinesses.ListAppointments 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.bookingAppointmentCollectionResponse' 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: - bookingBusinesses.bookingAppointment summary: Create new navigation property to appointments for bookingBusinesses operationId: bookingBusinesses.CreateAppointments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingAppointment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingAppointment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness '/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}': description: Provides operations to manage the appointments property of the microsoft.graph.bookingBusiness entity. get: tags: - bookingBusinesses.bookingAppointment summary: Get appointments from bookingBusinesses description: All the appointments of this business. Read-only. Nullable. operationId: bookingBusinesses.GetAppointments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingAppointment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - bookingBusinesses.bookingAppointment summary: Update the navigation property appointments in bookingBusinesses operationId: bookingBusinesses.UpdateAppointments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingAppointment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingAppointment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - bookingBusinesses.bookingAppointment summary: Delete navigation property appointments for bookingBusinesses operationId: bookingBusinesses.DeleteAppointments parameters: - 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: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness - name: bookingAppointment-id in: path description: The unique identifier of bookingAppointment required: true schema: type: string x-ms-docs-key-type: bookingAppointment '/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}/cancel': description: Provides operations to call the cancel method. post: tags: - bookingBusinesses.bookingAppointment summary: Invoke action cancel description: 'Cancel the specified bookingAppointment in the specified bookingBusiness, and send a message to the involved customer and staff members.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-beta operationId: bookingBusinesses.bookingBusiness.appointments.bookingAppointment.cancel requestBody: description: Action parameters content: application/json: schema: type: object properties: cancellationMessage: 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: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness - name: bookingAppointment-id in: path description: The unique identifier of bookingAppointment required: true schema: type: string x-ms-docs-key-type: bookingAppointment x-ms-docs-grouped-path: - '/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}/cancel' '/bookingBusinesses/{bookingBusiness-id}/appointments/$count': description: Provides operations to count the resources in the collection. get: tags: - bookingBusinesses.bookingAppointment summary: Get the number of the resource operationId: bookingBusinesses.appointments.GetCount-2f19 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: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness '/bookingBusinesses/{bookingBusiness-id}/calendarView': description: Provides operations to manage the calendarView property of the microsoft.graph.bookingBusiness entity. get: tags: - bookingBusinesses.bookingAppointment summary: Get calendarView from bookingBusinesses description: The set of appointments of this business in a specified date range. Read-only. Nullable. operationId: bookingBusinesses.ListCalendarView parameters: - name: start 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: end 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.bookingAppointmentCollectionResponse' 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: - bookingBusinesses.bookingAppointment summary: Create new navigation property to calendarView for bookingBusinesses operationId: bookingBusinesses.CreateCalendarView requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingAppointment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingAppointment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness '/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}': description: Provides operations to manage the calendarView property of the microsoft.graph.bookingBusiness entity. get: tags: - bookingBusinesses.bookingAppointment summary: Get calendarView from bookingBusinesses description: The set of appointments of this business in a specified date range. Read-only. Nullable. operationId: bookingBusinesses.GetCalendarView parameters: - name: start 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: end 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 - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingAppointment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - bookingBusinesses.bookingAppointment summary: Update the navigation property calendarView in bookingBusinesses operationId: bookingBusinesses.UpdateCalendarView requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingAppointment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingAppointment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - bookingBusinesses.bookingAppointment summary: Delete navigation property calendarView for bookingBusinesses operationId: bookingBusinesses.DeleteCalendarView parameters: - 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: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness - name: bookingAppointment-id in: path description: The unique identifier of bookingAppointment required: true schema: type: string x-ms-docs-key-type: bookingAppointment '/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}/cancel': description: Provides operations to call the cancel method. post: tags: - bookingBusinesses.bookingAppointment summary: Invoke action cancel description: 'Cancel the specified bookingAppointment in the specified bookingBusiness, and send a message to the involved customer and staff members.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-beta operationId: bookingBusinesses.bookingBusiness.calendarView.bookingAppointment.cancel requestBody: description: Action parameters content: application/json: schema: type: object properties: cancellationMessage: 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: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness - name: bookingAppointment-id in: path description: The unique identifier of bookingAppointment required: true schema: type: string x-ms-docs-key-type: bookingAppointment x-ms-docs-grouped-path: - '/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}/cancel' '/bookingBusinesses/{bookingBusiness-id}/calendarView/$count': description: Provides operations to count the resources in the collection. get: tags: - bookingBusinesses.bookingAppointment summary: Get the number of the resource operationId: bookingBusinesses.calendarView.GetCount-fa3d 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: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness '/bookingBusinesses/{bookingBusiness-id}/customers': description: Provides operations to manage the customers property of the microsoft.graph.bookingBusiness entity. get: tags: - bookingBusinesses.bookingCustomer summary: Get customers from bookingBusinesses description: All the customers of this business. Read-only. Nullable. operationId: bookingBusinesses.ListCustomers 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.bookingCustomerCollectionResponse' 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: - bookingBusinesses.bookingCustomer summary: Create new navigation property to customers for bookingBusinesses operationId: bookingBusinesses.CreateCustomers requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingCustomer' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingCustomer' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness '/bookingBusinesses/{bookingBusiness-id}/customers/{bookingCustomer-id}': description: Provides operations to manage the customers property of the microsoft.graph.bookingBusiness entity. get: tags: - bookingBusinesses.bookingCustomer summary: Get customers from bookingBusinesses description: All the customers of this business. Read-only. Nullable. operationId: bookingBusinesses.GetCustomers parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingCustomer' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - bookingBusinesses.bookingCustomer summary: Update the navigation property customers in bookingBusinesses operationId: bookingBusinesses.UpdateCustomers requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingCustomer' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingCustomer' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - bookingBusinesses.bookingCustomer summary: Delete navigation property customers for bookingBusinesses operationId: bookingBusinesses.DeleteCustomers parameters: - 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: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness - name: bookingCustomer-id in: path description: The unique identifier of bookingCustomer required: true schema: type: string x-ms-docs-key-type: bookingCustomer '/bookingBusinesses/{bookingBusiness-id}/customers/$count': description: Provides operations to count the resources in the collection. get: tags: - bookingBusinesses.bookingCustomer summary: Get the number of the resource operationId: bookingBusinesses.customers.GetCount-f551 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: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness '/bookingBusinesses/{bookingBusiness-id}/customQuestions': description: Provides operations to manage the customQuestions property of the microsoft.graph.bookingBusiness entity. get: tags: - bookingBusinesses.bookingCustomQuestion summary: Get customQuestions from bookingBusinesses description: All custom questions of this business. operationId: bookingBusinesses.ListCustomQuestions 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.bookingCustomQuestionCollectionResponse' 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: - bookingBusinesses.bookingCustomQuestion summary: Create new navigation property to customQuestions for bookingBusinesses operationId: bookingBusinesses.CreateCustomQuestions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingCustomQuestion' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingCustomQuestion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness '/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}': description: Provides operations to manage the customQuestions property of the microsoft.graph.bookingBusiness entity. get: tags: - bookingBusinesses.bookingCustomQuestion summary: Get customQuestions from bookingBusinesses description: All custom questions of this business. operationId: bookingBusinesses.GetCustomQuestions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingCustomQuestion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - bookingBusinesses.bookingCustomQuestion summary: Update the navigation property customQuestions in bookingBusinesses operationId: bookingBusinesses.UpdateCustomQuestions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingCustomQuestion' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingCustomQuestion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - bookingBusinesses.bookingCustomQuestion summary: Delete navigation property customQuestions for bookingBusinesses operationId: bookingBusinesses.DeleteCustomQuestions parameters: - 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: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness - name: bookingCustomQuestion-id in: path description: The unique identifier of bookingCustomQuestion required: true schema: type: string x-ms-docs-key-type: bookingCustomQuestion '/bookingBusinesses/{bookingBusiness-id}/customQuestions/$count': description: Provides operations to count the resources in the collection. get: tags: - bookingBusinesses.bookingCustomQuestion summary: Get the number of the resource operationId: bookingBusinesses.customQuestions.GetCount-90cf 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: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness '/bookingBusinesses/{bookingBusiness-id}/getStaffAvailability': description: Provides operations to call the getStaffAvailability method. post: tags: - bookingBusinesses.bookingBusiness.Actions summary: Invoke action getStaffAvailability description: Get the availability information of staff members of a Microsoft Bookings calendar. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/bookingbusiness-getstaffavailability?view=graph-rest-beta operationId: bookingBusinesses.bookingBusiness.getStaffAvailability requestBody: description: Action parameters content: application/json: schema: type: object properties: staffIds: type: array items: type: string startDateTime: $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' endDateTime: $ref: '#/components/schemas/microsoft.graph.dateTimeTimeZone' 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.staffAvailabilityItem' 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: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness '/bookingBusinesses/{bookingBusiness-id}/publish': description: Provides operations to call the publish method. post: tags: - bookingBusinesses.bookingBusiness.Actions summary: Invoke action publish description: 'Make the scheduling page of this business available to external customers. Set the isPublished property to true, and publicUrl property to the URL of the scheduling page.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/bookingbusiness-publish?view=graph-rest-beta operationId: bookingBusinesses.bookingBusiness.publish responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness '/bookingBusinesses/{bookingBusiness-id}/unpublish': description: Provides operations to call the unpublish method. post: tags: - bookingBusinesses.bookingBusiness.Actions summary: Invoke action unpublish description: 'Make the scheduling page of this business not available to external customers. Set the isPublished property to false, and publicUrl property to null.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/bookingbusiness-unpublish?view=graph-rest-beta operationId: bookingBusinesses.bookingBusiness.unpublish responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness '/bookingBusinesses/{bookingBusiness-id}/services': description: Provides operations to manage the services property of the microsoft.graph.bookingBusiness entity. get: tags: - bookingBusinesses.bookingService summary: Get services from bookingBusinesses description: All the services offered by this business. Read-only. Nullable. operationId: bookingBusinesses.ListServices 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.bookingServiceCollectionResponse' 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: - bookingBusinesses.bookingService summary: Create new navigation property to services for bookingBusinesses operationId: bookingBusinesses.CreateServices requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingService' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingService' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness '/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}': description: Provides operations to manage the services property of the microsoft.graph.bookingBusiness entity. get: tags: - bookingBusinesses.bookingService summary: Get services from bookingBusinesses description: All the services offered by this business. Read-only. Nullable. operationId: bookingBusinesses.GetServices parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingService' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - bookingBusinesses.bookingService summary: Update the navigation property services in bookingBusinesses operationId: bookingBusinesses.UpdateServices requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingService' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingService' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - bookingBusinesses.bookingService summary: Delete navigation property services for bookingBusinesses operationId: bookingBusinesses.DeleteServices parameters: - 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: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness - name: bookingService-id in: path description: The unique identifier of bookingService required: true schema: type: string x-ms-docs-key-type: bookingService '/bookingBusinesses/{bookingBusiness-id}/services/$count': description: Provides operations to count the resources in the collection. get: tags: - bookingBusinesses.bookingService summary: Get the number of the resource operationId: bookingBusinesses.services.GetCount-e71d 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: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness '/bookingBusinesses/{bookingBusiness-id}/staffMembers': description: Provides operations to manage the staffMembers property of the microsoft.graph.bookingBusiness entity. get: tags: - bookingBusinesses.bookingStaffMember summary: Get staffMembers from bookingBusinesses description: All the staff members that provide services in this business. Read-only. Nullable. operationId: bookingBusinesses.ListStaffMembers 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.bookingStaffMemberCollectionResponse' 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: - bookingBusinesses.bookingStaffMember summary: Create new navigation property to staffMembers for bookingBusinesses operationId: bookingBusinesses.CreateStaffMembers requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingStaffMember' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingStaffMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness '/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMember-id}': description: Provides operations to manage the staffMembers property of the microsoft.graph.bookingBusiness entity. get: tags: - bookingBusinesses.bookingStaffMember summary: Get staffMembers from bookingBusinesses description: All the staff members that provide services in this business. Read-only. Nullable. operationId: bookingBusinesses.GetStaffMembers parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingStaffMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - bookingBusinesses.bookingStaffMember summary: Update the navigation property staffMembers in bookingBusinesses operationId: bookingBusinesses.UpdateStaffMembers requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingStaffMember' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingStaffMember' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - bookingBusinesses.bookingStaffMember summary: Delete navigation property staffMembers for bookingBusinesses operationId: bookingBusinesses.DeleteStaffMembers parameters: - 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: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness - name: bookingStaffMember-id in: path description: The unique identifier of bookingStaffMember required: true schema: type: string x-ms-docs-key-type: bookingStaffMember '/bookingBusinesses/{bookingBusiness-id}/staffMembers/$count': description: Provides operations to count the resources in the collection. get: tags: - bookingBusinesses.bookingStaffMember summary: Get the number of the resource operationId: bookingBusinesses.staffMembers.GetCount-2251 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: bookingBusiness-id in: path description: The unique identifier of bookingBusiness required: true schema: type: string x-ms-docs-key-type: bookingBusiness /bookingBusinesses/$count: description: Provides operations to count the resources in the collection. get: tags: - bookingBusinesses.bookingBusiness summary: Get the number of the resource operationId: bookingBusinesses.GetCount-011d 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' /bookingCurrencies: description: Provides operations to manage the collection of bookingCurrency entities. get: tags: - bookingCurrencies.bookingCurrency summary: Get entities from bookingCurrencies operationId: bookingCurrencies.bookingCurrency.ListBookingCurrency 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.bookingCurrencyCollectionResponse' 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: - bookingCurrencies.bookingCurrency summary: Add new entity to bookingCurrencies operationId: bookingCurrencies.bookingCurrency.CreateBookingCurrency requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingCurrency' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingCurrency' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/bookingCurrencies/{bookingCurrency-id}': description: Provides operations to manage the collection of bookingCurrency entities. get: tags: - bookingCurrencies.bookingCurrency summary: Get entity from bookingCurrencies by key operationId: bookingCurrencies.bookingCurrency.GetBookingCurrency parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.bookingCurrency' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - bookingCurrencies.bookingCurrency summary: Update entity in bookingCurrencies operationId: bookingCurrencies.bookingCurrency.UpdateBookingCurrency requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingCurrency' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.bookingCurrency' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - bookingCurrencies.bookingCurrency summary: Delete entity from bookingCurrencies operationId: bookingCurrencies.bookingCurrency.DeleteBookingCurrency parameters: - 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: bookingCurrency-id in: path description: The unique identifier of bookingCurrency required: true schema: type: string x-ms-docs-key-type: bookingCurrency /bookingCurrencies/$count: description: Provides operations to count the resources in the collection. get: tags: - bookingCurrencies.bookingCurrency summary: Get the number of the resource operationId: bookingCurrencies.GetCount-60a7 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' /businessFlowTemplates: description: Provides operations to manage the collection of businessFlowTemplate entities. get: tags: - businessFlowTemplates.businessFlowTemplate summary: List businessFlowTemplates (deprecated) description: 'In the Microsoft Entra access reviews feature, list all the businessFlowTemplate objects.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/businessflowtemplate-list?view=graph-rest-beta operationId: businessFlowTemplates.businessFlowTemplate.ListBusinessFlowTemplate 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.businessFlowTemplateCollectionResponse' 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: - businessFlowTemplates.businessFlowTemplate summary: Add new entity to businessFlowTemplates operationId: businessFlowTemplates.businessFlowTemplate.CreateBusinessFlowTemplate requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.businessFlowTemplate' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.businessFlowTemplate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/businessFlowTemplates/{businessFlowTemplate-id}': description: Provides operations to manage the collection of businessFlowTemplate entities. get: tags: - businessFlowTemplates.businessFlowTemplate summary: Get entity from businessFlowTemplates by key operationId: businessFlowTemplates.businessFlowTemplate.GetBusinessFlowTemplate parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.businessFlowTemplate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - businessFlowTemplates.businessFlowTemplate summary: Update entity in businessFlowTemplates operationId: businessFlowTemplates.businessFlowTemplate.UpdateBusinessFlowTemplate requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.businessFlowTemplate' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.businessFlowTemplate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - businessFlowTemplates.businessFlowTemplate summary: Delete entity from businessFlowTemplates operationId: businessFlowTemplates.businessFlowTemplate.DeleteBusinessFlowTemplate parameters: - 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: businessFlowTemplate-id in: path description: The unique identifier of businessFlowTemplate required: true schema: type: string x-ms-docs-key-type: businessFlowTemplate /businessFlowTemplates/$count: description: Provides operations to count the resources in the collection. get: tags: - businessFlowTemplates.businessFlowTemplate summary: Get the number of the resource operationId: businessFlowTemplates.GetCount-aa8e 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' /certificateAuthorities: description: Provides operations to manage the certificateAuthorityPath singleton. get: tags: - certificateAuthorities.certificateAuthorityPath summary: Get certificateAuthorities operationId: certificateAuthorities.certificateAuthorityPath.GetCertificateAuthorityPath parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.certificateAuthorityPath' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - certificateAuthorities.certificateAuthorityPath summary: Update certificateAuthorities operationId: certificateAuthorities.certificateAuthorityPath.UpdateCertificateAuthorityPath requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateAuthorityPath' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateAuthorityPath' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation /certificateAuthorities/certificateBasedApplicationConfigurations: description: Provides operations to manage the certificateBasedApplicationConfigurations property of the microsoft.graph.certificateAuthorityPath entity. get: tags: - certificateAuthorities.certificateBasedApplicationConfiguration summary: Get certificateBasedApplicationConfigurations from certificateAuthorities description: Defines the trusted certificate authorities for certificates that can be added to apps and service principals in the tenant. operationId: certificateAuthorities.ListCertificateBasedApplicationConfigurations 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.certificateBasedApplicationConfigurationCollectionResponse' 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: - certificateAuthorities.certificateBasedApplicationConfiguration summary: Create new navigation property to certificateBasedApplicationConfigurations for certificateAuthorities operationId: certificateAuthorities.CreateCertificateBasedApplicationConfigurations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateBasedApplicationConfiguration' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateBasedApplicationConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}': description: Provides operations to manage the certificateBasedApplicationConfigurations property of the microsoft.graph.certificateAuthorityPath entity. get: tags: - certificateAuthorities.certificateBasedApplicationConfiguration summary: Get certificateBasedApplicationConfigurations from certificateAuthorities description: Defines the trusted certificate authorities for certificates that can be added to apps and service principals in the tenant. operationId: certificateAuthorities.GetCertificateBasedApplicationConfigurations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateBasedApplicationConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - certificateAuthorities.certificateBasedApplicationConfiguration summary: Update the navigation property certificateBasedApplicationConfigurations in certificateAuthorities operationId: certificateAuthorities.UpdateCertificateBasedApplicationConfigurations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateBasedApplicationConfiguration' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateBasedApplicationConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - certificateAuthorities.certificateBasedApplicationConfiguration summary: Delete navigation property certificateBasedApplicationConfigurations for certificateAuthorities operationId: certificateAuthorities.DeleteCertificateBasedApplicationConfigurations parameters: - 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: certificateBasedApplicationConfiguration-id in: path description: The unique identifier of certificateBasedApplicationConfiguration required: true schema: type: string x-ms-docs-key-type: certificateBasedApplicationConfiguration '/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities': description: Provides operations to manage the trustedCertificateAuthorities property of the microsoft.graph.trustedCertificateAuthorityAsEntityBase entity. get: tags: - certificateAuthorities.certificateBasedApplicationConfiguration summary: Get trustedCertificateAuthorities from certificateAuthorities description: Collection of trusted certificate authorities. operationId: certificateAuthorities.certificateBasedApplicationConfigurations.ListTrustedCertificateAuthorities 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.certificateAuthorityAsEntityCollectionResponse' 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: - certificateAuthorities.certificateBasedApplicationConfiguration summary: Create new navigation property to trustedCertificateAuthorities for certificateAuthorities operationId: certificateAuthorities.certificateBasedApplicationConfigurations.CreateTrustedCertificateAuthorities requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateAuthorityAsEntity' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateAuthorityAsEntity' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: certificateBasedApplicationConfiguration-id in: path description: The unique identifier of certificateBasedApplicationConfiguration required: true schema: type: string x-ms-docs-key-type: certificateBasedApplicationConfiguration '/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities/{certificateAuthorityAsEntity-id}': description: Provides operations to manage the trustedCertificateAuthorities property of the microsoft.graph.trustedCertificateAuthorityAsEntityBase entity. get: tags: - certificateAuthorities.certificateBasedApplicationConfiguration summary: Get trustedCertificateAuthorities from certificateAuthorities description: Collection of trusted certificate authorities. operationId: certificateAuthorities.certificateBasedApplicationConfigurations.GetTrustedCertificateAuthorities parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateAuthorityAsEntity' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - certificateAuthorities.certificateBasedApplicationConfiguration summary: Update the navigation property trustedCertificateAuthorities in certificateAuthorities operationId: certificateAuthorities.certificateBasedApplicationConfigurations.UpdateTrustedCertificateAuthorities requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateAuthorityAsEntity' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateAuthorityAsEntity' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - certificateAuthorities.certificateBasedApplicationConfiguration summary: Delete navigation property trustedCertificateAuthorities for certificateAuthorities operationId: certificateAuthorities.certificateBasedApplicationConfigurations.DeleteTrustedCertificateAuthorities parameters: - 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: certificateBasedApplicationConfiguration-id in: path description: The unique identifier of certificateBasedApplicationConfiguration required: true schema: type: string x-ms-docs-key-type: certificateBasedApplicationConfiguration - name: certificateAuthorityAsEntity-id in: path description: The unique identifier of certificateAuthorityAsEntity required: true schema: type: string x-ms-docs-key-type: certificateAuthorityAsEntity '/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities/$count': description: Provides operations to count the resources in the collection. get: tags: - certificateAuthorities.certificateBasedApplicationConfiguration summary: Get the number of the resource operationId: certificateAuthorities.certificateBasedApplicationConfigurations.trustedCertificateAuthorities.GetCount-d86e 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: certificateBasedApplicationConfiguration-id in: path description: The unique identifier of certificateBasedApplicationConfiguration required: true schema: type: string x-ms-docs-key-type: certificateBasedApplicationConfiguration /certificateAuthorities/certificateBasedApplicationConfigurations/$count: description: Provides operations to count the resources in the collection. get: tags: - certificateAuthorities.certificateBasedApplicationConfiguration summary: Get the number of the resource operationId: certificateAuthorities.certificateBasedApplicationConfigurations.GetCount-86fe 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' /certificateAuthorities/mutualTlsOauthConfigurations: description: Provides operations to manage the mutualTlsOauthConfigurations property of the microsoft.graph.certificateAuthorityPath entity. get: tags: - certificateAuthorities.mutualTlsOauthConfiguration summary: Get mutualTlsOauthConfigurations from certificateAuthorities description: Defines the trusted certificate authorities for certificates that can be added to Internet of Things (IoT) devices. operationId: certificateAuthorities.ListMutualTlsOauthConfigurations 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.mutualTlsOauthConfigurationCollectionResponse' 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: - certificateAuthorities.mutualTlsOauthConfiguration summary: Create new navigation property to mutualTlsOauthConfigurations for certificateAuthorities operationId: certificateAuthorities.CreateMutualTlsOauthConfigurations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mutualTlsOauthConfiguration' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mutualTlsOauthConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/certificateAuthorities/mutualTlsOauthConfigurations/{mutualTlsOauthConfiguration-id}': description: Provides operations to manage the mutualTlsOauthConfigurations property of the microsoft.graph.certificateAuthorityPath entity. get: tags: - certificateAuthorities.mutualTlsOauthConfiguration summary: Get mutualTlsOauthConfigurations from certificateAuthorities description: Defines the trusted certificate authorities for certificates that can be added to Internet of Things (IoT) devices. operationId: certificateAuthorities.GetMutualTlsOauthConfigurations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mutualTlsOauthConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - certificateAuthorities.mutualTlsOauthConfiguration summary: Update the navigation property mutualTlsOauthConfigurations in certificateAuthorities operationId: certificateAuthorities.UpdateMutualTlsOauthConfigurations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mutualTlsOauthConfiguration' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mutualTlsOauthConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - certificateAuthorities.mutualTlsOauthConfiguration summary: Delete mutualTlsOauthConfiguration description: Delete the specified mutualTlsOauthConfiguration resource. You must first delete the deviceTemplate object that references the ID. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/mutualtlsoauthconfiguration-delete?view=graph-rest-beta operationId: certificateAuthorities.DeleteMutualTlsOauthConfigurations parameters: - 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: mutualTlsOauthConfiguration-id in: path description: The unique identifier of mutualTlsOauthConfiguration required: true schema: type: string x-ms-docs-key-type: mutualTlsOauthConfiguration /certificateAuthorities/mutualTlsOauthConfigurations/$count: description: Provides operations to count the resources in the collection. get: tags: - certificateAuthorities.mutualTlsOauthConfiguration summary: Get the number of the resource operationId: certificateAuthorities.mutualTlsOauthConfigurations.GetCount-ca8b 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' /certificateBasedAuthConfiguration: description: Provides operations to manage the collection of certificateBasedAuthConfiguration entities. get: tags: - certificateBasedAuthConfiguration.certificateBasedAuthConfiguration summary: Get entities from certificateBasedAuthConfiguration operationId: certificateBasedAuthConfiguration.certificateBasedAuthConfiguration.ListCertificateBasedAuthConfiguration 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.certificateBasedAuthConfigurationCollectionResponse' 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: - certificateBasedAuthConfiguration.certificateBasedAuthConfiguration summary: Add new entity to certificateBasedAuthConfiguration operationId: certificateBasedAuthConfiguration.certificateBasedAuthConfiguration.CreateCertificateBasedAuthConfiguration requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateBasedAuthConfiguration' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateBasedAuthConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/certificateBasedAuthConfiguration/{certificateBasedAuthConfiguration-id}': description: Provides operations to manage the collection of certificateBasedAuthConfiguration entities. get: tags: - certificateBasedAuthConfiguration.certificateBasedAuthConfiguration summary: Get entity from certificateBasedAuthConfiguration by key operationId: certificateBasedAuthConfiguration.certificateBasedAuthConfiguration.GetCertificateBasedAuthConfiguration parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.certificateBasedAuthConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - certificateBasedAuthConfiguration.certificateBasedAuthConfiguration summary: Update entity in certificateBasedAuthConfiguration operationId: certificateBasedAuthConfiguration.certificateBasedAuthConfiguration.UpdateCertificateBasedAuthConfiguration requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateBasedAuthConfiguration' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateBasedAuthConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - certificateBasedAuthConfiguration.certificateBasedAuthConfiguration summary: Delete entity from certificateBasedAuthConfiguration operationId: certificateBasedAuthConfiguration.certificateBasedAuthConfiguration.DeleteCertificateBasedAuthConfiguration parameters: - 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: certificateBasedAuthConfiguration-id in: path description: The unique identifier of certificateBasedAuthConfiguration required: true schema: type: string x-ms-docs-key-type: certificateBasedAuthConfiguration /certificateBasedAuthConfiguration/$count: description: Provides operations to count the resources in the collection. get: tags: - certificateBasedAuthConfiguration.certificateBasedAuthConfiguration summary: Get the number of the resource operationId: certificateBasedAuthConfiguration.GetCount-e291 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' /chats: description: Provides operations to manage the collection of chat entities. get: tags: - chats.chat summary: List chats description: 'Retrieve the list of chats that the user is part of. This method supports federation. When a user ID is provided, the calling application must belong to the same tenant that the user belongs to.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-list?view=graph-rest-beta operationId: chats.chat.ListChat 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.chatCollectionResponse' 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: - chats.chat summary: Create chat description: Create a new chat object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-post?view=graph-rest-beta operationId: chats.chat.CreateChat requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chat' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chat' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/chats/{chat-id}': description: Provides operations to manage the collection of chat entities. get: tags: - chats.chat summary: Get chat description: 'Retrieve a single chat (without its messages). This method supports federation. To access a chat, at least one chat member must belong to the tenant the request initiated from.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-get?view=graph-rest-beta operationId: chats.chat.GetChat parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.chat' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - chats.chat summary: Update chat description: Update the properties of a chat object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-patch?view=graph-rest-beta operationId: chats.chat.UpdateChat requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chat' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chat' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - chats.chat summary: Delete chat description: 'Soft-delete a chat. When invoked with delegated permissions, this operation only works for tenant admins and Teams service admins.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-delete?view=graph-rest-beta operationId: chats.chat.DeleteChat parameters: - 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/installedApps': description: Provides operations to manage the installedApps property of the microsoft.graph.chat entity. get: tags: - chats.teamsAppInstallation summary: List apps in chat description: 'List all app installations within a chat. If the chat is associated with an onlineMeeting instance, then, effectively, the teamsApps installed in the meeting will be listed.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-list-installedapps?view=graph-rest-beta operationId: chats.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: - chats.teamsAppInstallation summary: Add app to chat description: Install a teamsApp to the specified chat. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-post-installedapps?view=graph-rest-beta operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/installedApps/{teamsAppInstallation-id}': description: Provides operations to manage the installedApps property of the microsoft.graph.chat entity. get: tags: - chats.teamsAppInstallation summary: Get installed app in chat description: Get an app installed in a chat. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-get-installedapps?view=graph-rest-beta operationId: chats.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: - chats.teamsAppInstallation summary: Update the navigation property installedApps in chats operationId: chats.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: - chats.teamsAppInstallation summary: Uninstall app in a chat description: Uninstall an app installed within a chat. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-delete-installedapps?view=graph-rest-beta operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - name: teamsAppInstallation-id in: path description: The unique identifier of teamsAppInstallation required: true schema: type: string x-ms-docs-key-type: teamsAppInstallation '/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/upgrade': description: Provides operations to call the upgrade method. post: tags: - chats.teamsAppInstallation summary: 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-beta operationId: chats.chat.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - name: teamsAppInstallation-id in: path description: The unique identifier of teamsAppInstallation required: true schema: type: string x-ms-docs-key-type: teamsAppInstallation '/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp': description: Provides operations to manage the teamsApp property of the microsoft.graph.teamsAppInstallation entity. get: tags: - chats.teamsAppInstallation summary: Get teamsApp from chats description: The app that is installed. operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - name: teamsAppInstallation-id in: path description: The unique identifier of teamsAppInstallation required: true schema: type: string x-ms-docs-key-type: teamsAppInstallation '/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition': description: Provides operations to manage the teamsAppDefinition property of the microsoft.graph.teamsAppInstallation entity. get: tags: - chats.teamsAppInstallation summary: Get teamsAppDefinition from chats description: The details of this version of the app. operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - name: teamsAppInstallation-id in: path description: The unique identifier of teamsAppInstallation required: true schema: type: string x-ms-docs-key-type: teamsAppInstallation '/chats/{chat-id}/installedApps/$count': description: Provides operations to count the resources in the collection. get: tags: - chats.teamsAppInstallation summary: Get the number of the resource operationId: chats.installedApps.GetCount-3987 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/lastMessagePreview': description: Provides operations to manage the lastMessagePreview property of the microsoft.graph.chat entity. get: tags: - chats.chatMessageInfo summary: Get lastMessagePreview from chats description: 'Preview of the last message sent in the chat. Null if no messages are sent in the chat. Currently, only the list chats operation supports this property.' operationId: chats.GetLastMessagePreview parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageInfo' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - chats.chatMessageInfo summary: Update the navigation property lastMessagePreview in chats operationId: chats.UpdateLastMessagePreview requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageInfo' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chatMessageInfo' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - chats.chatMessageInfo summary: Delete navigation property lastMessagePreview for chats operationId: chats.DeleteLastMessagePreview parameters: - 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/members': description: Provides operations to manage the members property of the microsoft.graph.chat entity. get: tags: - chats.conversationMember summary: Get conversationMember in a chat description: Retrieve a conversationMember from a chat. operationId: chats.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: - chats.conversationMember summary: Add member to a chat description: Add a conversationMember to a chat. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-post-members?view=graph-rest-beta operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/members/{conversationMember-id}': description: Provides operations to manage the members property of the microsoft.graph.chat entity. get: tags: - chats.conversationMember summary: Get conversationMember in a chat description: Retrieve a conversationMember from a chat. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-get-members?view=graph-rest-beta operationId: chats.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: - chats.conversationMember summary: Update the navigation property members in chats operationId: chats.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: - chats.conversationMember summary: Remove member from chat description: Remove a conversationMember from a chat. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-delete-members?view=graph-rest-beta operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - name: conversationMember-id in: path description: The unique identifier of conversationMember required: true schema: type: string x-ms-docs-key-type: conversationMember '/chats/{chat-id}/members/$count': description: Provides operations to count the resources in the collection. get: tags: - chats.conversationMember summary: Get the number of the resource operationId: chats.members.GetCount-9627 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/members/add': description: Provides operations to call the add method. post: tags: - chats.conversationMember summary: 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-beta operationId: chats.chat.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/members/remove': description: Provides operations to call the remove method. post: tags: - chats.conversationMember summary: 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-beta operationId: chats.chat.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/messages': description: Provides operations to manage the messages property of the microsoft.graph.chat entity. get: tags: - chats.chatMessage summary: List messages in a chat description: 'Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel).' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-list-messages?view=graph-rest-beta operationId: chats.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: - chats.chatMessage summary: Send message in a chat description: Send a new chatMessage in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before creating a chat message. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-post-messages?view=graph-rest-beta operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/messages/{chatMessage-id}': description: Provides operations to manage the messages property of the microsoft.graph.chat entity. get: tags: - chats.chatMessage summary: Get chatMessage in a channel or chat description: Retrieve a single message or a message reply in a channel or a chat. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chatmessage-get?view=graph-rest-beta operationId: chats.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: - chats.chatMessage summary: Update the navigation property messages in chats operationId: chats.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: - chats.chatMessage summary: Delete navigation property messages for chats operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage '/chats/{chat-id}/messages/{chatMessage-id}/hostedContents': description: Provides operations to manage the hostedContents property of the microsoft.graph.chatMessage entity. get: tags: - chats.chatMessage summary: List hostedContents description: 'Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content.s' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chatmessage-list-hostedcontents?view=graph-rest-beta operationId: chats.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: - chats.chatMessage summary: Create new navigation property to hostedContents for chats operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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: - '/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents' '/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}': description: Provides operations to manage the hostedContents property of the microsoft.graph.chatMessage entity. get: tags: - chats.chatMessage summary: Get chatMessageHostedContent description: Retrieve the properties and relationships of chatMessageHostedContent object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chatmessagehostedcontent-get?view=graph-rest-beta operationId: chats.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: - chats.chatMessage summary: Update the navigation property hostedContents in chats operationId: chats.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: - chats.chatMessage summary: Delete navigation property hostedContents for chats operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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: - '/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}' '/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value': description: Provides operations to manage the media for the chat entity. get: tags: - chats.chatMessage summary: List hostedContents description: 'Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content.s' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chatmessage-list-hostedcontents?view=graph-rest-beta operationId: chats.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: - chats.chatMessage summary: Update media content for the navigation property hostedContents in chats description: The unique identifier for an entity. Read-only. operationId: chats.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: - chats.chatMessage summary: Delete media content for the navigation property hostedContents in chats description: The unique identifier for an entity. Read-only. operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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 '/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/$count': description: Provides operations to count the resources in the collection. get: tags: - chats.chatMessage summary: Get the number of the resource operationId: chats.messages.hostedContents.GetCount-a167 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage '/chats/{chat-id}/messages/{chatMessage-id}/setReaction': description: Provides operations to call the setReaction method. post: tags: - chats.chatMessage summary: Invoke action setReaction operationId: chats.chat.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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: - '/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction' '/chats/{chat-id}/messages/{chatMessage-id}/softDelete': description: Provides operations to call the softDelete method. post: tags: - chats.chatMessage summary: 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-beta operationId: chats.chat.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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: - '/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete' '/chats/{chat-id}/messages/{chatMessage-id}/undoSoftDelete': description: Provides operations to call the undoSoftDelete method. post: tags: - chats.chatMessage summary: 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-beta operationId: chats.chat.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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: - '/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete' '/chats/{chat-id}/messages/{chatMessage-id}/unsetReaction': description: Provides operations to call the unsetReaction method. post: tags: - chats.chatMessage summary: Invoke action unsetReaction operationId: chats.chat.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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: - '/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction' '/chats/{chat-id}/messages/{chatMessage-id}/replies': description: Provides operations to manage the replies property of the microsoft.graph.chatMessage entity. get: tags: - chats.chatMessage summary: Get replies from chats description: Replies for a specified message. Supports $expand for channel messages. operationId: chats.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: - chats.chatMessage summary: Create new navigation property to replies for chats operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage '/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}': description: Provides operations to manage the replies property of the microsoft.graph.chatMessage entity. get: tags: - chats.chatMessage summary: Get replies from chats description: Replies for a specified message. Supports $expand for channel messages. operationId: chats.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: - chats.chatMessage summary: Update the navigation property replies in chats operationId: chats.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: - chats.chatMessage summary: Delete navigation property replies for chats operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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 '/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents': description: Provides operations to manage the hostedContents property of the microsoft.graph.chatMessage entity. get: tags: - chats.chatMessage summary: Get hostedContents from chats description: 'Content in a message hosted by Microsoft Teams - for example, images or code snippets.' operationId: chats.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: - chats.chatMessage summary: Create new navigation property to hostedContents for chats operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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: - '/chats/{chat-id}/messages/{chatMessage-id}/hostedContents' '/chats/{chat-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: - chats.chatMessage summary: Get hostedContents from chats description: 'Content in a message hosted by Microsoft Teams - for example, images or code snippets.' operationId: chats.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: - chats.chatMessage summary: Update the navigation property hostedContents in chats operationId: chats.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: - chats.chatMessage summary: Delete navigation property hostedContents for chats operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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: - '/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}' '/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value': description: Provides operations to manage the media for the chat entity. get: tags: - chats.chatMessage summary: Get media content for the navigation property hostedContents from chats description: The unique identifier for an entity. Read-only. operationId: chats.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: - chats.chatMessage summary: Update media content for the navigation property hostedContents in chats description: The unique identifier for an entity. Read-only. operationId: chats.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: - chats.chatMessage summary: Delete media content for the navigation property hostedContents in chats description: The unique identifier for an entity. Read-only. operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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 '/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count': description: Provides operations to count the resources in the collection. get: tags: - chats.chatMessage summary: Get the number of the resource operationId: chats.messages.replies.hostedContents.GetCount-ccd3 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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 '/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction': description: Provides operations to call the setReaction method. post: tags: - chats.chatMessage summary: Invoke action setReaction operationId: chats.chat.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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: - '/chats/{chat-id}/messages/{chatMessage-id}/setReaction' '/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete': description: Provides operations to call the softDelete method. post: tags: - chats.chatMessage summary: 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-beta operationId: chats.chat.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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: - '/chats/{chat-id}/messages/{chatMessage-id}/softDelete' '/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete': description: Provides operations to call the undoSoftDelete method. post: tags: - chats.chatMessage summary: 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-beta operationId: chats.chat.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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: - '/chats/{chat-id}/messages/{chatMessage-id}/undoSoftDelete' '/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction': description: Provides operations to call the unsetReaction method. post: tags: - chats.chatMessage summary: Invoke action unsetReaction operationId: chats.chat.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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: - '/chats/{chat-id}/messages/{chatMessage-id}/unsetReaction' '/chats/{chat-id}/messages/{chatMessage-id}/replies/$count': description: Provides operations to count the resources in the collection. get: tags: - chats.chatMessage summary: Get the number of the resource operationId: chats.messages.replies.GetCount-10ad 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - name: chatMessage-id in: path description: The unique identifier of chatMessage required: true schema: type: string x-ms-docs-key-type: chatMessage '/chats/{chat-id}/messages/{chatMessage-id}/replies/delta()': description: Provides operations to call the delta method. get: tags: - chats.chatMessage summary: 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 obtain 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-beta operationId: chats.chat.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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: - '/chats/{chat-id}/messages/delta()' '/chats/{chat-id}/messages/{chatMessage-id}/replies/forwardToChat': description: Provides operations to call the forwardToChat method. post: tags: - chats.chatMessage summary: Invoke action forwardToChat description: 'Forward a chat message, a channel message, or a channel message reply to a chat.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chatmessage-forwardtochat?view=graph-rest-beta operationId: chats.chat.messages.chatMessage.replies.forwardToChat requestBody: description: Action parameters content: application/json: schema: type: object properties: targetChatIds: type: array items: type: string nullable: true messageIds: type: array items: type: string nullable: true additionalMessage: anyOf: - $ref: '#/components/schemas/microsoft.graph.chatMessage' - type: object 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.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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: - '/chats/{chat-id}/messages/forwardToChat' '/chats/{chat-id}/messages/{chatMessage-id}/replies/replyWithQuote': description: Provides operations to call the replyWithQuote method. post: tags: - chats.chatMessage summary: Invoke action replyWithQuote description: Reply with quote to a single chat message or multiple chat messages in a chat. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chatmessage-replywithquote?view=graph-rest-beta operationId: chats.chat.messages.chatMessage.replies.replyWithQuote requestBody: description: Action parameters content: application/json: schema: type: object properties: messageIds: type: array items: type: string nullable: true replyMessage: anyOf: - $ref: '#/components/schemas/microsoft.graph.chatMessage' - type: object nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.chatMessage' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - 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: - '/chats/{chat-id}/messages/replyWithQuote' '/chats/{chat-id}/messages/$count': description: Provides operations to count the resources in the collection. get: tags: - chats.chatMessage summary: Get the number of the resource operationId: chats.messages.GetCount-3dde 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/messages/delta()': description: Provides operations to call the delta method. get: tags: - chats.chatMessage summary: 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 obtain 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-beta operationId: chats.chat.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat x-ms-docs-grouped-path: - '/chats/{chat-id}/messages/{chatMessage-id}/replies/delta()' '/chats/{chat-id}/messages/forwardToChat': description: Provides operations to call the forwardToChat method. post: tags: - chats.chatMessage summary: Invoke action forwardToChat description: 'Forward a chat message, a channel message, or a channel message reply to a chat.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chatmessage-forwardtochat?view=graph-rest-beta operationId: chats.chat.messages.forwardToChat requestBody: description: Action parameters content: application/json: schema: type: object properties: targetChatIds: type: array items: type: string nullable: true messageIds: type: array items: type: string nullable: true additionalMessage: anyOf: - $ref: '#/components/schemas/microsoft.graph.chatMessage' - type: object 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.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat x-ms-docs-grouped-path: - '/chats/{chat-id}/messages/{chatMessage-id}/replies/forwardToChat' '/chats/{chat-id}/messages/replyWithQuote': description: Provides operations to call the replyWithQuote method. post: tags: - chats.chatMessage summary: Invoke action replyWithQuote description: Reply with quote to a single chat message or multiple chat messages in a chat. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chatmessage-replywithquote?view=graph-rest-beta operationId: chats.chat.messages.replyWithQuote requestBody: description: Action parameters content: application/json: schema: type: object properties: messageIds: type: array items: type: string nullable: true replyMessage: anyOf: - $ref: '#/components/schemas/microsoft.graph.chatMessage' - type: object nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.chatMessage' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat x-ms-docs-grouped-path: - '/chats/{chat-id}/messages/{chatMessage-id}/replies/replyWithQuote' '/chats/{chat-id}/completeMigration': description: Provides operations to call the completeMigration method. post: tags: - chats.chat.Actions summary: Invoke action completeMigration operationId: chats.chat.completeMigration responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/hideForUser': description: Provides operations to call the hideForUser method. post: tags: - chats.chat.Actions summary: Invoke action hideForUser description: Hide a chat for a user. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-hideforuser?view=graph-rest-beta operationId: chats.chat.hideForUser requestBody: description: Action parameters content: application/json: schema: type: object properties: user: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamworkUserIdentity' - type: object nullable: true tenantId: 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/markChatReadForUser': description: Provides operations to call the markChatReadForUser method. post: tags: - chats.chat.Actions summary: Invoke action markChatReadForUser description: Mark a chat as read for a user. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-markchatreadforuser?view=graph-rest-beta operationId: chats.chat.markChatReadForUser requestBody: description: Action parameters content: application/json: schema: type: object properties: user: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamworkUserIdentity' - type: object nullable: true tenantId: 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/markChatUnreadForUser': description: Provides operations to call the markChatUnreadForUser method. post: tags: - chats.chat.Actions summary: Invoke action markChatUnreadForUser description: Mark a chat as unread for a user. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-markchatunreadforuser?view=graph-rest-beta operationId: chats.chat.markChatUnreadForUser requestBody: description: Action parameters content: application/json: schema: type: object properties: user: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamworkUserIdentity' - type: object nullable: true tenantId: type: string nullable: true lastMessageReadDateTime: 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/removeAllAccessForUser': description: Provides operations to call the removeAllAccessForUser method. post: tags: - chats.chat.Actions summary: Invoke action removeAllAccessForUser description: Remove access to a chat for a user. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-removeallaccessforuser?view=graph-rest-beta operationId: chats.chat.removeAllAccessForUser requestBody: description: Action parameters content: application/json: schema: type: object properties: user: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamworkUserIdentity' - 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/sendActivityNotification': description: Provides operations to call the sendActivityNotification method. post: tags: - chats.chat.Actions summary: Invoke action sendActivityNotification description: 'Send an activity feed notification in the scope of a chat. For more information, see sending Teams activity notifications.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-sendactivitynotification?view=graph-rest-beta operationId: chats.chat.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' iconId: type: string nullable: true recipient: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamworkNotificationRecipient' - 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/unhideForUser': description: Provides operations to call the unhideForUser method. post: tags: - chats.chat.Actions summary: Invoke action unhideForUser description: Unhide a chat for a user. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-unhideforuser?view=graph-rest-beta operationId: chats.chat.unhideForUser requestBody: description: Action parameters content: application/json: schema: type: object properties: user: anyOf: - $ref: '#/components/schemas/microsoft.graph.teamworkUserIdentity' - type: object nullable: true tenantId: 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/operations': description: Provides operations to manage the operations property of the microsoft.graph.chat entity. get: tags: - chats.teamsAsyncOperation summary: List operations on a chat description: List all Teams async operations that ran or are running on the specified chat. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-list-operations?view=graph-rest-beta operationId: chats.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: - chats.teamsAsyncOperation summary: Create new navigation property to operations for chats operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/operations/{teamsAsyncOperation-id}': description: Provides operations to manage the operations property of the microsoft.graph.chat entity. get: tags: - chats.teamsAsyncOperation summary: Get teamsAsyncOperation description: Get the specified Teams async operation that ran or is running on a specific resource. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/teamsasyncoperation-get?view=graph-rest-beta operationId: chats.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: - chats.teamsAsyncOperation summary: Update the navigation property operations in chats operationId: chats.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: - chats.teamsAsyncOperation summary: Delete navigation property operations for chats operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - name: teamsAsyncOperation-id in: path description: The unique identifier of teamsAsyncOperation required: true schema: type: string x-ms-docs-key-type: teamsAsyncOperation '/chats/{chat-id}/operations/$count': description: Provides operations to count the resources in the collection. get: tags: - chats.teamsAsyncOperation summary: Get the number of the resource operationId: chats.operations.GetCount-847a 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/permissionGrants': description: Provides operations to manage the permissionGrants property of the microsoft.graph.chat entity. get: tags: - chats.resourceSpecificPermissionGrant summary: List permissionGrants of a chat description: 'List all resource-specific permission grants on the chat. This list specifies the Microsoft Entra apps that have access to the chat, along with the corresponding resource-specific access that each app has.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-list-permissiongrants?view=graph-rest-beta operationId: chats.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: - chats.resourceSpecificPermissionGrant summary: Create new navigation property to permissionGrants for chats operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}': description: Provides operations to manage the permissionGrants property of the microsoft.graph.chat entity. get: tags: - chats.resourceSpecificPermissionGrant summary: Get permissionGrants from chats description: A collection of permissions granted to apps for the chat. operationId: chats.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: - chats.resourceSpecificPermissionGrant summary: Update the navigation property permissionGrants in chats operationId: chats.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: - chats.resourceSpecificPermissionGrant summary: Delete navigation property permissionGrants for chats operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - name: resourceSpecificPermissionGrant-id in: path description: The unique identifier of resourceSpecificPermissionGrant required: true schema: type: string x-ms-docs-key-type: resourceSpecificPermissionGrant '/chats/{chat-id}/permissionGrants/$count': description: Provides operations to count the resources in the collection. get: tags: - chats.resourceSpecificPermissionGrant summary: Get the number of the resource operationId: chats.permissionGrants.GetCount-7597 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/pinnedMessages': description: Provides operations to manage the pinnedMessages property of the microsoft.graph.chat entity. get: tags: - chats.pinnedChatMessageInfo summary: List pinnedChatMessages in a chat description: Get a list of pinnedChatMessages in a chat. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-list-pinnedmessages?view=graph-rest-beta operationId: chats.ListPinnedMessages 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.pinnedChatMessageInfoCollectionResponse' 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: - chats.pinnedChatMessageInfo summary: Pin a message in a chat description: Pin a chat message in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can pin a chat message. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-post-pinnedmessages?view=graph-rest-beta operationId: chats.CreatePinnedMessages requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.pinnedChatMessageInfo' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.pinnedChatMessageInfo' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}': description: Provides operations to manage the pinnedMessages property of the microsoft.graph.chat entity. get: tags: - chats.pinnedChatMessageInfo summary: Get pinnedMessages from chats description: A collection of all the pinned messages in the chat. Nullable. operationId: chats.GetPinnedMessages parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.pinnedChatMessageInfo' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - chats.pinnedChatMessageInfo summary: Update the navigation property pinnedMessages in chats operationId: chats.UpdatePinnedMessages requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.pinnedChatMessageInfo' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.pinnedChatMessageInfo' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - chats.pinnedChatMessageInfo summary: Unpin a message from a chat description: Unpin a message from a chat. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-delete-pinnedmessages?view=graph-rest-beta operationId: chats.DeletePinnedMessages parameters: - 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - name: pinnedChatMessageInfo-id in: path description: The unique identifier of pinnedChatMessageInfo required: true schema: type: string x-ms-docs-key-type: pinnedChatMessageInfo '/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}/message': description: Provides operations to manage the message property of the microsoft.graph.pinnedChatMessageInfo entity. get: tags: - chats.pinnedChatMessageInfo summary: Get message from chats description: Represents details about the chat message that is pinned. operationId: chats.pinnedMessages.GetMessage parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: 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 parameters: - name: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - name: pinnedChatMessageInfo-id in: path description: The unique identifier of pinnedChatMessageInfo required: true schema: type: string x-ms-docs-key-type: pinnedChatMessageInfo '/chats/{chat-id}/pinnedMessages/$count': description: Provides operations to count the resources in the collection. get: tags: - chats.pinnedChatMessageInfo summary: Get the number of the resource operationId: chats.pinnedMessages.GetCount-ad15 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/tabs': description: Provides operations to manage the tabs property of the microsoft.graph.chat entity. get: tags: - chats.teamsTab summary: List tabs in chat description: Retrieve the list of tabs in the specified chat. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-list-tabs?view=graph-rest-beta operationId: chats.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: - chats.teamsTab summary: Add tab to chat description: "Add (pin) a tab to the specified chat. \nThe corresponding app must already be installed in the chat." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-post-tabs?view=graph-rest-beta operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat '/chats/{chat-id}/tabs/{teamsTab-id}': description: Provides operations to manage the tabs property of the microsoft.graph.chat entity. get: tags: - chats.teamsTab summary: Get tab in chat description: 'Retrieve the properties and relationships of the specified tab in a chat. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-get-tabs?view=graph-rest-beta operationId: chats.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: - chats.teamsTab summary: Update tab in chat description: "Update the properties of the specified tab in a chat. \nThis API can be used to configure the content of the tab." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-patch-tabs?view=graph-rest-beta operationId: chats.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: - chats.teamsTab summary: Delete tab from chat description: 'Remove (unpin) a tab from the specified chat. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/chat-delete-tabs?view=graph-rest-beta operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - name: teamsTab-id in: path description: The unique identifier of teamsTab required: true schema: type: string x-ms-docs-key-type: teamsTab '/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp': description: Provides operations to manage the teamsApp property of the microsoft.graph.teamsTab entity. get: tags: - chats.teamsTab summary: Get teamsApp from chats description: The application that is linked to the tab. operationId: chats.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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat - name: teamsTab-id in: path description: The unique identifier of teamsTab required: true schema: type: string x-ms-docs-key-type: teamsTab '/chats/{chat-id}/tabs/$count': description: Provides operations to count the resources in the collection. get: tags: - chats.teamsTab summary: Get the number of the resource operationId: chats.tabs.GetCount-b645 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: chat-id in: path description: The unique identifier of chat required: true schema: type: string x-ms-docs-key-type: chat /chats/$count: description: Provides operations to count the resources in the collection. get: tags: - chats.chat summary: Get the number of the resource operationId: chats.GetCount-61c7 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' /chats/allMessages(): description: Provides operations to call the allMessages method. get: tags: - chats.chat.Functions summary: Invoke function allMessages operationId: chats.allMessages 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 /chats/getAllMessages(): description: Provides operations to call the getAllMessages method. get: tags: - chats.chat.Functions summary: Invoke function getAllMessages description: 'Get all messages from all chats in which a user is a participant, including one-on-one chats, group chats, and meeting chats. 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/chats-getallmessages?view=graph-rest-beta operationId: chats.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 /chats/getAllRetainedMessages(): description: Provides operations to call the getAllRetainedMessages method. get: tags: - chats.chat.Functions summary: Invoke function getAllRetainedMessages description: 'Get all retained messages from all chats that a user is a participant in, including one-on-one chats, group chats, and meeting chats. 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/chat-getallretainedmessages?view=graph-rest-beta operationId: chats.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 /commands: description: Provides operations to manage the collection of command entities. get: tags: - commands.command summary: Get entities from commands operationId: commands.command.ListCommand 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.commandCollectionResponse' 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: - commands.command summary: Add new entity to commands operationId: commands.command.CreateCommand requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.command' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.command' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/commands/{command-id}': description: Provides operations to manage the collection of command entities. get: tags: - commands.command summary: Get entity from commands by key operationId: commands.command.GetCommand parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.command' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - commands.command summary: Update entity in commands operationId: commands.command.UpdateCommand requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.command' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.command' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - commands.command summary: Delete entity from commands operationId: commands.command.DeleteCommand parameters: - 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: command-id in: path description: The unique identifier of command required: true schema: type: string x-ms-docs-key-type: command '/commands/{command-id}/responsepayload': description: Provides operations to manage the responsepayload property of the microsoft.graph.command entity. get: tags: - commands.payloadResponse summary: Get responsepayload from commands operationId: commands.GetResponsepayload parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.payloadResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: command-id in: path description: The unique identifier of command required: true schema: type: string x-ms-docs-key-type: command /commands/$count: description: Provides operations to count the resources in the collection. get: tags: - commands.command summary: Get the number of the resource operationId: commands.GetCount-ff34 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' /communications: description: Provides operations to manage the cloudCommunications singleton. get: tags: - communications.cloudCommunications summary: Get communications operationId: communications.cloudCommunications.GetCloudCommunications parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.cloudCommunications' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.cloudCommunications summary: Update communications operationId: communications.cloudCommunications.UpdateCloudCommunications requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cloudCommunications' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cloudCommunications' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation /communications/callRecords: description: Provides operations to manage the callRecords property of the microsoft.graph.cloudCommunications entity. get: tags: - communications.callRecord summary: List callRecords description: Get the list of callRecord objects and their properties. The results can be optionally filtered using the $filter query parameter on the startDateTime and participant id properties. Note that the listed call records don't include expandable relationships such as sessions and participants_v2. You can expand these relationships using Get callRecord for a specific record. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/callrecords-cloudcommunications-list-callrecords?view=graph-rest-beta operationId: communications.ListCallRecords 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.callRecords.callRecordCollectionResponse' 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: - communications.callRecord summary: Create new navigation property to callRecords for communications operationId: communications.CreateCallRecords requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.callRecord' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.callRecord' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/communications/callRecords/{callRecord-id}': description: Provides operations to manage the callRecords property of the microsoft.graph.cloudCommunications entity. get: tags: - communications.callRecord summary: Get callRecord description: 'Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord:' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/callrecords-callrecord-get?view=graph-rest-beta operationId: communications.GetCallRecords parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.callRecord' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.callRecord summary: Update the navigation property callRecords in communications operationId: communications.UpdateCallRecords requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.callRecord' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.callRecord' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.callRecord summary: Delete navigation property callRecords for communications operationId: communications.DeleteCallRecords parameters: - 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: callRecord-id in: path description: The unique identifier of callRecord required: true schema: type: string x-ms-docs-key-type: callRecord '/communications/callRecords/{callRecord-id}/organizer_v2': description: Provides operations to manage the organizer_v2 property of the microsoft.graph.callRecords.callRecord entity. get: tags: - communications.callRecord summary: Get organizer_v2 from communications description: Identity of the organizer of the call. This relationship is expanded by default in callRecord methods. operationId: communications.callRecords.GetOrganizer_v2 parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.organizer' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.callRecord summary: Update the navigation property organizer_v2 in communications operationId: communications.callRecords.UpdateOrganizer_v2 requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.organizer' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.organizer' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.callRecord summary: Delete navigation property organizer_v2 for communications operationId: communications.callRecords.DeleteOrganizer_v2 parameters: - 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: callRecord-id in: path description: The unique identifier of callRecord required: true schema: type: string x-ms-docs-key-type: callRecord '/communications/callRecords/{callRecord-id}/participants_v2': description: Provides operations to manage the participants_v2 property of the microsoft.graph.callRecords.callRecord entity. get: tags: - communications.callRecord summary: List participants_v2 description: Get the list of participant objects associated with a callRecord. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/callrecords-callrecord-list-participants_v2?view=graph-rest-beta operationId: communications.callRecords.ListParticipants_v2 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.callRecords.participantCollectionResponse' 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: - communications.callRecord summary: Create new navigation property to participants_v2 for communications operationId: communications.callRecords.CreateParticipants_v2 requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.participant' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.participant' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: callRecord-id in: path description: The unique identifier of callRecord required: true schema: type: string x-ms-docs-key-type: callRecord '/communications/callRecords/{callRecord-id}/participants_v2/{participant-id}': description: Provides operations to manage the participants_v2 property of the microsoft.graph.callRecords.callRecord entity. get: tags: - communications.callRecord summary: Get participants_v2 from communications description: List of distinct participants in the call. operationId: communications.callRecords.GetParticipants_v2 parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.participant' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.callRecord summary: Update the navigation property participants_v2 in communications operationId: communications.callRecords.UpdateParticipants_v2 requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.participant' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.participant' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.callRecord summary: Delete navigation property participants_v2 for communications operationId: communications.callRecords.DeleteParticipants_v2 parameters: - 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: callRecord-id in: path description: The unique identifier of callRecord required: true schema: type: string x-ms-docs-key-type: callRecord - name: participant-id in: path description: The unique identifier of participant required: true schema: type: string x-ms-docs-key-type: participant '/communications/callRecords/{callRecord-id}/participants_v2/$count': description: Provides operations to count the resources in the collection. get: tags: - communications.callRecord summary: Get the number of the resource operationId: communications.callRecords.participants_v2.GetCount-ecf7 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: callRecord-id in: path description: The unique identifier of callRecord required: true schema: type: string x-ms-docs-key-type: callRecord '/communications/callRecords/{callRecord-id}/sessions': description: Provides operations to manage the sessions property of the microsoft.graph.callRecords.callRecord entity. get: tags: - communications.callRecord summary: List sessions description: Retrieve the list of sessions associated with a callRecord object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/callrecords-callrecord-list-sessions?view=graph-rest-beta operationId: communications.callRecords.ListSessions 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.callRecords.sessionCollectionResponse' 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: - communications.callRecord summary: Create new navigation property to sessions for communications operationId: communications.callRecords.CreateSessions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.session' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.session' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: callRecord-id in: path description: The unique identifier of callRecord required: true schema: type: string x-ms-docs-key-type: callRecord '/communications/callRecords/{callRecord-id}/sessions/{session-id}': description: Provides operations to manage the sessions property of the microsoft.graph.callRecords.callRecord entity. get: tags: - communications.callRecord summary: Get sessions from communications description: 'List of sessions involved in the call. Peer-to-peer calls typically only have one session, whereas group calls typically have at least one session per participant. Read-only. Nullable.' operationId: communications.callRecords.GetSessions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.session' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.callRecord summary: Update the navigation property sessions in communications operationId: communications.callRecords.UpdateSessions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.session' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.session' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.callRecord summary: Delete navigation property sessions for communications operationId: communications.callRecords.DeleteSessions parameters: - 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: callRecord-id in: path description: The unique identifier of callRecord required: true schema: type: string x-ms-docs-key-type: callRecord - name: session-id in: path description: The unique identifier of session required: true schema: type: string x-ms-docs-key-type: session '/communications/callRecords/{callRecord-id}/sessions/{session-id}/segments': description: Provides operations to manage the segments property of the microsoft.graph.callRecords.session entity. get: tags: - communications.callRecord summary: Get segments from communications description: The list of segments involved in the session. Read-only. Nullable. operationId: communications.callRecords.sessions.ListSegments 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.callRecords.segmentCollectionResponse' 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: - communications.callRecord summary: Create new navigation property to segments for communications operationId: communications.callRecords.sessions.CreateSegments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.segment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.segment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: callRecord-id in: path description: The unique identifier of callRecord required: true schema: type: string x-ms-docs-key-type: callRecord - name: session-id in: path description: The unique identifier of session required: true schema: type: string x-ms-docs-key-type: session '/communications/callRecords/{callRecord-id}/sessions/{session-id}/segments/{segment-id}': description: Provides operations to manage the segments property of the microsoft.graph.callRecords.session entity. get: tags: - communications.callRecord summary: Get segments from communications description: The list of segments involved in the session. Read-only. Nullable. operationId: communications.callRecords.sessions.GetSegments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.segment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.callRecord summary: Update the navigation property segments in communications operationId: communications.callRecords.sessions.UpdateSegments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.segment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecords.segment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.callRecord summary: Delete navigation property segments for communications operationId: communications.callRecords.sessions.DeleteSegments parameters: - 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: callRecord-id in: path description: The unique identifier of callRecord required: true schema: type: string x-ms-docs-key-type: callRecord - name: session-id in: path description: The unique identifier of session required: true schema: type: string x-ms-docs-key-type: session - name: segment-id in: path description: The unique identifier of segment required: true schema: type: string x-ms-docs-key-type: segment '/communications/callRecords/{callRecord-id}/sessions/{session-id}/segments/$count': description: Provides operations to count the resources in the collection. get: tags: - communications.callRecord summary: Get the number of the resource operationId: communications.callRecords.sessions.segments.GetCount-4fed 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: callRecord-id in: path description: The unique identifier of callRecord required: true schema: type: string x-ms-docs-key-type: callRecord - name: session-id in: path description: The unique identifier of session required: true schema: type: string x-ms-docs-key-type: session '/communications/callRecords/{callRecord-id}/sessions/$count': description: Provides operations to count the resources in the collection. get: tags: - communications.callRecord summary: Get the number of the resource operationId: communications.callRecords.sessions.GetCount-c743 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: callRecord-id in: path description: The unique identifier of callRecord required: true schema: type: string x-ms-docs-key-type: callRecord /communications/callRecords/$count: description: Provides operations to count the resources in the collection. get: tags: - communications.callRecord summary: Get the number of the resource operationId: communications.callRecords.GetCount-e558 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' '/communications/callRecords/microsoft.graph.callRecords.getDirectRoutingCalls(fromDateTime={fromDateTime},toDateTime={toDateTime})': description: Provides operations to call the getDirectRoutingCalls method. get: tags: - communications.callRecord summary: Invoke function getDirectRoutingCalls description: Get a log of direct routing calls as a collection of directRoutingLogRow entries. operationId: communications.callRecords.getDirectRoutingCalls 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.callRecords.directRoutingLogRow' 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: fromDateTime in: path description: 'Usage: fromDateTime={fromDateTime}' required: true schema: 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 - name: toDateTime in: path description: 'Usage: toDateTime={toDateTime}' required: true schema: 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 '/communications/callRecords/microsoft.graph.callRecords.getPstnBlockedUsersLog(fromDateTime={fromDateTime},toDateTime={toDateTime})': description: Provides operations to call the getPstnBlockedUsersLog method. get: tags: - communications.callRecord summary: Invoke function getPstnBlockedUsersLog description: Get the log of users who are blocked/unblocked from making public switched telephone network (PSTN) calls in Microsoft Teams as a collection of pstnBlockedUsersLogRow entries. The log includes information about each blocked user such as their assigned phone number and the reason they were blocked/unblocked from making calls. operationId: communications.callRecords.getPstnBlockedUsersLog 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.callRecords.pstnBlockedUsersLogRow' 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: fromDateTime in: path description: 'Usage: fromDateTime={fromDateTime}' required: true schema: 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 - name: toDateTime in: path description: 'Usage: toDateTime={toDateTime}' required: true schema: 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 '/communications/callRecords/microsoft.graph.callRecords.getPstnCalls(fromDateTime={fromDateTime},toDateTime={toDateTime})': description: Provides operations to call the getPstnCalls method. get: tags: - communications.callRecord summary: Invoke function getPstnCalls description: Get a log of PSTN calls as a collection of pstnCallLogRow entries. operationId: communications.callRecords.getPstnCalls 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.callRecords.pstnCallLogRow' 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: fromDateTime in: path description: 'Usage: fromDateTime={fromDateTime}' required: true schema: 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 - name: toDateTime in: path description: 'Usage: toDateTime={toDateTime}' required: true schema: 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 '/communications/callRecords/microsoft.graph.callRecords.getPstnOnlineMeetingDialoutReport(fromDateTime={fromDateTime},toDateTime={toDateTime})': description: Provides operations to call the getPstnOnlineMeetingDialoutReport method. get: tags: - communications.callRecord summary: Invoke function getPstnOnlineMeetingDialoutReport description: "Get aggregated report of usage and money spent for the audio conferencing dial-out service over a selected period as a collection of pstnOnlineMeetingDialoutReport entries.\nThe report is aggregated by user, user location, destination context (domestic/international), and currency. The report includes:" operationId: communications.callRecords.getPstnOnlineMeetingDialoutReport 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.callRecords.pstnOnlineMeetingDialoutReport' 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: fromDateTime in: path description: 'Usage: fromDateTime={fromDateTime}' required: true schema: 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 - name: toDateTime in: path description: 'Usage: toDateTime={toDateTime}' required: true schema: 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 '/communications/callRecords/microsoft.graph.callRecords.getSmsLog(fromDateTime={fromDateTime},toDateTime={toDateTime})': description: Provides operations to call the getSmsLog method. get: tags: - communications.callRecord summary: Invoke function getSmsLog description: Get the log of a sent/received SMS as a collection of smsLogRow entries. operationId: communications.callRecords.getSmsLog 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.callRecords.smsLogRow' 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: fromDateTime in: path description: 'Usage: fromDateTime={fromDateTime}' required: true schema: 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 - name: toDateTime in: path description: 'Usage: toDateTime={toDateTime}' required: true schema: 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 /communications/calls: description: Provides operations to manage the calls property of the microsoft.graph.cloudCommunications entity. get: tags: - communications.call summary: Get call description: Retrieve the properties and relationships of a call object. operationId: communications.ListCalls 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.callCollectionResponse' 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: - communications.call summary: Create call description: 'Create call enables your bot to create a new outgoing peer-to-peer or group call, or join an existing meeting. You need to register the calling bot and go through the list of permissions needed. This API supports the following PSTN scenarios:' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/application-post-calls?view=graph-rest-beta operationId: communications.CreateCalls requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.call' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.call' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/communications/calls/{call-id}': description: Provides operations to manage the calls property of the microsoft.graph.cloudCommunications entity. get: tags: - communications.call summary: Get call description: Retrieve the properties and relationships of a call object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-get?view=graph-rest-beta operationId: communications.GetCalls parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.call' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.call summary: Update the navigation property calls in communications operationId: communications.UpdateCalls requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.call' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.call' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.call summary: Delete call description: 'Delete or hang up an active call. For group calls, this will only delete your call leg and the underlying group call will still continue.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-delete?view=graph-rest-beta operationId: communications.DeleteCalls parameters: - 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/audioRoutingGroups': description: Provides operations to manage the audioRoutingGroups property of the microsoft.graph.call entity. get: tags: - communications.call summary: List audio routing groups description: Retrieve a list of audioRoutingGroup objects. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-list-audioroutinggroups?view=graph-rest-beta operationId: communications.calls.ListAudioRoutingGroups 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.audioRoutingGroupCollectionResponse' 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: - communications.call summary: Create audio routing group description: Create a new audioRoutingGroup. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-post-audioroutinggroups?view=graph-rest-beta operationId: communications.calls.CreateAudioRoutingGroups requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.audioRoutingGroup' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.audioRoutingGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}': description: Provides operations to manage the audioRoutingGroups property of the microsoft.graph.call entity. get: tags: - communications.call summary: Get audio routing group description: Retrieve the properties and relationships of an audioRoutingGroup object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/audioroutinggroup-get?view=graph-rest-beta operationId: communications.calls.GetAudioRoutingGroups parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.audioRoutingGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.call summary: Update audio routing group description: Modify sources and receivers of an audioRoutingGroup. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/audioroutinggroup-update?view=graph-rest-beta operationId: communications.calls.UpdateAudioRoutingGroups requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.audioRoutingGroup' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.audioRoutingGroup' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.call summary: Delete audio routing group description: Delete the specified audioRoutingGroup. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/audioroutinggroup-delete?view=graph-rest-beta operationId: communications.calls.DeleteAudioRoutingGroups parameters: - 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call - name: audioRoutingGroup-id in: path description: The unique identifier of audioRoutingGroup required: true schema: type: string x-ms-docs-key-type: audioRoutingGroup '/communications/calls/{call-id}/audioRoutingGroups/$count': description: Provides operations to count the resources in the collection. get: tags: - communications.call summary: Get the number of the resource operationId: communications.calls.audioRoutingGroups.GetCount-157e 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/contentSharingSessions': description: Provides operations to manage the contentSharingSessions property of the microsoft.graph.call entity. get: tags: - communications.call summary: List contentSharingSessions description: Retrieve a list of contentSharingSession objects in a call. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-list-contentsharingsessions?view=graph-rest-beta operationId: communications.calls.ListContentSharingSessions 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.contentSharingSessionCollectionResponse' 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: - communications.call summary: Create new navigation property to contentSharingSessions for communications operationId: communications.calls.CreateContentSharingSessions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentSharingSession' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentSharingSession' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/contentSharingSessions/{contentSharingSession-id}': description: Provides operations to manage the contentSharingSessions property of the microsoft.graph.call entity. get: tags: - communications.call summary: Get contentSharingSession description: Retrieve the properties of a contentSharingSession object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/contentsharingsession-get?view=graph-rest-beta operationId: communications.calls.GetContentSharingSessions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentSharingSession' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.call summary: Update the navigation property contentSharingSessions in communications operationId: communications.calls.UpdateContentSharingSessions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentSharingSession' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contentSharingSession' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.call summary: Delete navigation property contentSharingSessions for communications operationId: communications.calls.DeleteContentSharingSessions parameters: - 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call - name: contentSharingSession-id in: path description: The unique identifier of contentSharingSession required: true schema: type: string x-ms-docs-key-type: contentSharingSession '/communications/calls/{call-id}/contentSharingSessions/{contentSharingSession-id}/pngOfCurrentSlide': description: Provides operations to manage the media for the cloudCommunications entity. get: tags: - communications.call summary: Get pngOfCurrentSlide for the navigation property contentSharingSessions from communications operationId: communications.calls.GetContentSharingSessionsPngOfCurrentSlide 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: - communications.call summary: Update pngOfCurrentSlide for the navigation property contentSharingSessions in communications operationId: communications.calls.UpdateContentSharingSessionsPngOfCurrentSlide 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: - communications.call summary: Delete pngOfCurrentSlide for the navigation property contentSharingSessions in communications operationId: communications.calls.DeleteContentSharingSessionsPngOfCurrentSlide parameters: - 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call - name: contentSharingSession-id in: path description: The unique identifier of contentSharingSession required: true schema: type: string x-ms-docs-key-type: contentSharingSession '/communications/calls/{call-id}/contentSharingSessions/$count': description: Provides operations to count the resources in the collection. get: tags: - communications.call summary: Get the number of the resource operationId: communications.calls.contentSharingSessions.GetCount-a2b2 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/addLargeGalleryView': description: Provides operations to call the addLargeGalleryView method. post: tags: - communications.call summary: Invoke action addLargeGalleryView description: 'Add the large gallery view to a call. For details about how to identify a large gallery view participant in a roster so that you can retrieve the relevant data to subscribe to the video feed, see Identify large gallery view participants in a roster.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-addlargegalleryview?view=graph-rest-beta operationId: communications.calls.call.addLargeGalleryView requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.addLargeGalleryViewOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/answer': description: Provides operations to call the answer method. post: tags: - communications.call summary: Invoke action answer description: 'Enable a bot to answer an incoming call. The incoming call request can be an invitation from a participant in a group call or a peer-to-peer call. If an invitation to a group call is received, the notification contains the chatInfo and meetingInfo parameters. The bot is expected to answer, reject or redirect the call before the call times out. The current timeout value is 15 seconds. The current timeout value is 15 seconds for regular scenarios, and 5 seconds for policy-based recording scenarios. This API supports the following PSTN scenarios:' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-answer?view=graph-rest-beta operationId: communications.calls.call.answer requestBody: description: Action parameters content: application/json: schema: type: object properties: callbackUri: type: string mediaConfig: $ref: '#/components/schemas/microsoft.graph.mediaConfig' acceptedModalities: type: array items: anyOf: - $ref: '#/components/schemas/microsoft.graph.modality' - type: object nullable: true participantCapacity: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true callOptions: anyOf: - $ref: '#/components/schemas/microsoft.graph.incomingCallOptions' - 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/cancelMediaProcessing': description: Provides operations to call the cancelMediaProcessing method. post: tags: - communications.call summary: Invoke action cancelMediaProcessing description: 'Cancels processing for any in-progress media operations. Media operations refer to the IVR operations playPrompt and recordResponse, which are by default queued to process in order. The cancelMediaProcessing method cancels any operation that is in-process as well as operations that are queued. For example, this API can be used to clean up the IVR operation queue for a new media operation. However, it will not cancel a ubscribeToTone operation because it operates independent of any operation queue.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-cancelmediaprocessing?view=graph-rest-beta operationId: communications.calls.call.cancelMediaProcessing requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.cancelMediaProcessingOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/changeScreenSharingRole': description: Provides operations to call the changeScreenSharingRole method. post: tags: - communications.call summary: Invoke action changeScreenSharingRole description: Allow applications to share screen content with the participants of a group call. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-changescreensharingrole?view=graph-rest-beta operationId: communications.calls.call.changeScreenSharingRole requestBody: description: Action parameters content: application/json: schema: type: object properties: role: $ref: '#/components/schemas/microsoft.graph.screenSharingRole' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/keepAlive': description: Provides operations to call the keepAlive method. post: tags: - communications.call summary: Invoke action keepAlive description: 'Make a request to this API every 15 to 45 minutes to ensure that an ongoing call remains active. A call that doesn''t receive this request within 45 minutes is considered inactive and ends. At least one successful request must be made within 45 minutes of the previous request, or the start of the call. We recommend that you send a request in shorter time intervals (every 15 minutes). Make sure that these requests are successful to prevent the call from timing out and ending. Attempting to send a request to a call that ended results in a 404 Not Found error. The resources related to the call should be cleaned up on the application side.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-keepalive?view=graph-rest-beta operationId: communications.calls.call.keepAlive responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/mute': description: Provides operations to call the mute method. post: tags: - communications.call summary: Invoke action mute description: 'Allows the application to mute itself. This is a server mute, meaning that the server drops all audio packets for this participant, even if the participant continues to stream audio. For more information about how to handle mute operations, see muteParticipantOperation.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-mute?view=graph-rest-beta operationId: communications.calls.call.mute requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.muteParticipantOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call x-ms-docs-grouped-path: - '/communications/calls/{call-id}/participants/{participant-id}/mute' '/communications/calls/{call-id}/playPrompt': description: Provides operations to call the playPrompt method. post: tags: - communications.call summary: Invoke action playPrompt description: 'Play a prompt in the call. For more information about how to handle operations, see commsOperation' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-playprompt?view=graph-rest-beta operationId: communications.calls.call.playPrompt requestBody: description: Action parameters content: application/json: schema: type: object properties: prompts: type: array items: $ref: '#/components/schemas/microsoft.graph.prompt' loop: type: boolean default: false nullable: true clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.playPromptOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/record': description: Provides operations to call the record method. post: tags: - communications.call summary: Invoke action record operationId: communications.calls.call.record requestBody: description: Action parameters content: application/json: schema: type: object properties: prompts: type: array items: $ref: '#/components/schemas/microsoft.graph.prompt' bargeInAllowed: type: boolean default: false nullable: true initialSilenceTimeoutInSeconds: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true maxSilenceTimeoutInSeconds: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true maxRecordDurationInSeconds: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true playBeep: type: boolean default: false nullable: true streamWhileRecording: type: boolean default: false nullable: true stopTones: type: array items: type: string nullable: true clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.recordOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/recordResponse': description: Provides operations to call the recordResponse method. post: tags: - communications.call summary: Invoke action recordResponse description: 'Record a short audio response from the caller. A bot can use this API to capture a voice response from a caller after they''re prompted for a response. For more information about how to handle operations, see commsOperation. This action isn''t intended to record the entire call. The maximum length of recording is 2 minutes.The Cloud Communications Platform doesn''t save the recording permanently and discards it shortly after the call ends. The bot must download the recording promptly after the recording operation finishes by using the recordingLocation value provided in the completed notification.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-record?view=graph-rest-beta operationId: communications.calls.call.recordResponse requestBody: description: Action parameters content: application/json: schema: type: object properties: prompts: type: array items: $ref: '#/components/schemas/microsoft.graph.prompt' bargeInAllowed: type: boolean default: false nullable: true initialSilenceTimeoutInSeconds: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true maxSilenceTimeoutInSeconds: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true maxRecordDurationInSeconds: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true playBeep: type: boolean default: false nullable: true streamWhileRecording: type: boolean default: false nullable: true stopTones: type: array items: type: string nullable: true clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.recordOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/redirect': description: Provides operations to call the redirect method. post: tags: - communications.call summary: Invoke action redirect description: Redirect an incoming call that wasn't answered or rejected yet. The terms 'redirecting' and 'forwarding' a call are used interchangeably. The bot is expected to redirect the call before the call times out. The current timeout value is 15 seconds. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-redirect?view=graph-rest-beta operationId: communications.calls.call.redirect requestBody: description: Action parameters content: application/json: schema: type: object properties: targets: type: array items: $ref: '#/components/schemas/microsoft.graph.invitationParticipantInfo' targetDisposition: anyOf: - $ref: '#/components/schemas/microsoft.graph.callDisposition' - type: object nullable: true timeout: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true maskCallee: type: boolean default: false nullable: true maskCaller: type: boolean default: false nullable: true callbackUri: 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/reject': description: Provides operations to call the reject method. post: tags: - communications.call summary: Invoke action reject description: 'Enable a bot to reject an incoming call. The incoming call request can be an invite from a participant in a group call or a peer-to-peer call. If an invite to a group call is received, the notification contains the chatInfo and meetingInfo parameters. The bot is expected to answer or reject the call before the call times out. The current timeout value is 15 seconds. This API doesn''t end existing calls that have already been answered. Use delete call to end a call.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-reject?view=graph-rest-beta operationId: communications.calls.call.reject requestBody: description: Action parameters content: application/json: schema: type: object properties: reason: anyOf: - $ref: '#/components/schemas/microsoft.graph.rejectReason' - type: object nullable: true callbackUri: 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/sendDtmfTones': description: Provides operations to call the sendDtmfTones method. post: tags: - communications.call summary: Invoke action sendDtmfTones operationId: communications.calls.call.sendDtmfTones requestBody: description: Action parameters content: application/json: schema: type: object properties: tones: type: array items: $ref: '#/components/schemas/microsoft.graph.tone' delayBetweenTonesMs: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.sendDtmfTonesOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/startRecording': description: Provides operations to call the startRecording method. post: tags: - communications.call summary: Invoke action startRecording operationId: communications.calls.call.startRecording requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.startRecordingOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/startTranscription': description: Provides operations to call the startTranscription method. post: tags: - communications.call summary: Invoke action startTranscription operationId: communications.calls.call.startTranscription requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true language: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.startTranscriptionOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/stopRecording': description: Provides operations to call the stopRecording method. post: tags: - communications.call summary: Invoke action stopRecording operationId: communications.calls.call.stopRecording requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.stopRecordingOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/stopTranscription': description: Provides operations to call the stopTranscription method. post: tags: - communications.call summary: Invoke action stopTranscription operationId: communications.calls.call.stopTranscription requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true language: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.stopTranscriptionOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/subscribeToTone': description: Provides operations to call the subscribeToTone method. post: tags: - communications.call summary: Invoke action subscribeToTone description: Subscribe to DTMF (dual-tone multi-frequency signaling) to allow you to be notified when the user presses keys on a dialpad. This action is supported only for calls that are initiated with serviceHostedMediaConfig. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-subscribetotone?view=graph-rest-beta operationId: communications.calls.call.subscribeToTone requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.subscribeToToneOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/transfer': description: Provides operations to call the transfer method. post: tags: - communications.call summary: Invoke action transfer description: 'Transfer an active peer-to-peer call or group call. A consultative transfer means that the transferor can inform the person they want to transfer the call to (the transferee), before the transfer is made. This is opposed to transfering the call directly.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-transfer?view=graph-rest-beta operationId: communications.calls.call.transfer requestBody: description: Action parameters content: application/json: schema: type: object properties: transferTarget: $ref: '#/components/schemas/microsoft.graph.invitationParticipantInfo' transferee: anyOf: - $ref: '#/components/schemas/microsoft.graph.participantInfo' - 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/unmute': description: Provides operations to call the unmute method. post: tags: - communications.call summary: Invoke action unmute description: 'Allow the application to unmute itself. This is a server unmute, meaning that the server will start sending audio packets for this participant to other participants again. For more information about how to handle unmute operations, see unmuteParticipantOperation.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-unmute?view=graph-rest-beta operationId: communications.calls.call.unmute requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.unmuteParticipantOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/updateRecordingStatus': description: Provides operations to call the updateRecordingStatus method. post: tags: - communications.call summary: Invoke action updateRecordingStatus description: Update the application's recording status associated with a call. This requires the use of the Teams policy-based recording solution. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-updaterecordingstatus?view=graph-rest-beta operationId: communications.calls.call.updateRecordingStatus requestBody: description: Action parameters content: application/json: schema: type: object properties: status: $ref: '#/components/schemas/microsoft.graph.recordingStatus' clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.updateRecordingStatusOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/operations': description: Provides operations to manage the operations property of the microsoft.graph.call entity. get: tags: - communications.call summary: Get addLargeGalleryViewOperation description: Get the status of an operation that adds the large gallery view to a call. operationId: communications.calls.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.commsOperationCollectionResponse' 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: - communications.call summary: Create new navigation property to operations for communications operationId: communications.calls.CreateOperations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.commsOperation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.commsOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/operations/{commsOperation-id}': description: Provides operations to manage the operations property of the microsoft.graph.call entity. get: tags: - communications.call summary: Get addLargeGalleryViewOperation description: Get the status of an operation that adds the large gallery view to a call. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/addlargegalleryviewoperation-get?view=graph-rest-beta operationId: communications.calls.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.commsOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.call summary: Update the navigation property operations in communications operationId: communications.calls.UpdateOperations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.commsOperation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.commsOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.call summary: Delete navigation property operations for communications operationId: communications.calls.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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call - name: commsOperation-id in: path description: The unique identifier of commsOperation required: true schema: type: string x-ms-docs-key-type: commsOperation '/communications/calls/{call-id}/operations/$count': description: Provides operations to count the resources in the collection. get: tags: - communications.call summary: Get the number of the resource operationId: communications.calls.operations.GetCount-3444 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/participants': description: Provides operations to manage the participants property of the microsoft.graph.call entity. get: tags: - communications.call summary: List participants description: Retrieve a list of participant objects in the call. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-list-participants?view=graph-rest-beta operationId: communications.calls.ListParticipants 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.participantCollectionResponse' 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: - communications.call summary: Create new navigation property to participants for communications operationId: communications.calls.CreateParticipants requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.participant' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.participant' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/participants/{participant-id}': description: Provides operations to manage the participants property of the microsoft.graph.call entity. get: tags: - communications.call summary: Get participant description: Retrieve the properties and relationships of a participant object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/participant-get?view=graph-rest-beta operationId: communications.calls.GetParticipants parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.participant' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.call summary: Update the navigation property participants in communications operationId: communications.calls.UpdateParticipants requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.participant' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.participant' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.call summary: Delete participant description: 'Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-beta operationId: communications.calls.DeleteParticipants parameters: - 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call - name: participant-id in: path description: The unique identifier of participant required: true schema: type: string x-ms-docs-key-type: participant '/communications/calls/{call-id}/participants/{participant-id}/mute': description: Provides operations to call the mute method. post: tags: - communications.call summary: Invoke action mute description: 'Mute a specific participant in the call. This is a server mute, meaning that the server will drop all audio packets for this participant, even if the participant continues to stream audio. For more information about how to handle mute operations, see muteParticipantOperation.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/participant-mute?view=graph-rest-beta operationId: communications.calls.call.participants.participant.mute requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.muteParticipantOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call - name: participant-id in: path description: The unique identifier of participant required: true schema: type: string x-ms-docs-key-type: participant x-ms-docs-grouped-path: - '/communications/calls/{call-id}/mute' '/communications/calls/{call-id}/participants/{participant-id}/startHoldMusic': description: Provides operations to call the startHoldMusic method. post: tags: - communications.call summary: Invoke action startHoldMusic description: Put a participant on hold and play music in the background. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/participant-startholdmusic?view=graph-rest-beta operationId: communications.calls.call.participants.participant.startHoldMusic requestBody: description: Action parameters content: application/json: schema: type: object properties: customPrompt: anyOf: - $ref: '#/components/schemas/microsoft.graph.prompt' - type: object nullable: true clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.startHoldMusicOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call - name: participant-id in: path description: The unique identifier of participant required: true schema: type: string x-ms-docs-key-type: participant '/communications/calls/{call-id}/participants/{participant-id}/stopHoldMusic': description: Provides operations to call the stopHoldMusic method. post: tags: - communications.call summary: Invoke action stopHoldMusic description: Reincorporate a participant previously put on hold to the call. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/participant-stopholdmusic?view=graph-rest-beta operationId: communications.calls.call.participants.participant.stopHoldMusic requestBody: description: Action parameters content: application/json: schema: type: object properties: clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.stopHoldMusicOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call - name: participant-id in: path description: The unique identifier of participant required: true schema: type: string x-ms-docs-key-type: participant '/communications/calls/{call-id}/participants/$count': description: Provides operations to count the resources in the collection. get: tags: - communications.call summary: Get the number of the resource operationId: communications.calls.participants.GetCount-4efe 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: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/participants/invite': description: Provides operations to call the invite method. post: tags: - communications.call summary: Invoke action invite description: 'Invite participants to the active call. For more information about how to handle operations, see commsOperation.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/participant-invite?view=graph-rest-beta operationId: communications.calls.call.participants.invite requestBody: description: Action parameters content: application/json: schema: type: object properties: participants: type: array items: $ref: '#/components/schemas/microsoft.graph.invitationParticipantInfo' clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.inviteParticipantsOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call '/communications/calls/{call-id}/participants/muteAll': description: Provides operations to call the muteAll method. post: tags: - communications.call summary: Invoke action muteAll description: Mute all participants in the call. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/participant-muteall?view=graph-rest-beta operationId: communications.calls.call.participants.muteAll requestBody: description: Action parameters content: application/json: schema: type: object properties: participants: type: array items: type: string nullable: true clientContext: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.muteParticipantsOperation' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: call-id in: path description: The unique identifier of call required: true schema: type: string x-ms-docs-key-type: call /communications/calls/$count: description: Provides operations to count the resources in the collection. get: tags: - communications.call summary: Get the number of the resource operationId: communications.calls.GetCount-5d04 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' /communications/calls/logTeleconferenceDeviceQuality: description: Provides operations to call the logTeleconferenceDeviceQuality method. post: tags: - communications.call summary: Invoke action logTeleconferenceDeviceQuality description: 'Log video teleconferencing device quality data. The Cloud Video Interop (CVI) bot represents video teleconferencing (VTC) devices and acts as a back-to-back agent for a VTC device in a conference call. Because a CVI bot is in the middle of the VTC and Microsoft Teams infrastructure as a VTC proxy, it has two media legs. One media leg is between the CVI bot and Teams infrastructure, such as Teams conference server or a Teams client. The other media leg is between the CVI bot and the VTC device. The third-party partners own the VTC media leg and the Teams infrastructure cannot access the quality data of the third-party call leg. This method is only for the CVI partners to provide their media quality data.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/call-logteleconferencedevicequality?view=graph-rest-beta operationId: communications.calls.logTeleconferenceDeviceQuality requestBody: description: Action parameters content: application/json: schema: type: object properties: quality: $ref: '#/components/schemas/microsoft.graph.teleconferenceDeviceQuality' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /communications/getPresencesByUserId: description: Provides operations to call the getPresencesByUserId method. post: tags: - communications.cloudCommunications.Actions summary: Invoke action getPresencesByUserId description: Get the presence information for multiple users. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/cloudcommunications-getpresencesbyuserid?view=graph-rest-beta operationId: communications.getPresencesByUserId 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: title: Collection of presence type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.presence' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /communications/onlineMeetings: description: Provides operations to manage the onlineMeetings property of the microsoft.graph.cloudCommunications entity. get: tags: - communications.onlineMeeting summary: Get onlineMeeting description: 'Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) and Teams live event recordings (deprecated) are online meeting artifacts. For details, see Online meeting artifacts and permissions. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/onlinemeeting-get?view=graph-rest-beta operationId: communications.ListOnlineMeetings 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.onlineMeetingCollectionResponse' 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: - communications.onlineMeeting summary: Create new navigation property to onlineMeetings for communications operationId: communications.CreateOnlineMeetings requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onlineMeeting' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onlineMeeting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/communications/onlineMeetings/{onlineMeeting-id}': description: Provides operations to manage the onlineMeetings property of the microsoft.graph.cloudCommunications entity. get: tags: - communications.onlineMeeting summary: Get onlineMeetings from communications operationId: communications.GetOnlineMeetings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onlineMeeting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.onlineMeeting summary: Update the navigation property onlineMeetings in communications operationId: communications.UpdateOnlineMeetings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onlineMeeting' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onlineMeeting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.onlineMeeting summary: Delete navigation property onlineMeetings for communications operationId: communications.DeleteOnlineMeetings parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting x-ms-docs-grouped-path: - '/communications/onlineMeetings(joinWebUrl=''{joinWebUrl}'')' '/communications/onlineMeetings/{onlineMeeting-id}/aiInsights': description: Provides operations to manage the aiInsights property of the microsoft.graph.onlineMeeting entity. get: tags: - communications.onlineMeeting summary: Get aiInsights from communications description: The AI insights generated for an online meeting. Read-only. operationId: communications.onlineMeetings.ListAiInsights 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.callAiInsightCollectionResponse' 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: - communications.onlineMeeting summary: Create new navigation property to aiInsights for communications operationId: communications.onlineMeetings.CreateAiInsights requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callAiInsight' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callAiInsight' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/aiInsights/{callAiInsight-id}': description: Provides operations to manage the aiInsights property of the microsoft.graph.onlineMeeting entity. get: tags: - communications.onlineMeeting summary: Get aiInsights from communications description: The AI insights generated for an online meeting. Read-only. operationId: communications.onlineMeetings.GetAiInsights parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callAiInsight' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.onlineMeeting summary: Update the navigation property aiInsights in communications operationId: communications.onlineMeetings.UpdateAiInsights requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callAiInsight' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callAiInsight' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.onlineMeeting summary: Delete navigation property aiInsights for communications operationId: communications.onlineMeetings.DeleteAiInsights parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: callAiInsight-id in: path description: The unique identifier of callAiInsight required: true schema: type: string x-ms-docs-key-type: callAiInsight '/communications/onlineMeetings/{onlineMeeting-id}/aiInsights/$count': description: Provides operations to count the resources in the collection. get: tags: - communications.onlineMeeting summary: Get the number of the resource operationId: communications.onlineMeetings.aiInsights.GetCount-e9fa 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/alternativeRecording': description: Provides operations to manage the media for the cloudCommunications entity. get: tags: - communications.onlineMeeting summary: Get alternativeRecording for the navigation property onlineMeetings from communications description: The content stream of the alternative recording of a Microsoft Teams live event. Read-only. operationId: communications.GetOnlineMeetingsAlternativeRecording 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: - communications.onlineMeeting summary: Update alternativeRecording for the navigation property onlineMeetings in communications description: The content stream of the alternative recording of a Microsoft Teams live event. Read-only. operationId: communications.UpdateOnlineMeetingsAlternativeRecording 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: - communications.onlineMeeting summary: Delete alternativeRecording for the navigation property onlineMeetings in communications description: The content stream of the alternative recording of a Microsoft Teams live event. Read-only. operationId: communications.DeleteOnlineMeetingsAlternativeRecording parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports': description: Provides operations to manage the attendanceReports property of the microsoft.graph.onlineMeetingBase entity. get: tags: - communications.onlineMeeting summary: Get attendanceReports from communications description: The attendance reports of an online meeting. Read-only. operationId: communications.onlineMeetings.ListAttendanceReports 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.meetingAttendanceReportCollectionResponse' 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: - communications.onlineMeeting summary: Create new navigation property to attendanceReports for communications operationId: communications.onlineMeetings.CreateAttendanceReports requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}': description: Provides operations to manage the attendanceReports property of the microsoft.graph.onlineMeetingBase entity. get: tags: - communications.onlineMeeting summary: Get attendanceReports from communications description: The attendance reports of an online meeting. Read-only. operationId: communications.onlineMeetings.GetAttendanceReports parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.onlineMeeting summary: Update the navigation property attendanceReports in communications operationId: communications.onlineMeetings.UpdateAttendanceReports requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.onlineMeeting summary: Delete navigation property attendanceReports for communications operationId: communications.onlineMeetings.DeleteAttendanceReports parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: meetingAttendanceReport-id in: path description: The unique identifier of meetingAttendanceReport required: true schema: type: string x-ms-docs-key-type: meetingAttendanceReport '/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords': description: Provides operations to manage the attendanceRecords property of the microsoft.graph.meetingAttendanceReport entity. get: tags: - communications.onlineMeeting summary: Get attendanceRecords from communications description: List of attendance records of an attendance report. Read-only. operationId: communications.onlineMeetings.attendanceReports.ListAttendanceRecords 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.attendanceRecordCollectionResponse' 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: - communications.onlineMeeting summary: Create new navigation property to attendanceRecords for communications operationId: communications.onlineMeetings.attendanceReports.CreateAttendanceRecords requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: meetingAttendanceReport-id in: path description: The unique identifier of meetingAttendanceReport required: true schema: type: string x-ms-docs-key-type: meetingAttendanceReport x-ms-docs-grouped-path: - '/communications/onlineMeetings/{onlineMeeting-id}/meetingAttendanceReport/attendanceRecords' '/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}': description: Provides operations to manage the attendanceRecords property of the microsoft.graph.meetingAttendanceReport entity. get: tags: - communications.onlineMeeting summary: Get attendanceRecords from communications description: List of attendance records of an attendance report. Read-only. operationId: communications.onlineMeetings.attendanceReports.GetAttendanceRecords parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.onlineMeeting summary: Update the navigation property attendanceRecords in communications operationId: communications.onlineMeetings.attendanceReports.UpdateAttendanceRecords requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.onlineMeeting summary: Delete navigation property attendanceRecords for communications operationId: communications.onlineMeetings.attendanceReports.DeleteAttendanceRecords parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: meetingAttendanceReport-id in: path description: The unique identifier of meetingAttendanceReport required: true schema: type: string x-ms-docs-key-type: meetingAttendanceReport - name: attendanceRecord-id in: path description: The unique identifier of attendanceRecord required: true schema: type: string x-ms-docs-key-type: attendanceRecord x-ms-docs-grouped-path: - '/communications/onlineMeetings/{onlineMeeting-id}/meetingAttendanceReport/attendanceRecords/{attendanceRecord-id}' '/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count': description: Provides operations to count the resources in the collection. get: tags: - communications.onlineMeeting summary: Get the number of the resource operationId: communications.onlineMeetings.attendanceReports.attendanceRecords.GetCount-73e4 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: meetingAttendanceReport-id in: path description: The unique identifier of meetingAttendanceReport required: true schema: type: string x-ms-docs-key-type: meetingAttendanceReport '/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/$count': description: Provides operations to count the resources in the collection. get: tags: - communications.onlineMeeting summary: Get the number of the resource operationId: communications.onlineMeetings.attendanceReports.GetCount-c621 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport': description: Provides operations to manage the media for the cloudCommunications entity. get: tags: - communications.onlineMeeting summary: Get attendeeReport for the navigation property onlineMeetings from communications description: The content stream of the attendee report of a Teams live event. Read-only. operationId: communications.GetOnlineMeetingsAttendeeReport 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: - communications.onlineMeeting summary: Update attendeeReport for the navigation property onlineMeetings in communications description: The content stream of the attendee report of a Teams live event. Read-only. operationId: communications.UpdateOnlineMeetingsAttendeeReport 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: - communications.onlineMeeting summary: Delete attendeeReport for the navigation property onlineMeetings in communications description: The content stream of the attendee report of a Teams live event. Read-only. operationId: communications.DeleteOnlineMeetingsAttendeeReport parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/broadcastRecording': description: Provides operations to manage the media for the cloudCommunications entity. get: tags: - communications.onlineMeeting summary: Get broadcastRecording for the navigation property onlineMeetings from communications operationId: communications.GetOnlineMeetingsBroadcastRecording 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: - communications.onlineMeeting summary: Update broadcastRecording for the navigation property onlineMeetings in communications operationId: communications.UpdateOnlineMeetingsBroadcastRecording 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: - communications.onlineMeeting summary: Delete broadcastRecording for the navigation property onlineMeetings in communications operationId: communications.DeleteOnlineMeetingsBroadcastRecording parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/meetingAttendanceReport': description: Provides operations to manage the meetingAttendanceReport property of the microsoft.graph.onlineMeeting entity. get: tags: - communications.onlineMeeting summary: Get meetingAttendanceReport from communications description: The attendance report of the latest online meeting session. Read-only. operationId: communications.onlineMeetings.GetMeetingAttendanceReport parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.onlineMeeting summary: Update the navigation property meetingAttendanceReport in communications operationId: communications.onlineMeetings.UpdateMeetingAttendanceReport requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingAttendanceReport' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.onlineMeeting summary: Delete navigation property meetingAttendanceReport for communications operationId: communications.onlineMeetings.DeleteMeetingAttendanceReport parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/meetingAttendanceReport/attendanceRecords': description: Provides operations to manage the attendanceRecords property of the microsoft.graph.meetingAttendanceReport entity. get: tags: - communications.onlineMeeting summary: Get attendanceRecords from communications description: List of attendance records of an attendance report. Read-only. operationId: communications.onlineMeetings.meetingAttendanceReport.ListAttendanceRecords 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.attendanceRecordCollectionResponse' 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: - communications.onlineMeeting summary: Create new navigation property to attendanceRecords for communications operationId: communications.onlineMeetings.meetingAttendanceReport.CreateAttendanceRecords requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting x-ms-docs-grouped-path: - '/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords' '/communications/onlineMeetings/{onlineMeeting-id}/meetingAttendanceReport/attendanceRecords/{attendanceRecord-id}': description: Provides operations to manage the attendanceRecords property of the microsoft.graph.meetingAttendanceReport entity. get: tags: - communications.onlineMeeting summary: Get attendanceRecords from communications description: List of attendance records of an attendance report. Read-only. operationId: communications.onlineMeetings.meetingAttendanceReport.GetAttendanceRecords parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.onlineMeeting summary: Update the navigation property attendanceRecords in communications operationId: communications.onlineMeetings.meetingAttendanceReport.UpdateAttendanceRecords requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.attendanceRecord' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.onlineMeeting summary: Delete navigation property attendanceRecords for communications operationId: communications.onlineMeetings.meetingAttendanceReport.DeleteAttendanceRecords parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: attendanceRecord-id in: path description: The unique identifier of attendanceRecord required: true schema: type: string x-ms-docs-key-type: attendanceRecord x-ms-docs-grouped-path: - '/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}' '/communications/onlineMeetings/{onlineMeeting-id}/meetingAttendanceReport/attendanceRecords/$count': description: Provides operations to count the resources in the collection. get: tags: - communications.onlineMeeting summary: Get the number of the resource operationId: communications.onlineMeetings.meetingAttendanceReport.attendanceRecords.GetCount-da72 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/getVirtualAppointmentJoinWebUrl()': description: Provides operations to call the getVirtualAppointmentJoinWebUrl method. get: tags: - communications.onlineMeeting summary: Invoke function getVirtualAppointmentJoinWebUrl description: 'Get a join web URL for a Teams Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-beta operationId: communications.onlineMeetings.onlineMeeting.getVirtualAppointmentJoinWebUrl responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting x-ms-docs-grouped-path: - '/communications/onlineMeetings(joinWebUrl=''{joinWebUrl}'')/getVirtualAppointmentJoinWebUrl()' '/communications/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentReminderSms': description: Provides operations to call the sendVirtualAppointmentReminderSms method. post: tags: - communications.onlineMeeting summary: Invoke action sendVirtualAppointmentReminderSms description: Send an SMS reminder to external attendees for a Teams Virtual Appointment. This feature requires Teams Premium and attendees must have a valid United States phone number to receive SMS notifications. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-beta operationId: communications.onlineMeetings.onlineMeeting.sendVirtualAppointmentReminderSms requestBody: description: Action parameters content: application/json: schema: type: object properties: remindBeforeTimeInMinutesType: anyOf: - $ref: '#/components/schemas/microsoft.graph.remindBeforeTimeInMinutesType' - type: object nullable: true attendees: type: array items: $ref: '#/components/schemas/microsoft.graph.attendeeNotificationInfo' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting x-ms-docs-grouped-path: - '/communications/onlineMeetings(joinWebUrl=''{joinWebUrl}'')/sendVirtualAppointmentReminderSms' '/communications/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentSms': description: Provides operations to call the sendVirtualAppointmentSms method. post: tags: - communications.onlineMeeting summary: Invoke action sendVirtualAppointmentSms description: 'Send an SMS notification to external attendees when a Teams Virtual Appointment is confirmed, rescheduled, or canceled. This feature requires Teams Premium. Attendees must have a valid United States phone number to receive these SMS notifications.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-beta operationId: communications.onlineMeetings.onlineMeeting.sendVirtualAppointmentSms requestBody: description: Action parameters content: application/json: schema: type: object properties: messageType: anyOf: - $ref: '#/components/schemas/microsoft.graph.virtualAppointmentMessageType' - type: object nullable: true attendees: type: array items: $ref: '#/components/schemas/microsoft.graph.attendeeNotificationInfo' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting x-ms-docs-grouped-path: - '/communications/onlineMeetings(joinWebUrl=''{joinWebUrl}'')/sendVirtualAppointmentSms' '/communications/onlineMeetings/{onlineMeeting-id}/recording': description: Provides operations to manage the media for the cloudCommunications entity. get: tags: - communications.onlineMeeting summary: Get recording for the navigation property onlineMeetings from communications description: The content stream of the recording of a Teams live event. Read-only. operationId: communications.GetOnlineMeetingsRecording 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: - communications.onlineMeeting summary: Update recording for the navigation property onlineMeetings in communications description: The content stream of the recording of a Teams live event. Read-only. operationId: communications.UpdateOnlineMeetingsRecording 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: - communications.onlineMeeting summary: Delete recording for the navigation property onlineMeetings in communications description: The content stream of the recording of a Teams live event. Read-only. operationId: communications.DeleteOnlineMeetingsRecording parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/recordings': description: Provides operations to manage the recordings property of the microsoft.graph.onlineMeeting entity. get: tags: - communications.onlineMeeting summary: Get recordings from communications description: The recordings of an online meeting. Read-only. operationId: communications.onlineMeetings.ListRecordings 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.callRecordingCollectionResponse' 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: - communications.onlineMeeting summary: Create new navigation property to recordings for communications operationId: communications.onlineMeetings.CreateRecordings requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecording' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecording' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}': description: Provides operations to manage the recordings property of the microsoft.graph.onlineMeeting entity. get: tags: - communications.onlineMeeting summary: Get recordings from communications description: The recordings of an online meeting. Read-only. operationId: communications.onlineMeetings.GetRecordings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecording' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.onlineMeeting summary: Update the navigation property recordings in communications operationId: communications.onlineMeetings.UpdateRecordings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecording' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callRecording' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.onlineMeeting summary: Delete navigation property recordings for communications operationId: communications.onlineMeetings.DeleteRecordings parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: callRecording-id in: path description: The unique identifier of callRecording required: true schema: type: string x-ms-docs-key-type: callRecording '/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content': description: Provides operations to manage the media for the cloudCommunications entity. get: tags: - communications.onlineMeeting summary: Get content for the navigation property recordings from communications description: The content of the recording. Read-only. operationId: communications.onlineMeetings.GetRecordingsContent 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: - communications.onlineMeeting summary: Update content for the navigation property recordings in communications description: The content of the recording. Read-only. operationId: communications.onlineMeetings.UpdateRecordingsContent 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.callRecording' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - communications.onlineMeeting summary: Delete content for the navigation property recordings in communications description: The content of the recording. Read-only. operationId: communications.onlineMeetings.DeleteRecordingsContent parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: callRecording-id in: path description: The unique identifier of callRecording required: true schema: type: string x-ms-docs-key-type: callRecording '/communications/onlineMeetings/{onlineMeeting-id}/recordings/$count': description: Provides operations to count the resources in the collection. get: tags: - communications.onlineMeeting summary: Get the number of the resource operationId: communications.onlineMeetings.recordings.GetCount-0fd0 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/recordings/delta()': description: Provides operations to call the delta method. get: tags: - communications.onlineMeeting summary: Invoke function delta operationId: communications.onlineMeetings.onlineMeeting.recordings.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 callRecording type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.callRecording' 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting x-ms-docs-grouped-path: - '/communications/onlineMeetings/{onlineMeeting-id}/transcripts/delta()' '/communications/onlineMeetings/{onlineMeeting-id}/registration': description: Provides operations to manage the registration property of the microsoft.graph.onlineMeeting entity. get: tags: - communications.onlineMeeting summary: Get registration from communications description: The registration that is enabled for an online meeting. One online meeting can only have one registration enabled. operationId: communications.onlineMeetings.GetRegistration parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation patch: tags: - communications.onlineMeeting summary: Update the navigation property registration in communications operationId: communications.onlineMeetings.UpdateRegistration requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistration' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation delete: tags: - communications.onlineMeeting summary: Delete navigation property registration for communications operationId: communications.onlineMeetings.DeleteRegistration parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions': description: Provides operations to manage the customQuestions property of the microsoft.graph.meetingRegistration entity. get: tags: - communications.onlineMeeting summary: Get customQuestions from communications description: Custom registration questions. operationId: communications.onlineMeetings.registration.ListCustomQuestions 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.meetingRegistrationQuestionCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - communications.onlineMeeting summary: Create new navigation property to customQuestions for communications operationId: communications.onlineMeetings.registration.CreateCustomQuestions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrationQuestion' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrationQuestion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}': description: Provides operations to manage the customQuestions property of the microsoft.graph.meetingRegistration entity. get: tags: - communications.onlineMeeting summary: Get customQuestions from communications description: Custom registration questions. operationId: communications.onlineMeetings.registration.GetCustomQuestions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrationQuestion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation patch: tags: - communications.onlineMeeting summary: Update the navigation property customQuestions in communications operationId: communications.onlineMeetings.registration.UpdateCustomQuestions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrationQuestion' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrationQuestion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation delete: tags: - communications.onlineMeeting summary: Delete navigation property customQuestions for communications operationId: communications.onlineMeetings.registration.DeleteCustomQuestions parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: meetingRegistrationQuestion-id in: path description: The unique identifier of meetingRegistrationQuestion required: true schema: type: string x-ms-docs-key-type: meetingRegistrationQuestion '/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/$count': description: Provides operations to count the resources in the collection. get: tags: - communications.onlineMeeting summary: Get the number of the resource operationId: communications.onlineMeetings.registration.customQuestions.GetCount-e434 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' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants': description: Provides operations to manage the registrants property of the microsoft.graph.meetingRegistrationBase entity. get: tags: - communications.onlineMeeting summary: Get registrants from communications description: Registrants of the online meeting. operationId: communications.onlineMeetings.registration.ListRegistrants 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.meetingRegistrantBaseCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - communications.onlineMeeting summary: Create new navigation property to registrants for communications operationId: communications.onlineMeetings.registration.CreateRegistrants requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrantBase' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrantBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrantBase-id}': description: Provides operations to manage the registrants property of the microsoft.graph.meetingRegistrationBase entity. get: tags: - communications.onlineMeeting summary: Get registrants from communications description: Registrants of the online meeting. operationId: communications.onlineMeetings.registration.GetRegistrants parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrantBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation patch: tags: - communications.onlineMeeting summary: Update the navigation property registrants in communications operationId: communications.onlineMeetings.registration.UpdateRegistrants requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrantBase' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.meetingRegistrantBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation delete: tags: - communications.onlineMeeting summary: Delete navigation property registrants for communications operationId: communications.onlineMeetings.registration.DeleteRegistrants parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: meetingRegistrantBase-id in: path description: The unique identifier of meetingRegistrantBase required: true schema: type: string x-ms-docs-key-type: meetingRegistrantBase '/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants/$count': description: Provides operations to count the resources in the collection. get: tags: - communications.onlineMeeting summary: Get the number of the resource operationId: communications.onlineMeetings.registration.registrants.GetCount-2127 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' deprecated: true x-ms-deprecation: removalDate: '2024-12-12' date: '2024-04-01' version: 2024-04/meetingRegistrationDeprecation description: 'The meetingRegistrationBase Entity is deprecated and will stop returning data on Dec 12th, 2024. Please use the new webinar APIs.' parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/transcripts': description: Provides operations to manage the transcripts property of the microsoft.graph.onlineMeeting entity. get: tags: - communications.onlineMeeting summary: Get transcripts from communications description: The transcripts of an online meeting. Read-only. operationId: communications.onlineMeetings.ListTranscripts 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.callTranscriptCollectionResponse' 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: - communications.onlineMeeting summary: Create new navigation property to transcripts for communications operationId: communications.onlineMeetings.CreateTranscripts requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callTranscript' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callTranscript' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}': description: Provides operations to manage the transcripts property of the microsoft.graph.onlineMeeting entity. get: tags: - communications.onlineMeeting summary: Get transcripts from communications description: The transcripts of an online meeting. Read-only. operationId: communications.onlineMeetings.GetTranscripts parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callTranscript' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.onlineMeeting summary: Update the navigation property transcripts in communications operationId: communications.onlineMeetings.UpdateTranscripts requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callTranscript' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callTranscript' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.onlineMeeting summary: Delete navigation property transcripts for communications operationId: communications.onlineMeetings.DeleteTranscripts parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: callTranscript-id in: path description: The unique identifier of callTranscript required: true schema: type: string x-ms-docs-key-type: callTranscript '/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content': description: Provides operations to manage the media for the cloudCommunications entity. get: tags: - communications.onlineMeeting summary: Get content for the navigation property transcripts from communications description: The content of the transcript. Read-only. operationId: communications.onlineMeetings.GetTranscriptsContent 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: - communications.onlineMeeting summary: Update content for the navigation property transcripts in communications description: The content of the transcript. Read-only. operationId: communications.onlineMeetings.UpdateTranscriptsContent 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.callTranscript' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' delete: tags: - communications.onlineMeeting summary: Delete content for the navigation property transcripts in communications description: The content of the transcript. Read-only. operationId: communications.onlineMeetings.DeleteTranscriptsContent parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: callTranscript-id in: path description: The unique identifier of callTranscript required: true schema: type: string x-ms-docs-key-type: callTranscript '/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent': description: Provides operations to manage the media for the cloudCommunications entity. get: tags: - communications.onlineMeeting summary: Get metadataContent for the navigation property transcripts from communications description: The time-aligned metadata of the utterances in the transcript. Read-only. operationId: communications.onlineMeetings.GetTranscriptsMetadataContent 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: - communications.onlineMeeting summary: Update metadataContent for the navigation property transcripts in communications description: The time-aligned metadata of the utterances in the transcript. Read-only. operationId: communications.onlineMeetings.UpdateTranscriptsMetadataContent 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: - communications.onlineMeeting summary: Delete metadataContent for the navigation property transcripts in communications description: The time-aligned metadata of the utterances in the transcript. Read-only. operationId: communications.onlineMeetings.DeleteTranscriptsMetadataContent parameters: - 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting - name: callTranscript-id in: path description: The unique identifier of callTranscript required: true schema: type: string x-ms-docs-key-type: callTranscript '/communications/onlineMeetings/{onlineMeeting-id}/transcripts/$count': description: Provides operations to count the resources in the collection. get: tags: - communications.onlineMeeting summary: Get the number of the resource operationId: communications.onlineMeetings.transcripts.GetCount-7670 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting '/communications/onlineMeetings/{onlineMeeting-id}/transcripts/delta()': description: Provides operations to call the delta method. get: tags: - communications.onlineMeeting summary: Invoke function delta operationId: communications.onlineMeetings.onlineMeeting.transcripts.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 callTranscript type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.callTranscript' 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: onlineMeeting-id in: path description: The unique identifier of onlineMeeting required: true schema: type: string x-ms-docs-key-type: onlineMeeting x-ms-docs-grouped-path: - '/communications/onlineMeetings/{onlineMeeting-id}/recordings/delta()' '/communications/onlineMeetings(joinWebUrl=''{joinWebUrl}'')': description: Provides operations to manage the onlineMeetings property of the microsoft.graph.cloudCommunications entity. get: tags: - communications.onlineMeeting summary: Get onlineMeetings from communications operationId: communications.onlineMeetings.GetByJoinWebUrl parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onlineMeeting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.onlineMeeting summary: Update the navigation property onlineMeetings in communications operationId: communications.onlineMeetings.UpdateByJoinWebUrl requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onlineMeeting' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onlineMeeting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.onlineMeeting summary: Delete navigation property onlineMeetings for communications operationId: communications.onlineMeetings.DeleteByJoinWebUrl parameters: - 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: joinWebUrl in: path description: Alternate key of onlineMeeting required: true schema: type: string nullable: true x-ms-docs-grouped-path: - '/communications/onlineMeetings/{onlineMeeting-id}' '/communications/onlineMeetings(joinWebUrl=''{joinWebUrl}'')/getVirtualAppointmentJoinWebUrl()': description: Provides operations to call the getVirtualAppointmentJoinWebUrl method. get: tags: - communications.onlineMeeting summary: Invoke function getVirtualAppointmentJoinWebUrl description: 'Get a join web URL for a Teams Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-beta operationId: communications.onlineMeetings.joinWebUrl.getVirtualAppointmentJoinWebUrl responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: joinWebUrl in: path description: Alternate key of onlineMeeting required: true schema: type: string nullable: true x-ms-docs-grouped-path: - '/communications/onlineMeetings/{onlineMeeting-id}/getVirtualAppointmentJoinWebUrl()' '/communications/onlineMeetings(joinWebUrl=''{joinWebUrl}'')/sendVirtualAppointmentReminderSms': description: Provides operations to call the sendVirtualAppointmentReminderSms method. post: tags: - communications.onlineMeeting summary: Invoke action sendVirtualAppointmentReminderSms description: Send an SMS reminder to external attendees for a Teams Virtual Appointment. This feature requires Teams Premium and attendees must have a valid United States phone number to receive SMS notifications. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-beta operationId: communications.onlineMeetings.joinWebUrl.sendVirtualAppointmentReminderSms requestBody: description: Action parameters content: application/json: schema: type: object properties: remindBeforeTimeInMinutesType: anyOf: - $ref: '#/components/schemas/microsoft.graph.remindBeforeTimeInMinutesType' - type: object nullable: true attendees: type: array items: $ref: '#/components/schemas/microsoft.graph.attendeeNotificationInfo' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: joinWebUrl in: path description: Alternate key of onlineMeeting required: true schema: type: string nullable: true x-ms-docs-grouped-path: - '/communications/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentReminderSms' '/communications/onlineMeetings(joinWebUrl=''{joinWebUrl}'')/sendVirtualAppointmentSms': description: Provides operations to call the sendVirtualAppointmentSms method. post: tags: - communications.onlineMeeting summary: Invoke action sendVirtualAppointmentSms description: 'Send an SMS notification to external attendees when a Teams Virtual Appointment is confirmed, rescheduled, or canceled. This feature requires Teams Premium. Attendees must have a valid United States phone number to receive these SMS notifications.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-beta operationId: communications.onlineMeetings.joinWebUrl.sendVirtualAppointmentSms requestBody: description: Action parameters content: application/json: schema: type: object properties: messageType: anyOf: - $ref: '#/components/schemas/microsoft.graph.virtualAppointmentMessageType' - type: object nullable: true attendees: type: array items: $ref: '#/components/schemas/microsoft.graph.attendeeNotificationInfo' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: joinWebUrl in: path description: Alternate key of onlineMeeting required: true schema: type: string nullable: true x-ms-docs-grouped-path: - '/communications/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentSms' /communications/onlineMeetings/$count: description: Provides operations to count the resources in the collection. get: tags: - communications.onlineMeeting summary: Get the number of the resource operationId: communications.onlineMeetings.GetCount-91a5 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' /communications/onlineMeetings/createOrGet: description: Provides operations to call the createOrGet method. post: tags: - communications.onlineMeeting summary: Invoke action createOrGet description: 'Create an onlineMeeting object with a custom specified external ID. If the external ID already exists, this API will return the onlineMeeting object with that external ID. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-beta operationId: communications.onlineMeetings.createOrGet requestBody: description: Action parameters content: application/json: schema: type: object properties: chatInfo: anyOf: - $ref: '#/components/schemas/microsoft.graph.chatInfo' - type: object 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 externalId: type: string participants: anyOf: - $ref: '#/components/schemas/microsoft.graph.meetingParticipants' - type: object 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 subject: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.onlineMeeting' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action '/communications/onlineMeetings/getAllRecordings(meetingOrganizerUserId=''@meetingOrganizerUserId'',startDateTime=@startDateTime,endDateTime=@endDateTime)': description: Provides operations to call the getAllRecordings method. get: tags: - communications.onlineMeeting summary: Invoke function getAllRecordings description: 'Get all recordings from scheduled onlineMeeting instances for which the specified user is the organizer. This API currently doesn''t support getting call recordings from channel meetings. You can apply the delta function on getAllRecordings to synchronize and get callRecording resources as they''re added for onlineMeeting instances organized by the specified user. The delta query supports both full synchronization and incremental synchronization. Full synchronization gets all the recordings for online meetings organized by the user. Incremental synchronization gets recordings that are added since the last synchronization. Typically, you do an initial full synchronization, and then get incremental changes to that recording view periodically. Find more information in the delta query documentation. For more examples, see callRecording: delta. To learn more about using 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/onlinemeeting-getallrecordings?view=graph-rest-beta operationId: communications.onlineMeetings.getAllRecordings 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 callRecording type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.callRecording' 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: meetingOrganizerUserId in: query description: 'Usage: meetingOrganizerUserId=''@meetingOrganizerUserId''' schema: type: string nullable: true - name: startDateTime in: query description: 'Usage: startDateTime=@startDateTime' schema: 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 - name: endDateTime in: query description: 'Usage: endDateTime=@endDateTime' schema: 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 '/communications/onlineMeetings/getAllTranscripts(meetingOrganizerUserId=''@meetingOrganizerUserId'',startDateTime=@startDateTime,endDateTime=@endDateTime)': description: Provides operations to call the getAllTranscripts method. get: tags: - communications.onlineMeeting summary: Invoke function getAllTranscripts description: 'Get all transcripts from scheduled onlineMeeting instances for which the specified user is the organizer. This API currently doesn''t support getting call transcripts from channel meetings. You can apply the delta function on getAllTranscripts to synchronize and get callTranscript resources as they''re added for onlineMeeting instances organized by the specified user. Delta query supports both full synchronization and incremental synchronization. Full synchronization gets all the transcripts for online meetings organized by the user. Incremental synchronization gets transcripts that are added since the last synchronization. Typically, you do an initial full synchronization, and then get incremental changes to that recording view periodically. For more information, see delta query. For more examples, see callTranscript: delta. To learn more about using 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/onlinemeeting-getalltranscripts?view=graph-rest-beta operationId: communications.onlineMeetings.getAllTranscripts 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 callTranscript type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.callTranscript' 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: meetingOrganizerUserId in: query description: 'Usage: meetingOrganizerUserId=''@meetingOrganizerUserId''' schema: type: string nullable: true - name: startDateTime in: query description: 'Usage: startDateTime=@startDateTime' schema: 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 - name: endDateTime in: query description: 'Usage: endDateTime=@endDateTime' schema: 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 /communications/presences: description: Provides operations to manage the presences property of the microsoft.graph.cloudCommunications entity. get: tags: - communications.presence summary: Get presence description: Get a user's presence information. operationId: communications.ListPresences 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.presenceCollectionResponse' 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: - communications.presence summary: Create new navigation property to presences for communications operationId: communications.CreatePresences requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.presence' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.presence' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/communications/presences/{presence-id}': description: Provides operations to manage the presences property of the microsoft.graph.cloudCommunications entity. get: tags: - communications.presence summary: Get presence description: Get a user's presence information. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/presence-get?view=graph-rest-beta operationId: communications.GetPresences parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.presence' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - communications.presence summary: Update the navigation property presences in communications operationId: communications.UpdatePresences requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.presence' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.presence' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - communications.presence summary: Delete navigation property presences for communications operationId: communications.DeletePresences parameters: - 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: presence-id in: path description: The unique identifier of presence required: true schema: type: string x-ms-docs-key-type: presence '/communications/presences/{presence-id}/clearPresence': description: Provides operations to call the clearPresence method. post: tags: - communications.presence summary: Invoke action clearPresence description: 'Clear a presence session of an application for a user. If it is the user''s only presence session, a successful clearPresence changes the user''s presence to Offline/Offline. Read more about presence sessions and their time-out and expiration. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-beta operationId: communications.presences.presence.clearPresence requestBody: description: Action parameters content: application/json: schema: type: object properties: sessionId: 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: presence-id in: path description: The unique identifier of presence required: true schema: type: string x-ms-docs-key-type: presence '/communications/presences/{presence-id}/clearUserPreferredPresence': description: Provides operations to call the clearUserPreferredPresence method. post: tags: - communications.presence summary: Invoke action clearUserPreferredPresence description: Clear the preferred availability and activity status for a user. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-beta operationId: communications.presences.presence.clearUserPreferredPresence responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: presence-id in: path description: The unique identifier of presence required: true schema: type: string x-ms-docs-key-type: presence '/communications/presences/{presence-id}/setPresence': description: Provides operations to call the setPresence method. post: tags: - communications.presence summary: Invoke action setPresence description: Set the availability and activity status in a presence session of an application for a user. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-beta operationId: communications.presences.presence.setPresence requestBody: description: Action parameters content: application/json: schema: type: object properties: sessionId: type: string nullable: true availability: type: string activity: type: string expirationDuration: pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string format: duration 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: presence-id in: path description: The unique identifier of presence required: true schema: type: string x-ms-docs-key-type: presence '/communications/presences/{presence-id}/setStatusMessage': description: Provides operations to call the setStatusMessage method. post: tags: - communications.presence summary: Invoke action setStatusMessage description: Set a presence status message for a user. An optional expiration date and time can be supplied. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-beta operationId: communications.presences.presence.setStatusMessage requestBody: description: Action parameters content: application/json: schema: type: object properties: statusMessage: anyOf: - $ref: '#/components/schemas/microsoft.graph.presenceStatusMessage' - 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: presence-id in: path description: The unique identifier of presence required: true schema: type: string x-ms-docs-key-type: presence '/communications/presences/{presence-id}/setUserPreferredPresence': description: Provides operations to call the setUserPreferredPresence method. post: tags: - communications.presence summary: Invoke action setUserPreferredPresence description: 'Set the preferred availability and activity status for a user. If the preferred presence of a user is set, the user''s presence is the preferred presence. Preferred presence takes effect only when there is at least one presence session of the user. Otherwise, the user''s presence stays as Offline. A presence session can be created as a result of a successful setPresence operation, or if the user is signed in on a Teams client. Read more about presence sessions and their time-out and expiration. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-beta operationId: communications.presences.presence.setUserPreferredPresence requestBody: description: Action parameters content: application/json: schema: type: object properties: availability: type: string activity: type: string expirationDuration: pattern: '^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$' type: string format: duration 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: presence-id in: path description: The unique identifier of presence required: true schema: type: string x-ms-docs-key-type: presence /communications/presences/$count: description: Provides operations to count the resources in the collection. get: tags: - communications.presence summary: Get the number of the resource operationId: communications.presences.GetCount-e4ed 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' /compliance: description: Provides operations to manage the compliance singleton. get: tags: - compliance.compliance summary: Get compliance operationId: compliance.compliance.GetCompliance parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.compliance' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - compliance.compliance summary: Update compliance operationId: compliance.compliance.UpdateCompliance requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.compliance' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.compliance' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation /compliance/ediscovery: description: Provides operations to manage the ediscovery property of the microsoft.graph.compliance entity. get: tags: - compliance.ediscoveryroot summary: Get ediscovery from compliance operationId: compliance.GetEdiscovery parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.ediscoveryroot' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update the navigation property ediscovery in compliance operationId: compliance.UpdateEdiscovery requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.ediscoveryroot' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.ediscoveryroot' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete navigation property ediscovery for compliance operationId: compliance.DeleteEdiscovery parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation /compliance/ediscovery/cases: description: Provides operations to manage the cases property of the microsoft.graph.ediscovery.ediscoveryroot entity. get: tags: - compliance.ediscoveryroot summary: List cases description: Retrieve a list of case objects. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-case-list?view=graph-rest-beta operationId: compliance.ediscovery.ListCases 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.ediscovery.caseCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - compliance.ediscoveryroot summary: Create case description: Create a new case object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-case-post?view=graph-rest-beta operationId: compliance.ediscovery.CreateCases requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.case' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.case' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation '/compliance/ediscovery/cases/{case-id}': description: Provides operations to manage the cases property of the microsoft.graph.ediscovery.ediscoveryroot entity. get: tags: - compliance.ediscoveryroot summary: Get case description: Retrieve the properties and relationships of a case object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-case-get?view=graph-rest-beta operationId: compliance.ediscovery.GetCases parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.case' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update case description: Update the properties of a case object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-case-update?view=graph-rest-beta operationId: compliance.ediscovery.UpdateCases requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.case' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.case' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete case description: Delete a case object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-case-delete?view=graph-rest-beta operationId: compliance.ediscovery.DeleteCases parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/custodians': description: Provides operations to manage the custodians property of the microsoft.graph.ediscovery.case entity. get: tags: - compliance.ediscoveryroot summary: List custodians description: Get a list of the custodian objects and their properties. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-case-list-custodians?view=graph-rest-beta operationId: compliance.ediscovery.cases.ListCustodians 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.ediscovery.custodianCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - compliance.ediscoveryroot summary: Create custodian description: 'Create a new custodian object. After the custodian object is created, you will need to create the custodian''s userSource to reference their mailbox and OneDrive for Business site.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-case-post-custodians?view=graph-rest-beta operationId: compliance.ediscovery.cases.CreateCustodians requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.custodian' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.custodian' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}': description: Provides operations to manage the custodians property of the microsoft.graph.ediscovery.case entity. get: tags: - compliance.ediscoveryroot summary: Get custodian description: Read the properties and relationships of a custodian object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-custodian-get?view=graph-rest-beta operationId: compliance.ediscovery.cases.GetCustodians parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.custodian' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update custodian description: Update the properties of a custodian object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-custodian-update?view=graph-rest-beta operationId: compliance.ediscovery.cases.UpdateCustodians requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.custodian' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.custodian' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete navigation property custodians for compliance operationId: compliance.ediscovery.cases.DeleteCustodians parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/lastIndexOperation': description: Provides operations to manage the lastIndexOperation property of the microsoft.graph.ediscovery.dataSourceContainer entity. get: tags: - compliance.ediscoveryroot summary: Get lastIndexOperation from compliance operationId: compliance.ediscovery.cases.custodians.GetLastIndexOperation parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.caseIndexOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian x-ms-docs-grouped-path: - '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/lastIndexOperation' '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/microsoft.graph.ediscovery.activate': description: Provides operations to call the activate method. post: tags: - compliance.ediscoveryroot summary: Invoke action activate description: 'Activate a custodian that was released from a case. This method makes the custodian part of the case again. For details, see Manage custodians in an Advanced eDiscovery case.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-custodian-activate?view=graph-rest-beta operationId: compliance.ediscovery.cases.case.custodians.custodian.activate responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/microsoft.graph.ediscovery.applyHold': description: Provides operations to call the applyHold method. post: tags: - compliance.ediscoveryroot summary: Invoke action applyHold operationId: compliance.ediscovery.cases.case.custodians.custodian.applyHold responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian x-ms-docs-grouped-path: - '/compliance/ediscovery/cases/{case-id}/custodians/microsoft.graph.ediscovery.applyHold' - '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.applyHold' - '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/microsoft.graph.ediscovery.applyHold' '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/microsoft.graph.ediscovery.release': description: Provides operations to call the release method. post: tags: - compliance.ediscoveryroot summary: Invoke action release description: 'Release a custodian from a case. For details, see Release a custodian from a case.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-custodian-release?view=graph-rest-beta operationId: compliance.ediscovery.cases.case.custodians.custodian.release responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian x-ms-docs-grouped-path: - '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.release' '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/microsoft.graph.ediscovery.removeHold': description: Provides operations to call the removeHold method. post: tags: - compliance.ediscoveryroot summary: Invoke action removeHold operationId: compliance.ediscovery.cases.case.custodians.custodian.removeHold responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian x-ms-docs-grouped-path: - '/compliance/ediscovery/cases/{case-id}/custodians/microsoft.graph.ediscovery.removeHold' - '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.removeHold' - '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/microsoft.graph.ediscovery.removeHold' '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/microsoft.graph.ediscovery.updateIndex': description: Provides operations to call the updateIndex method. post: tags: - compliance.ediscoveryroot summary: Invoke action updateIndex operationId: compliance.ediscovery.cases.case.custodians.custodian.updateIndex responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian x-ms-docs-grouped-path: - '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.updateIndex' '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources': description: Provides operations to manage the siteSources property of the microsoft.graph.ediscovery.custodian entity. get: tags: - compliance.ediscoveryroot summary: List custodian siteSources description: Get a list of siteSource objects and their properties. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-custodian-list-sitesources?view=graph-rest-beta operationId: compliance.ediscovery.cases.custodians.ListSiteSources 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.ediscovery.siteSourceCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - compliance.ediscoveryroot summary: Create custodian siteSource description: Create a new custodian siteSource object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-custodian-post-sitesources?view=graph-rest-beta operationId: compliance.ediscovery.cases.custodians.CreateSiteSources requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.siteSource' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.siteSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}': description: Provides operations to manage the siteSources property of the microsoft.graph.ediscovery.custodian entity. get: tags: - compliance.ediscoveryroot summary: Get siteSource description: Read the properties and relationships of a siteSource object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-sitesource-get?view=graph-rest-beta operationId: compliance.ediscovery.cases.custodians.GetSiteSources parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.siteSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update the navigation property siteSources in compliance operationId: compliance.ediscovery.cases.custodians.UpdateSiteSources requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.siteSource' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.siteSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete siteSource description: Delete a siteSource object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-sitesource-delete?view=graph-rest-beta operationId: compliance.ediscovery.cases.custodians.DeleteSiteSources parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian - name: siteSource-id in: path description: The unique identifier of siteSource required: true schema: type: string x-ms-docs-key-type: siteSource '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}/site': description: Provides operations to manage the site property of the microsoft.graph.ediscovery.siteSource entity. get: tags: - compliance.ediscoveryroot summary: Get site from compliance description: The SharePoint site associated with the siteSource. operationId: compliance.ediscovery.cases.custodians.siteSources.GetSite parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian - name: siteSource-id in: path description: The unique identifier of siteSource required: true schema: type: string x-ms-docs-key-type: siteSource x-ms-docs-grouped-path: - '/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}/site' '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.custodians.siteSources.GetCount-2d5a 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources': description: Provides operations to manage the unifiedGroupSources property of the microsoft.graph.ediscovery.custodian entity. get: tags: - compliance.ediscoveryroot summary: List unifiedGroupSources description: Get a list of the unifiedGroupSource objects and their properties. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-custodian-list-unifiedgroupsources?view=graph-rest-beta operationId: compliance.ediscovery.cases.custodians.ListUnifiedGroupSources 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.ediscovery.unifiedGroupSourceCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - compliance.ediscoveryroot summary: Create unifiedGroupSource description: Create a new unifiedGroupSource object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-custodian-post-unifiedgroupsources?view=graph-rest-beta operationId: compliance.ediscovery.cases.custodians.CreateUnifiedGroupSources requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.unifiedGroupSource' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.unifiedGroupSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}': description: Provides operations to manage the unifiedGroupSources property of the microsoft.graph.ediscovery.custodian entity. get: tags: - compliance.ediscoveryroot summary: Get unifiedGroupSource description: Read the properties and relationships of a unifiedGroupSource object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-unifiedgroupsource-get?view=graph-rest-beta operationId: compliance.ediscovery.cases.custodians.GetUnifiedGroupSources parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.unifiedGroupSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update the navigation property unifiedGroupSources in compliance operationId: compliance.ediscovery.cases.custodians.UpdateUnifiedGroupSources requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.unifiedGroupSource' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.unifiedGroupSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete unifiedGroupSource description: Delete a unifiedGroupSource object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-unifiedgroupsource-delete?view=graph-rest-beta operationId: compliance.ediscovery.cases.custodians.DeleteUnifiedGroupSources parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian - name: unifiedGroupSource-id in: path description: The unique identifier of unifiedGroupSource required: true schema: type: string x-ms-docs-key-type: unifiedGroupSource '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group': description: Provides operations to manage the group property of the microsoft.graph.ediscovery.unifiedGroupSource entity. get: tags: - compliance.ediscoveryroot summary: Get group from compliance description: The group associated with the unifiedGroupSource. operationId: compliance.ediscovery.cases.custodians.unifiedGroupSources.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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian - name: unifiedGroupSource-id in: path description: The unique identifier of unifiedGroupSource required: true schema: type: string x-ms-docs-key-type: unifiedGroupSource x-ms-docs-grouped-path: - '/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group' '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors': get: tags: - compliance.ediscoveryroot summary: Get serviceProvisioningErrors property value description: 'Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object.' operationId: compliance.ediscovery.cases.custodians.unifiedGroupSources.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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian - name: unifiedGroupSource-id in: path description: The unique identifier of unifiedGroupSource required: true schema: type: string x-ms-docs-key-type: unifiedGroupSource '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.custodians.unifiedGroupSources.group.ServiceProvisioningErrors.GetCount-f8cc 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian - name: unifiedGroupSource-id in: path description: The unique identifier of unifiedGroupSource required: true schema: type: string x-ms-docs-key-type: unifiedGroupSource '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.custodians.unifiedGroupSources.GetCount-ab0c 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources': description: Provides operations to manage the userSources property of the microsoft.graph.ediscovery.custodian entity. get: tags: - compliance.ediscoveryroot summary: List custodian userSources description: Get a list of the userSource objects and their properties. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-custodian-list-usersources?view=graph-rest-beta operationId: compliance.ediscovery.cases.custodians.ListUserSources 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.ediscovery.userSourceCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - compliance.ediscoveryroot summary: Create custodian userSource description: Create a new custodian userSource object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-custodian-post-usersources?view=graph-rest-beta operationId: compliance.ediscovery.cases.custodians.CreateUserSources requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.userSource' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.userSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources/{userSource-id}': description: Provides operations to manage the userSources property of the microsoft.graph.ediscovery.custodian entity. get: tags: - compliance.ediscoveryroot summary: Get userSource description: Read the properties and relationships of a userSource object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-usersource-get?view=graph-rest-beta operationId: compliance.ediscovery.cases.custodians.GetUserSources parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.userSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update the navigation property userSources in compliance operationId: compliance.ediscovery.cases.custodians.UpdateUserSources requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.userSource' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.userSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete userSource description: Delete a userSource object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-usersource-delete?view=graph-rest-beta operationId: compliance.ediscovery.cases.custodians.DeleteUserSources parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian - name: userSource-id in: path description: The unique identifier of userSource required: true schema: type: string x-ms-docs-key-type: userSource '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.custodians.userSources.GetCount-cf4a 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: custodian-id in: path description: The unique identifier of custodian required: true schema: type: string x-ms-docs-key-type: custodian '/compliance/ediscovery/cases/{case-id}/custodians/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.custodians.GetCount-20b7 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/custodians/microsoft.graph.ediscovery.applyHold': description: Provides operations to call the applyHold method. post: tags: - compliance.ediscoveryroot summary: Invoke action applyHold operationId: compliance.ediscovery.cases.case.custodians.applyHold requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case x-ms-docs-grouped-path: - '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/microsoft.graph.ediscovery.applyHold' - '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.applyHold' - '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/microsoft.graph.ediscovery.applyHold' '/compliance/ediscovery/cases/{case-id}/custodians/microsoft.graph.ediscovery.removeHold': description: Provides operations to call the removeHold method. post: tags: - compliance.ediscoveryroot summary: Invoke action removeHold operationId: compliance.ediscovery.cases.case.custodians.removeHold requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case x-ms-docs-grouped-path: - '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/microsoft.graph.ediscovery.removeHold' - '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.removeHold' - '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/microsoft.graph.ediscovery.removeHold' '/compliance/ediscovery/cases/{case-id}/legalHolds': description: Provides operations to manage the legalHolds property of the microsoft.graph.ediscovery.case entity. get: tags: - compliance.ediscoveryroot summary: Get legalHold description: Read the properties and relationships of a legalHold object. operationId: compliance.ediscovery.cases.ListLegalHolds 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.ediscovery.legalHoldCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - compliance.ediscoveryroot summary: Create new navigation property to legalHolds for compliance operationId: compliance.ediscovery.cases.CreateLegalHolds requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.legalHold' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.legalHold' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}': description: Provides operations to manage the legalHolds property of the microsoft.graph.ediscovery.case entity. get: tags: - compliance.ediscoveryroot summary: Get legalHold description: Read the properties and relationships of a legalHold object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-legalhold-get?view=graph-rest-beta operationId: compliance.ediscovery.cases.GetLegalHolds parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.legalHold' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update legalHold description: Update the properties of a legalHold object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-legalhold-update?view=graph-rest-beta operationId: compliance.ediscovery.cases.UpdateLegalHolds requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.legalHold' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.legalHold' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete legalHold description: Delete a legalHold object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-legalhold-delete?view=graph-rest-beta operationId: compliance.ediscovery.cases.DeleteLegalHolds parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: legalHold-id in: path description: The unique identifier of legalHold required: true schema: type: string x-ms-docs-key-type: legalHold '/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources': description: Provides operations to manage the siteSources property of the microsoft.graph.ediscovery.legalHold entity. get: tags: - compliance.ediscoveryroot summary: List legalHold siteSources description: Get the list of siteSource objecs associated with a legal hold. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-legalhold-list-sitesources?view=graph-rest-beta operationId: compliance.ediscovery.cases.legalHolds.ListSiteSources 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.ediscovery.siteSourceCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - compliance.ediscoveryroot summary: Create legalHold siteSource description: Adds a siteSource to a legalHold object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-legalhold-post-sitesources?view=graph-rest-beta operationId: compliance.ediscovery.cases.legalHolds.CreateSiteSources requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.siteSource' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.siteSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: legalHold-id in: path description: The unique identifier of legalHold required: true schema: type: string x-ms-docs-key-type: legalHold '/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}': description: Provides operations to manage the siteSources property of the microsoft.graph.ediscovery.legalHold entity. get: tags: - compliance.ediscoveryroot summary: Get siteSources from compliance description: Data source entity for SharePoint sites associated with the legal hold. operationId: compliance.ediscovery.cases.legalHolds.GetSiteSources parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.siteSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update the navigation property siteSources in compliance operationId: compliance.ediscovery.cases.legalHolds.UpdateSiteSources requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.siteSource' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.siteSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete navigation property siteSources for compliance operationId: compliance.ediscovery.cases.legalHolds.DeleteSiteSources parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: legalHold-id in: path description: The unique identifier of legalHold required: true schema: type: string x-ms-docs-key-type: legalHold - name: siteSource-id in: path description: The unique identifier of siteSource required: true schema: type: string x-ms-docs-key-type: siteSource '/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}/site': description: Provides operations to manage the site property of the microsoft.graph.ediscovery.siteSource entity. get: tags: - compliance.ediscoveryroot summary: Get site from compliance description: The SharePoint site associated with the siteSource. operationId: compliance.ediscovery.cases.legalHolds.siteSources.GetSite parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: legalHold-id in: path description: The unique identifier of legalHold required: true schema: type: string x-ms-docs-key-type: legalHold - name: siteSource-id in: path description: The unique identifier of siteSource required: true schema: type: string x-ms-docs-key-type: siteSource x-ms-docs-grouped-path: - '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}/site' '/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.legalHolds.siteSources.GetCount-17cd 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: legalHold-id in: path description: The unique identifier of legalHold required: true schema: type: string x-ms-docs-key-type: legalHold '/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources': description: Provides operations to manage the unifiedGroupSources property of the microsoft.graph.ediscovery.legalHold entity. get: tags: - compliance.ediscoveryroot summary: Get unifiedGroupSources from compliance operationId: compliance.ediscovery.cases.legalHolds.ListUnifiedGroupSources 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.ediscovery.unifiedGroupSourceCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - compliance.ediscoveryroot summary: Create new navigation property to unifiedGroupSources for compliance operationId: compliance.ediscovery.cases.legalHolds.CreateUnifiedGroupSources requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.unifiedGroupSource' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.unifiedGroupSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: legalHold-id in: path description: The unique identifier of legalHold required: true schema: type: string x-ms-docs-key-type: legalHold '/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}': description: Provides operations to manage the unifiedGroupSources property of the microsoft.graph.ediscovery.legalHold entity. get: tags: - compliance.ediscoveryroot summary: Get unifiedGroupSources from compliance operationId: compliance.ediscovery.cases.legalHolds.GetUnifiedGroupSources parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.unifiedGroupSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update the navigation property unifiedGroupSources in compliance operationId: compliance.ediscovery.cases.legalHolds.UpdateUnifiedGroupSources requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.unifiedGroupSource' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.unifiedGroupSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete navigation property unifiedGroupSources for compliance operationId: compliance.ediscovery.cases.legalHolds.DeleteUnifiedGroupSources parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: legalHold-id in: path description: The unique identifier of legalHold required: true schema: type: string x-ms-docs-key-type: legalHold - name: unifiedGroupSource-id in: path description: The unique identifier of unifiedGroupSource required: true schema: type: string x-ms-docs-key-type: unifiedGroupSource '/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group': description: Provides operations to manage the group property of the microsoft.graph.ediscovery.unifiedGroupSource entity. get: tags: - compliance.ediscoveryroot summary: Get group from compliance description: The group associated with the unifiedGroupSource. operationId: compliance.ediscovery.cases.legalHolds.unifiedGroupSources.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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: legalHold-id in: path description: The unique identifier of legalHold required: true schema: type: string x-ms-docs-key-type: legalHold - name: unifiedGroupSource-id in: path description: The unique identifier of unifiedGroupSource required: true schema: type: string x-ms-docs-key-type: unifiedGroupSource x-ms-docs-grouped-path: - '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group' '/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors': get: tags: - compliance.ediscoveryroot summary: Get serviceProvisioningErrors property value description: 'Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from a group object.' operationId: compliance.ediscovery.cases.legalHolds.unifiedGroupSources.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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: legalHold-id in: path description: The unique identifier of legalHold required: true schema: type: string x-ms-docs-key-type: legalHold - name: unifiedGroupSource-id in: path description: The unique identifier of unifiedGroupSource required: true schema: type: string x-ms-docs-key-type: unifiedGroupSource '/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.legalHolds.unifiedGroupSources.group.ServiceProvisioningErrors.GetCount-aba8 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: legalHold-id in: path description: The unique identifier of legalHold required: true schema: type: string x-ms-docs-key-type: legalHold - name: unifiedGroupSource-id in: path description: The unique identifier of unifiedGroupSource required: true schema: type: string x-ms-docs-key-type: unifiedGroupSource '/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.legalHolds.unifiedGroupSources.GetCount-d1d4 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: legalHold-id in: path description: The unique identifier of legalHold required: true schema: type: string x-ms-docs-key-type: legalHold '/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources': description: Provides operations to manage the userSources property of the microsoft.graph.ediscovery.legalHold entity. get: tags: - compliance.ediscoveryroot summary: List legalHold userSources description: Get the list of userSource objects associated with a legal hold. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-legalhold-list-usersources?view=graph-rest-beta operationId: compliance.ediscovery.cases.legalHolds.ListUserSources 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.ediscovery.userSourceCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - compliance.ediscoveryroot summary: Create legalHold userSource description: Adds a userSource to a legalHold object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-legalhold-post-usersources?view=graph-rest-beta operationId: compliance.ediscovery.cases.legalHolds.CreateUserSources requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.userSource' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.userSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: legalHold-id in: path description: The unique identifier of legalHold required: true schema: type: string x-ms-docs-key-type: legalHold '/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources/{userSource-id}': description: Provides operations to manage the userSources property of the microsoft.graph.ediscovery.legalHold entity. get: tags: - compliance.ediscoveryroot summary: Get userSources from compliance description: Data source entity for a the legal hold. This is the container for a mailbox and OneDrive for Business site. operationId: compliance.ediscovery.cases.legalHolds.GetUserSources parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.userSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update the navigation property userSources in compliance operationId: compliance.ediscovery.cases.legalHolds.UpdateUserSources requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.userSource' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.userSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete navigation property userSources for compliance operationId: compliance.ediscovery.cases.legalHolds.DeleteUserSources parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: legalHold-id in: path description: The unique identifier of legalHold required: true schema: type: string x-ms-docs-key-type: legalHold - name: userSource-id in: path description: The unique identifier of userSource required: true schema: type: string x-ms-docs-key-type: userSource '/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.legalHolds.userSources.GetCount-9724 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: legalHold-id in: path description: The unique identifier of legalHold required: true schema: type: string x-ms-docs-key-type: legalHold '/compliance/ediscovery/cases/{case-id}/legalHolds/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.legalHolds.GetCount-fd1f 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/microsoft.graph.ediscovery.close': description: Provides operations to call the close method. post: tags: - compliance.ediscoveryroot summary: Invoke action close description: 'Close an eDiscovery case. For details, see Close a case.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-case-close?view=graph-rest-beta operationId: compliance.ediscovery.cases.case.close responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/microsoft.graph.ediscovery.reopen': description: Provides operations to call the reopen method. post: tags: - compliance.ediscoveryroot summary: Invoke action reopen description: 'Reopen an eDiscovery case that was closed. For details, see Reopen a closed case.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-case-reopen?view=graph-rest-beta operationId: compliance.ediscovery.cases.case.reopen responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources': description: Provides operations to manage the noncustodialDataSources property of the microsoft.graph.ediscovery.case entity. get: tags: - compliance.ediscoveryroot summary: List noncustodialDataSources description: Get a list of the noncustodialDataSource objects and their properties. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-noncustodialdatasource-list?view=graph-rest-beta operationId: compliance.ediscovery.cases.ListNoncustodialDataSources 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.ediscovery.noncustodialDataSourceCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - compliance.ediscoveryroot summary: Create noncustodialDataSource description: Create a new noncustodialDataSource object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-noncustodialdatasource-post?view=graph-rest-beta operationId: compliance.ediscovery.cases.CreateNoncustodialDataSources requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.noncustodialDataSource' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.noncustodialDataSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}': description: Provides operations to manage the noncustodialDataSources property of the microsoft.graph.ediscovery.case entity. get: tags: - compliance.ediscoveryroot summary: Get noncustodialDataSource description: Read the properties and relationships of a noncustodialDataSource object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-noncustodialdatasource-get?view=graph-rest-beta operationId: compliance.ediscovery.cases.GetNoncustodialDataSources parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.noncustodialDataSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update the navigation property noncustodialDataSources in compliance operationId: compliance.ediscovery.cases.UpdateNoncustodialDataSources requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.noncustodialDataSource' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.noncustodialDataSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete navigation property noncustodialDataSources for compliance operationId: compliance.ediscovery.cases.DeleteNoncustodialDataSources parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: noncustodialDataSource-id in: path description: The unique identifier of noncustodialDataSource required: true schema: type: string x-ms-docs-key-type: noncustodialDataSource '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/dataSource': description: Provides operations to manage the dataSource property of the microsoft.graph.ediscovery.noncustodialDataSource entity. get: tags: - compliance.ediscoveryroot summary: Get dataSource from compliance description: User source or SharePoint site data source as noncustodial data source. operationId: compliance.ediscovery.cases.noncustodialDataSources.GetDataSource parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.dataSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update the navigation property dataSource in compliance operationId: compliance.ediscovery.cases.noncustodialDataSources.UpdateDataSource requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.dataSource' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.dataSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete navigation property dataSource for compliance operationId: compliance.ediscovery.cases.noncustodialDataSources.DeleteDataSource parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: noncustodialDataSource-id in: path description: The unique identifier of noncustodialDataSource required: true schema: type: string x-ms-docs-key-type: noncustodialDataSource '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/lastIndexOperation': description: Provides operations to manage the lastIndexOperation property of the microsoft.graph.ediscovery.dataSourceContainer entity. get: tags: - compliance.ediscoveryroot summary: Get lastIndexOperation from compliance operationId: compliance.ediscovery.cases.noncustodialDataSources.GetLastIndexOperation parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.caseIndexOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: noncustodialDataSource-id in: path description: The unique identifier of noncustodialDataSource required: true schema: type: string x-ms-docs-key-type: noncustodialDataSource x-ms-docs-grouped-path: - '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/lastIndexOperation' '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.applyHold': description: Provides operations to call the applyHold method. post: tags: - compliance.ediscoveryroot summary: Invoke action applyHold operationId: compliance.ediscovery.cases.case.noncustodialDataSources.noncustodialDataSource.applyHold responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: noncustodialDataSource-id in: path description: The unique identifier of noncustodialDataSource required: true schema: type: string x-ms-docs-key-type: noncustodialDataSource x-ms-docs-grouped-path: - '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/microsoft.graph.ediscovery.applyHold' - '/compliance/ediscovery/cases/{case-id}/custodians/microsoft.graph.ediscovery.applyHold' - '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/microsoft.graph.ediscovery.applyHold' '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.release': description: Provides operations to call the release method. post: tags: - compliance.ediscoveryroot summary: Invoke action release description: Releases the non-custodial data source from the case. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-noncustodialdatasource-release?view=graph-rest-beta operationId: compliance.ediscovery.cases.case.noncustodialDataSources.noncustodialDataSource.release responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: noncustodialDataSource-id in: path description: The unique identifier of noncustodialDataSource required: true schema: type: string x-ms-docs-key-type: noncustodialDataSource x-ms-docs-grouped-path: - '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/microsoft.graph.ediscovery.release' '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.removeHold': description: Provides operations to call the removeHold method. post: tags: - compliance.ediscoveryroot summary: Invoke action removeHold operationId: compliance.ediscovery.cases.case.noncustodialDataSources.noncustodialDataSource.removeHold responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: noncustodialDataSource-id in: path description: The unique identifier of noncustodialDataSource required: true schema: type: string x-ms-docs-key-type: noncustodialDataSource x-ms-docs-grouped-path: - '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/microsoft.graph.ediscovery.removeHold' - '/compliance/ediscovery/cases/{case-id}/custodians/microsoft.graph.ediscovery.removeHold' - '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/microsoft.graph.ediscovery.removeHold' '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.updateIndex': description: Provides operations to call the updateIndex method. post: tags: - compliance.ediscoveryroot summary: Invoke action updateIndex operationId: compliance.ediscovery.cases.case.noncustodialDataSources.noncustodialDataSource.updateIndex responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: noncustodialDataSource-id in: path description: The unique identifier of noncustodialDataSource required: true schema: type: string x-ms-docs-key-type: noncustodialDataSource x-ms-docs-grouped-path: - '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/microsoft.graph.ediscovery.updateIndex' '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.noncustodialDataSources.GetCount-475e 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/microsoft.graph.ediscovery.applyHold': description: Provides operations to call the applyHold method. post: tags: - compliance.ediscoveryroot summary: Invoke action applyHold operationId: compliance.ediscovery.cases.case.noncustodialDataSources.applyHold requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case x-ms-docs-grouped-path: - '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/microsoft.graph.ediscovery.applyHold' - '/compliance/ediscovery/cases/{case-id}/custodians/microsoft.graph.ediscovery.applyHold' - '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.applyHold' '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/microsoft.graph.ediscovery.removeHold': description: Provides operations to call the removeHold method. post: tags: - compliance.ediscoveryroot summary: Invoke action removeHold operationId: compliance.ediscovery.cases.case.noncustodialDataSources.removeHold requestBody: description: Action parameters content: application/json: schema: type: object properties: ids: type: array items: type: string nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case x-ms-docs-grouped-path: - '/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/microsoft.graph.ediscovery.removeHold' - '/compliance/ediscovery/cases/{case-id}/custodians/microsoft.graph.ediscovery.removeHold' - '/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/microsoft.graph.ediscovery.removeHold' '/compliance/ediscovery/cases/{case-id}/operations': description: Provides operations to manage the operations property of the microsoft.graph.ediscovery.case entity. get: tags: - compliance.ediscoveryroot summary: Get operations from compliance description: Returns a list of case operation objects for this case. Nullable. operationId: compliance.ediscovery.cases.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.ediscovery.caseOperationCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - compliance.ediscoveryroot summary: Create new navigation property to operations for compliance operationId: compliance.ediscovery.cases.CreateOperations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.caseOperation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.caseOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}': description: Provides operations to manage the operations property of the microsoft.graph.ediscovery.case entity. get: tags: - compliance.ediscoveryroot summary: Get operations from compliance description: Returns a list of case operation objects for this case. Nullable. operationId: compliance.ediscovery.cases.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.ediscovery.caseOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update the navigation property operations in compliance operationId: compliance.ediscovery.cases.UpdateOperations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.caseOperation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.caseOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete navigation property operations for compliance operationId: compliance.ediscovery.cases.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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: caseOperation-id in: path description: The unique identifier of caseOperation required: true schema: type: string x-ms-docs-key-type: caseOperation '/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}/microsoft.graph.ediscovery.caseExportOperation': description: Casts the previous resource to caseExportOperation. get: tags: - compliance.ediscoveryroot summary: Get the item of type microsoft.graph.ediscovery.caseOperation as microsoft.graph.ediscovery.caseExportOperation operationId: compliance.ediscovery.cases.GetOperations.AsCaseExportOperation parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.ediscovery.caseExportOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: caseOperation-id in: path description: The unique identifier of caseOperation required: true schema: type: string x-ms-docs-key-type: caseOperation '/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}/microsoft.graph.ediscovery.caseExportOperation/reviewSet': description: Provides operations to manage the reviewSet property of the microsoft.graph.ediscovery.caseExportOperation entity. get: tags: - compliance.ediscoveryroot summary: Get reviewSet from compliance description: The review set the content is being exported from. operationId: compliance.ediscovery.cases.operations.AsCaseExportOperation.GetReviewSet parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.reviewSet' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: caseOperation-id in: path description: The unique identifier of caseOperation required: true schema: type: string x-ms-docs-key-type: caseOperation '/compliance/ediscovery/cases/{case-id}/operations/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.operations.GetCount-d401 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/operations/microsoft.graph.ediscovery.caseExportOperation': description: Casts the previous resource to caseExportOperation. get: tags: - compliance.ediscoveryroot summary: Get the items of type microsoft.graph.ediscovery.caseExportOperation in the microsoft.graph.ediscovery.caseOperation collection operationId: compliance.ediscovery.cases.ListOperations.AsCaseExportOperation 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.ediscovery.caseExportOperationCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/operations/microsoft.graph.ediscovery.caseExportOperation/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.Operations.GetCount.AsCaseExportOperation-1bf7 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/reviewSets': description: Provides operations to manage the reviewSets property of the microsoft.graph.ediscovery.case entity. get: tags: - compliance.ediscoveryroot summary: Get reviewSet description: Retrieve the properties and relationships of a reviewSet object. operationId: compliance.ediscovery.cases.ListReviewSets 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.ediscovery.reviewSetCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - compliance.ediscoveryroot summary: Create reviewSet description: 'Create a new reviewSet object. The request body contains the display name of the review set, which is the only writable property.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-case-post-reviewsets?view=graph-rest-beta operationId: compliance.ediscovery.cases.CreateReviewSets requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.reviewSet' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.reviewSet' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}': description: Provides operations to manage the reviewSets property of the microsoft.graph.ediscovery.case entity. get: tags: - compliance.ediscoveryroot summary: Get reviewSet description: Retrieve the properties and relationships of a reviewSet object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-reviewset-get?view=graph-rest-beta operationId: compliance.ediscovery.cases.GetReviewSets parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.reviewSet' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update the navigation property reviewSets in compliance operationId: compliance.ediscovery.cases.UpdateReviewSets requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.reviewSet' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.reviewSet' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete navigation property reviewSets for compliance operationId: compliance.ediscovery.cases.DeleteReviewSets parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: reviewSet-id in: path description: The unique identifier of reviewSet required: true schema: type: string x-ms-docs-key-type: reviewSet '/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/microsoft.graph.ediscovery.addToReviewSet': description: Provides operations to call the addToReviewSet method. post: tags: - compliance.ediscoveryroot summary: Invoke action addToReviewSet description: 'Start the process of adding a collection from Microsoft 365 services to a review set. After the operation is created, you can get the status of the operation by retrieving the Location parameter from the response headers. The location provides a URL that will return a caseExportOperation.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-reviewset-addtoreviewset?view=graph-rest-beta operationId: compliance.ediscovery.cases.case.reviewSets.reviewSet.addToReviewSet requestBody: description: Action parameters content: application/json: schema: type: object properties: sourceCollection: anyOf: - $ref: '#/components/schemas/microsoft.graph.ediscovery.sourceCollection' - type: object nullable: true additionalDataOptions: anyOf: - $ref: '#/components/schemas/microsoft.graph.ediscovery.additionalDataOptions' - type: object nullable: true required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: reviewSet-id in: path description: The unique identifier of reviewSet required: true schema: type: string x-ms-docs-key-type: reviewSet '/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/microsoft.graph.ediscovery.export': description: Provides operations to call the export method. post: tags: - compliance.ediscoveryroot summary: Invoke action export description: 'Initiate an export from a reviewSet. For details, see Export documents from a review set in Advanced eDiscovery.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-reviewset-export?view=graph-rest-beta operationId: compliance.ediscovery.cases.case.reviewSets.reviewSet.export requestBody: description: Action parameters content: application/json: schema: type: object properties: outputName: type: string nullable: true description: type: string nullable: true azureBlobContainer: type: string nullable: true azureBlobToken: type: string nullable: true exportOptions: anyOf: - $ref: '#/components/schemas/microsoft.graph.ediscovery.exportOptions' - type: object nullable: true exportStructure: $ref: '#/components/schemas/microsoft.graph.ediscovery.exportFileStructure' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: reviewSet-id in: path description: The unique identifier of reviewSet required: true schema: type: string x-ms-docs-key-type: reviewSet '/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries': description: Provides operations to manage the queries property of the microsoft.graph.ediscovery.reviewSet entity. get: tags: - compliance.ediscoveryroot summary: List reviewSetQueries description: Retrieve a list of eDiscovery reviewSetQuery objects. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-reviewsetquery-list?view=graph-rest-beta operationId: compliance.ediscovery.cases.reviewSets.ListQueries 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.ediscovery.reviewSetQueryCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - compliance.ediscoveryroot summary: Create reviewSetQuery description: Create a new reviewSetQuery object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-reviewsetquery-post?view=graph-rest-beta operationId: compliance.ediscovery.cases.reviewSets.CreateQueries requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.reviewSetQuery' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.reviewSetQuery' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: reviewSet-id in: path description: The unique identifier of reviewSet required: true schema: type: string x-ms-docs-key-type: reviewSet '/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/{reviewSetQuery-id}': description: Provides operations to manage the queries property of the microsoft.graph.ediscovery.reviewSet entity. get: tags: - compliance.ediscoveryroot summary: Get reviewSetQuery description: Retrieve the properties and relationships of an eDiscovery reviewSetQuery object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-reviewsetquery-get?view=graph-rest-beta operationId: compliance.ediscovery.cases.reviewSets.GetQueries parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.reviewSetQuery' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update reviewSetQuery description: Update the properties of an eDiscovery reviewSetQuery. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-reviewsetquery-update?view=graph-rest-beta operationId: compliance.ediscovery.cases.reviewSets.UpdateQueries requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.reviewSetQuery' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.reviewSetQuery' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete reviewSetQuery description: Delete a reviewSetQuery object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-reviewsetquery-delete?view=graph-rest-beta operationId: compliance.ediscovery.cases.reviewSets.DeleteQueries parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: reviewSet-id in: path description: The unique identifier of reviewSet required: true schema: type: string x-ms-docs-key-type: reviewSet - name: reviewSetQuery-id in: path description: The unique identifier of reviewSetQuery required: true schema: type: string x-ms-docs-key-type: reviewSetQuery '/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/{reviewSetQuery-id}/microsoft.graph.ediscovery.applyTags': description: Provides operations to call the applyTags method. post: tags: - compliance.ediscoveryroot summary: Invoke action applyTags description: Apply tags to documents that match the specified reviewSetQuery. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-reviewsetquery-applytags?view=graph-rest-beta operationId: compliance.ediscovery.cases.case.reviewSets.reviewSet.queries.reviewSetQuery.applyTags requestBody: description: Action parameters content: application/json: schema: type: object properties: tagsToAdd: type: array items: $ref: '#/components/schemas/microsoft.graph.ediscovery.tag' tagsToRemove: type: array items: $ref: '#/components/schemas/microsoft.graph.ediscovery.tag' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: reviewSet-id in: path description: The unique identifier of reviewSet required: true schema: type: string x-ms-docs-key-type: reviewSet - name: reviewSetQuery-id in: path description: The unique identifier of reviewSetQuery required: true schema: type: string x-ms-docs-key-type: reviewSetQuery '/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.reviewSets.queries.GetCount-ce2e 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: reviewSet-id in: path description: The unique identifier of reviewSet required: true schema: type: string x-ms-docs-key-type: reviewSet '/compliance/ediscovery/cases/{case-id}/reviewSets/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.reviewSets.GetCount-6210 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/settings': description: Provides operations to manage the settings property of the microsoft.graph.ediscovery.case entity. get: tags: - compliance.ediscoveryroot summary: Get caseSettings description: Read the properties and relationships of an eDiscovery caseSettings object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-casesettings-get?view=graph-rest-beta operationId: compliance.ediscovery.cases.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.ediscovery.caseSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update caseSettings description: Update the properties of a an eDiscovery caseSettings object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-casesettings-update?view=graph-rest-beta operationId: compliance.ediscovery.cases.UpdateSettings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.caseSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.caseSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete navigation property settings for compliance operationId: compliance.ediscovery.cases.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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/settings/microsoft.graph.ediscovery.resetToDefault': description: Provides operations to call the resetToDefault method. post: tags: - compliance.ediscoveryroot summary: Invoke action resetToDefault description: Reset a caseSettings object to the default values. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-casesettings-resettodefault?view=graph-rest-beta operationId: compliance.ediscovery.cases.case.settings.resetToDefault responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/sourceCollections': description: Provides operations to manage the sourceCollections property of the microsoft.graph.ediscovery.case entity. get: tags: - compliance.ediscoveryroot summary: List sourceCollections description: Get the list of sourceCollections from a case object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-case-list-sourcecollections?view=graph-rest-beta operationId: compliance.ediscovery.cases.ListSourceCollections 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.ediscovery.sourceCollectionCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - compliance.ediscoveryroot summary: Create sourceCollection description: Create a new sourceCollection object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-case-post-sourcecollections?view=graph-rest-beta operationId: compliance.ediscovery.cases.CreateSourceCollections requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.sourceCollection' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.sourceCollection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}': description: Provides operations to manage the sourceCollections property of the microsoft.graph.ediscovery.case entity. get: tags: - compliance.ediscoveryroot summary: Get sourceCollections from compliance description: Returns a list of sourceCollection objects associated with this case. operationId: compliance.ediscovery.cases.GetSourceCollections parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.sourceCollection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update sourceCollection description: Update the properties of a sourceCollection object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-update?view=graph-rest-beta operationId: compliance.ediscovery.cases.UpdateSourceCollections requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.sourceCollection' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.sourceCollection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete sourceCollection description: Delete a sourceCollection object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-delete?view=graph-rest-beta operationId: compliance.ediscovery.cases.DeleteSourceCollections parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: sourceCollection-id in: path description: The unique identifier of sourceCollection required: true schema: type: string x-ms-docs-key-type: sourceCollection '/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources': description: Provides operations to manage the additionalSources property of the microsoft.graph.ediscovery.sourceCollection entity. get: tags: - compliance.ediscoveryroot summary: List additionalSources description: Get a list of additional dataSource objects associated with a source collection. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-list-additionalsources?view=graph-rest-beta operationId: compliance.ediscovery.cases.sourceCollections.ListAdditionalSources 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.ediscovery.dataSourceCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - compliance.ediscoveryroot summary: Create new navigation property to additionalSources for compliance operationId: compliance.ediscovery.cases.sourceCollections.CreateAdditionalSources requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.dataSource' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.dataSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: sourceCollection-id in: path description: The unique identifier of sourceCollection required: true schema: type: string x-ms-docs-key-type: sourceCollection '/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources/{dataSource-id}': description: Provides operations to manage the additionalSources property of the microsoft.graph.ediscovery.sourceCollection entity. get: tags: - compliance.ediscoveryroot summary: Get additionalSources from compliance description: Adds an additional source to the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections.GetAdditionalSources parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.dataSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update the navigation property additionalSources in compliance operationId: compliance.ediscovery.cases.sourceCollections.UpdateAdditionalSources requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.dataSource' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.dataSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete navigation property additionalSources for compliance operationId: compliance.ediscovery.cases.sourceCollections.DeleteAdditionalSources parameters: - name: If-Match in: header description: ETag schema: type: string responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: sourceCollection-id in: path description: The unique identifier of sourceCollection required: true schema: type: string x-ms-docs-key-type: sourceCollection - name: dataSource-id in: path description: The unique identifier of dataSource required: true schema: type: string x-ms-docs-key-type: dataSource '/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.sourceCollections.additionalSources.GetCount-b7c8 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: sourceCollection-id in: path description: The unique identifier of sourceCollection required: true schema: type: string x-ms-docs-key-type: sourceCollection '/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/addToReviewSetOperation': description: Provides operations to manage the addToReviewSetOperation property of the microsoft.graph.ediscovery.sourceCollection entity. get: tags: - compliance.ediscoveryroot summary: List addToReviewSetOperation description: 'Get the last addToReviewSetOperation object associated with a source collection. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-list-addtoreviewsetoperation?view=graph-rest-beta operationId: compliance.ediscovery.cases.sourceCollections.GetAddToReviewSetOperation parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.addToReviewSetOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: sourceCollection-id in: path description: The unique identifier of sourceCollection required: true schema: type: string x-ms-docs-key-type: sourceCollection '/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/custodianSources': description: Provides operations to manage the custodianSources property of the microsoft.graph.ediscovery.sourceCollection entity. get: tags: - compliance.ediscoveryroot summary: List custodianSources description: Get the list of dataSource objects associated with a source collection. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-list-custodiansources?view=graph-rest-beta operationId: compliance.ediscovery.cases.sourceCollections.ListCustodianSources 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.ediscovery.dataSourceCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: sourceCollection-id in: path description: The unique identifier of sourceCollection required: true schema: type: string x-ms-docs-key-type: sourceCollection '/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/custodianSources/{dataSource-id}': description: Provides operations to manage the custodianSources property of the microsoft.graph.ediscovery.sourceCollection entity. get: tags: - compliance.ediscoveryroot summary: Get custodianSources from compliance description: Custodian sources that are included in the sourceCollection. operationId: compliance.ediscovery.cases.sourceCollections.GetCustodianSources parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.dataSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: sourceCollection-id in: path description: The unique identifier of sourceCollection required: true schema: type: string x-ms-docs-key-type: sourceCollection - name: dataSource-id in: path description: The unique identifier of dataSource required: true schema: type: string x-ms-docs-key-type: dataSource '/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/custodianSources/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.sourceCollections.custodianSources.GetCount-80a1 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: sourceCollection-id in: path description: The unique identifier of sourceCollection required: true schema: type: string x-ms-docs-key-type: sourceCollection '/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/lastEstimateStatisticsOperation': description: Provides operations to manage the lastEstimateStatisticsOperation property of the microsoft.graph.ediscovery.sourceCollection entity. get: tags: - compliance.ediscoveryroot summary: List estimateStatisticsOperation description: 'Get the last estimateStatisticsOperation object associated with a source collection. ' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-list-lastestimatestatisticsoperation?view=graph-rest-beta operationId: compliance.ediscovery.cases.sourceCollections.GetLastEstimateStatisticsOperation parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.estimateStatisticsOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: sourceCollection-id in: path description: The unique identifier of sourceCollection required: true schema: type: string x-ms-docs-key-type: sourceCollection '/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/microsoft.graph.ediscovery.estimateStatistics': description: Provides operations to call the estimateStatistics method. post: tags: - compliance.ediscoveryroot summary: Invoke action estimateStatistics description: 'Run an estimate of the number of emails and documents in the source collection. To learn more about source collections (also known as searches in eDiscovery), see Collect data for a case in Advanced eDiscovery.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-estimatestatistics?view=graph-rest-beta operationId: compliance.ediscovery.cases.case.sourceCollections.sourceCollection.estimateStatistics responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: sourceCollection-id in: path description: The unique identifier of sourceCollection required: true schema: type: string x-ms-docs-key-type: sourceCollection '/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/microsoft.graph.ediscovery.purgeData': description: Provides operations to call the purgeData method. post: tags: - compliance.ediscoveryroot summary: Invoke action purgeData description: "Permanently delete Microsoft Teams messages contained in a sourceCollection. You can collect and purge the following categories of Teams content:\n- Teams 1:1 chats - Chat messages, posts, and attachments shared in a Teams conversation between two people. Teams 1:1 chats are also called *conversations*.\n- Teams group chats - Chat messages, posts, and attachments shared in a Teams conversation between three or more people. Also called *1:N* chats or *group conversations*.\n- Teams channels - Chat messages, posts, replies, and attachments shared in a standard Teams channel.\n- Private channels - Message posts, replies, and attachments shared in a private Teams channel.\n- Shared channels - Message posts, replies, and attachments shared in a shared Teams channel. For more information about purging Teams messages, see:\n- eDiscovery solution series: Data spillage scenario - Search and purge\n- Advanced eDiscovery workflow for content in Microsoft Teams " externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-purgedata?view=graph-rest-beta operationId: compliance.ediscovery.cases.case.sourceCollections.sourceCollection.purgeData responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: action parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: sourceCollection-id in: path description: The unique identifier of sourceCollection required: true schema: type: string x-ms-docs-key-type: sourceCollection '/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/noncustodialSources': description: Provides operations to manage the noncustodialSources property of the microsoft.graph.ediscovery.sourceCollection entity. get: tags: - compliance.ediscoveryroot summary: List noncustodialSources description: Get a list of noncustodialDataSource associated with a sourceCollection. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-list-noncustodialsources?view=graph-rest-beta operationId: compliance.ediscovery.cases.sourceCollections.ListNoncustodialSources 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.ediscovery.noncustodialDataSourceCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: sourceCollection-id in: path description: The unique identifier of sourceCollection required: true schema: type: string x-ms-docs-key-type: sourceCollection '/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/noncustodialSources/{noncustodialDataSource-id}': description: Provides operations to manage the noncustodialSources property of the microsoft.graph.ediscovery.sourceCollection entity. get: tags: - compliance.ediscoveryroot summary: Get noncustodialSources from compliance description: noncustodialDataSource sources that are included in the sourceCollection operationId: compliance.ediscovery.cases.sourceCollections.GetNoncustodialSources parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.noncustodialDataSource' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: sourceCollection-id in: path description: The unique identifier of sourceCollection required: true schema: type: string x-ms-docs-key-type: sourceCollection - name: noncustodialDataSource-id in: path description: The unique identifier of noncustodialDataSource required: true schema: type: string x-ms-docs-key-type: noncustodialDataSource '/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/noncustodialSources/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.sourceCollections.noncustodialSources.GetCount-f12e 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: sourceCollection-id in: path description: The unique identifier of sourceCollection required: true schema: type: string x-ms-docs-key-type: sourceCollection '/compliance/ediscovery/cases/{case-id}/sourceCollections/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.sourceCollections.GetCount-86ec 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/tags': description: Provides operations to manage the tags property of the microsoft.graph.ediscovery.case entity. get: tags: - compliance.ediscoveryroot summary: List tags description: Retrieve a list of tag objects from an eDiscovery case. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-case-list-tags?view=graph-rest-beta operationId: compliance.ediscovery.cases.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.ediscovery.tagCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation post: tags: - compliance.ediscoveryroot summary: Create tag description: Create a new tag for the specified case. The tags are used in review sets while reviewing content. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-case-post-tags?view=graph-rest-beta operationId: compliance.ediscovery.cases.CreateTags requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.tag' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.tag' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/tags/{tag-id}': description: Provides operations to manage the tags property of the microsoft.graph.ediscovery.case entity. get: tags: - compliance.ediscoveryroot summary: Get tag description: Read the properties and relationships of a tag object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-tag-get?view=graph-rest-beta operationId: compliance.ediscovery.cases.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.ediscovery.tag' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation patch: tags: - compliance.ediscoveryroot summary: Update tag description: Update the properties of a tag object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-tag-update?view=graph-rest-beta operationId: compliance.ediscovery.cases.UpdateTags requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.tag' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.tag' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation delete: tags: - compliance.ediscoveryroot summary: Delete tag description: Delete a tag object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-tag-delete?view=graph-rest-beta operationId: compliance.ediscovery.cases.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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: tag-id in: path description: The unique identifier of tag required: true schema: type: string x-ms-docs-key-type: tag '/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags': description: Provides operations to manage the childTags property of the microsoft.graph.ediscovery.tag entity. get: tags: - compliance.ediscoveryroot summary: List childTags description: Get a list of child tag objects associated with a tag. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/ediscovery-tag-childtags?view=graph-rest-beta operationId: compliance.ediscovery.cases.tags.ListChildTags 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.ediscovery.tagCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: tag-id in: path description: The unique identifier of tag required: true schema: type: string x-ms-docs-key-type: tag '/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags/{tag-id1}': description: Provides operations to manage the childTags property of the microsoft.graph.ediscovery.tag entity. get: tags: - compliance.ediscoveryroot summary: Get childTags from compliance description: Returns the tags that are a child of a tag. operationId: compliance.ediscovery.cases.tags.GetChildTags parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.tag' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: tag-id in: path description: The unique identifier of tag required: true schema: type: string x-ms-docs-key-type: tag - name: tag-id1 in: path description: The unique identifier of tag required: true schema: type: string x-ms-docs-key-type: tag '/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.tags.childTags.GetCount-91da 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: tag-id in: path description: The unique identifier of tag required: true schema: type: string x-ms-docs-key-type: tag '/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/parent': description: Provides operations to manage the parent property of the microsoft.graph.ediscovery.tag entity. get: tags: - compliance.ediscoveryroot summary: Get parent from compliance description: Returns the parent tag of the specified tag. operationId: compliance.ediscovery.cases.tags.GetParent parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.ediscovery.tag' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: operation parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case - name: tag-id in: path description: The unique identifier of tag required: true schema: type: string x-ms-docs-key-type: tag '/compliance/ediscovery/cases/{case-id}/tags/$count': description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.tags.GetCount-6ffa 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case '/compliance/ediscovery/cases/{case-id}/tags/microsoft.graph.ediscovery.asHierarchy()': description: Provides operations to call the asHierarchy method. get: tags: - compliance.ediscoveryroot summary: Invoke function asHierarchy description: Return a list of tag objects in hierarchial form operationId: compliance.ediscovery.cases.case.tags.asHierarchy 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 tag type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.ediscovery.tag' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore parameters: - name: case-id in: path description: The unique identifier of case required: true schema: type: string x-ms-docs-key-type: case /compliance/ediscovery/cases/$count: description: Provides operations to count the resources in the collection. get: tags: - compliance.ediscoveryroot summary: Get the number of the resource operationId: compliance.ediscovery.cases.GetCount-5456 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' deprecated: true x-ms-deprecation: removalDate: '2023-02-01' date: '2022-12-05' version: 2022-12/ediscoveryNamespace description: 'The ediscovery Apis are deprecated under /compliance and will stop returning data from February 01, 2023. Please use the new ediscovery Apis under /security.' /connections: description: Provides operations to manage the collection of externalConnection entities. get: tags: - connections.externalConnection summary: Get entities from connections operationId: connections.externalConnection.ListExternalConnection 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.externalConnectionCollectionResponse' 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.externalConnection summary: Add new entity to connections operationId: connections.externalConnection.CreateExternalConnection requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalConnection' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalConnection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/connections/{externalConnection-id}': description: Provides operations to manage the collection of externalConnection entities. get: tags: - connections.externalConnection summary: Get entity from connections by key operationId: connections.externalConnection.GetExternalConnection parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.externalConnectors.externalConnection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - connections.externalConnection summary: Update entity in connections operationId: connections.externalConnection.UpdateExternalConnection requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalConnection' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalConnection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - connections.externalConnection summary: Delete entity from connections operationId: connections.externalConnection.DeleteExternalConnection parameters: - 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 '/connections/{externalConnection-id}/groups': description: Provides operations to manage the groups property of the microsoft.graph.externalConnectors.externalConnection entity. get: tags: - connections.externalGroup summary: 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: 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: 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: 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: 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: Get members from connections description: 'A member added to an externalGroup. You can add Microsoft Entra users, Microsoft Entra groups, or other externalGroups 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: 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: Get members from connections description: 'A member added to an externalGroup. You can add Microsoft Entra users, Microsoft Entra groups, or other externalGroups 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: 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: 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: 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: 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 '/connections/{externalConnection-id}/items': description: Provides operations to manage the items property of the microsoft.graph.externalConnectors.externalConnection entity. get: tags: - connections.externalItem summary: Get items from connections operationId: connections.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.externalConnectors.externalItemCollectionResponse' 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.externalItem summary: Create new navigation property to items for connections operationId: connections.CreateItems requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalItem' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalItem' 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}/items/{externalItem-id}': description: Provides operations to manage the items property of the microsoft.graph.externalConnectors.externalConnection entity. get: tags: - connections.externalItem summary: Get items from connections operationId: connections.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.externalConnectors.externalItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation put: tags: - connections.externalItem summary: Update the navigation property items in connections operationId: connections.SetItems requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalItem' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - connections.externalItem summary: Delete navigation property items for connections operationId: connections.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: externalConnection-id in: path description: The unique identifier of externalConnection required: true schema: type: string x-ms-docs-key-type: externalConnection - name: externalItem-id in: path description: The unique identifier of externalItem required: true schema: type: string x-ms-docs-key-type: externalItem '/connections/{externalConnection-id}/items/{externalItem-id}/activities': description: Provides operations to manage the activities property of the microsoft.graph.externalConnectors.externalItem entity. get: tags: - connections.externalItem summary: Get activities from connections description: Returns a list of activities performed on the item. Write-only. operationId: connections.items.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.externalConnectors.externalActivityCollectionResponse' 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.externalItem summary: Create new navigation property to activities for connections operationId: connections.items.CreateActivities requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalActivity' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalActivity' 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: externalItem-id in: path description: The unique identifier of externalItem required: true schema: type: string x-ms-docs-key-type: externalItem '/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}': description: Provides operations to manage the activities property of the microsoft.graph.externalConnectors.externalItem entity. get: tags: - connections.externalItem summary: Get activities from connections description: Returns a list of activities performed on the item. Write-only. operationId: connections.items.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.externalConnectors.externalActivity' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - connections.externalItem summary: Update the navigation property activities in connections operationId: connections.items.UpdateActivities requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalActivity' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalActivity' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - connections.externalItem summary: Delete navigation property activities for connections operationId: connections.items.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: externalConnection-id in: path description: The unique identifier of externalConnection required: true schema: type: string x-ms-docs-key-type: externalConnection - name: externalItem-id in: path description: The unique identifier of externalItem required: true schema: type: string x-ms-docs-key-type: externalItem - name: externalActivity-id in: path description: The unique identifier of externalActivity required: true schema: type: string x-ms-docs-key-type: externalActivity '/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}/performedBy': description: Provides operations to manage the performedBy property of the microsoft.graph.externalConnectors.externalActivity entity. get: tags: - connections.externalItem summary: Get performedBy from connections description: Represents an identity used to identify who is responsible for the activity. operationId: connections.items.activities.GetPerformedBy parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: 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 parameters: - name: externalConnection-id in: path description: The unique identifier of externalConnection required: true schema: type: string x-ms-docs-key-type: externalConnection - name: externalItem-id in: path description: The unique identifier of externalItem required: true schema: type: string x-ms-docs-key-type: externalItem - name: externalActivity-id in: path description: The unique identifier of externalActivity required: true schema: type: string x-ms-docs-key-type: externalActivity '/connections/{externalConnection-id}/items/{externalItem-id}/activities/$count': description: Provides operations to count the resources in the collection. get: tags: - connections.externalItem summary: Get the number of the resource operationId: connections.items.activities.GetCount-5552 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: externalItem-id in: path description: The unique identifier of externalItem required: true schema: type: string x-ms-docs-key-type: externalItem '/connections/{externalConnection-id}/items/{externalItem-id}/microsoft.graph.externalConnectors.addActivities': description: Provides operations to call the addActivities method. post: tags: - connections.externalItem summary: Invoke action addActivities operationId: connections.externalConnection.items.externalItem.addActivities requestBody: description: Action parameters content: application/json: schema: type: object properties: activities: type: array items: $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalActivity' required: true responses: 2XX: description: Success content: application/json: schema: title: Collection of externalActivityResult type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.externalConnectors.externalActivityResult' 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: externalConnection-id in: path description: The unique identifier of externalConnection required: true schema: type: string x-ms-docs-key-type: externalConnection - name: externalItem-id in: path description: The unique identifier of externalItem required: true schema: type: string x-ms-docs-key-type: externalItem '/connections/{externalConnection-id}/items/$count': description: Provides operations to count the resources in the collection. get: tags: - connections.externalItem summary: Get the number of the resource operationId: connections.items.GetCount-eebb 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 '/connections/{externalConnection-id}/operations': description: Provides operations to manage the operations property of the microsoft.graph.externalConnectors.externalConnection entity. get: tags: - connections.connectionOperation summary: Get operations from connections operationId: connections.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.externalConnectors.connectionOperationCollectionResponse' 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.connectionOperation summary: Create new navigation property to operations for connections operationId: connections.CreateOperations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.connectionOperation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.connectionOperation' 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}/operations/{connectionOperation-id}': description: Provides operations to manage the operations property of the microsoft.graph.externalConnectors.externalConnection entity. get: tags: - connections.connectionOperation summary: Get operations from connections operationId: connections.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.externalConnectors.connectionOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - connections.connectionOperation summary: Update the navigation property operations in connections operationId: connections.UpdateOperations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.connectionOperation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.connectionOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - connections.connectionOperation summary: Delete navigation property operations for connections operationId: connections.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: externalConnection-id in: path description: The unique identifier of externalConnection required: true schema: type: string x-ms-docs-key-type: externalConnection - name: connectionOperation-id in: path description: The unique identifier of connectionOperation required: true schema: type: string x-ms-docs-key-type: connectionOperation '/connections/{externalConnection-id}/operations/$count': description: Provides operations to count the resources in the collection. get: tags: - connections.connectionOperation summary: Get the number of the resource operationId: connections.operations.GetCount-57e0 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 '/connections/{externalConnection-id}/quota': description: Provides operations to manage the quota property of the microsoft.graph.externalConnectors.externalConnection entity. get: tags: - connections.connectionQuota summary: Get quota from connections operationId: connections.GetQuota parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: 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.connectionQuota' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - connections.connectionQuota summary: Update the navigation property quota in connections operationId: connections.UpdateQuota requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.connectionQuota' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.connectionQuota' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - connections.connectionQuota summary: Delete navigation property quota for connections operationId: connections.DeleteQuota parameters: - 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 '/connections/{externalConnection-id}/schema': description: Provides operations to manage the schema property of the microsoft.graph.externalConnectors.externalConnection entity. get: tags: - connections.schema summary: Get schema from connections operationId: connections.GetSchema parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: 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.schema' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - connections.schema summary: Update the navigation property schema in connections operationId: connections.UpdateSchema requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.schema' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.externalConnectors.schema' 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/$count: description: Provides operations to count the resources in the collection. get: tags: - connections.externalConnection summary: Get the number of the resource operationId: connections.GetCount-7f4b 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' /contacts: description: Provides operations to manage the collection of orgContact entities. get: tags: - contacts.orgContact summary: List orgContacts description: Get the list of organizational contacts for this organization. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/orgcontact-list?view=graph-rest-beta operationId: contacts.orgContact.ListOrgContact 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 x-ms-docs-operation-type: operation post: tags: - contacts.orgContact summary: Add new entity to contacts operationId: contacts.orgContact.CreateOrgContact requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.orgContact' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.orgContact' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/contacts/{orgContact-id}': description: Provides operations to manage the collection of orgContact entities. get: tags: - contacts.orgContact summary: Get orgContact description: Get the properties and relationships of an organizational contact object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/orgcontact-get?view=graph-rest-beta operationId: contacts.orgContact.GetOrgContact parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.orgContact' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - contacts.orgContact summary: Update entity in contacts operationId: contacts.orgContact.UpdateOrgContact requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.orgContact' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.orgContact' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - contacts.orgContact summary: Delete entity from contacts operationId: contacts.orgContact.DeleteOrgContact parameters: - 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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/directReports': description: Provides operations to manage the directReports property of the microsoft.graph.orgContact entity. get: tags: - contacts.directoryObject summary: 'orgContact: List directReports' description: Get the contact's direct reports. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/orgcontact-list-directreports?view=graph-rest-beta operationId: contacts.ListDirectReports 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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/directReports/{directoryObject-id}': description: Provides operations to manage the directReports property of the microsoft.graph.orgContact entity. get: tags: - contacts.directoryObject summary: Get directReports from contacts description: The contact's direct reports. (The users and contacts that have their manager property set to this contact.) Read-only. Nullable. Supports $expand. operationId: contacts.GetDirectReports 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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/contacts/{orgContact-id}/directReports/{directoryObject-id}/graph.orgContact': description: Casts the previous resource to orgContact. get: tags: - contacts.directoryObject summary: Get the item of type microsoft.graph.directoryObject as microsoft.graph.orgContact operationId: contacts.GetDirectReports.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/contacts/{orgContact-id}/directReports/{directoryObject-id}/graph.user': description: Casts the previous resource to user. get: tags: - contacts.directoryObject summary: Get the item of type microsoft.graph.directoryObject as microsoft.graph.user operationId: contacts.GetDirectReports.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/contacts/{orgContact-id}/directReports/$count': description: Provides operations to count the resources in the collection. get: tags: - contacts.directoryObject summary: Get the number of the resource operationId: contacts.directReports.GetCount-94c4 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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/directReports/graph.orgContact': description: Casts the previous resource to orgContact. get: tags: - contacts.directoryObject summary: Get the items of type microsoft.graph.orgContact in the microsoft.graph.directoryObject collection operationId: contacts.ListDirectReports.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/directReports/graph.orgContact/$count': description: Provides operations to count the resources in the collection. get: tags: - contacts.directoryObject summary: Get the number of the resource operationId: contacts.DirectReports.GetCount.AsOrgContact-315a 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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/directReports/graph.user': description: Casts the previous resource to user. get: tags: - contacts.directoryObject summary: Get the items of type microsoft.graph.user in the microsoft.graph.directoryObject collection operationId: contacts.ListDirectReports.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/directReports/graph.user/$count': description: Provides operations to count the resources in the collection. get: tags: - contacts.directoryObject summary: Get the number of the resource operationId: contacts.DirectReports.GetCount.AsUser-5746 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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/manager': description: Provides operations to manage the manager property of the microsoft.graph.orgContact entity. get: tags: - contacts.directoryObject summary: 'orgContact: Get manager' description: Get the contact's manager externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/orgcontact-get-manager?view=graph-rest-beta operationId: contacts.GetManager parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: 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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/memberOf': description: Provides operations to manage the memberOf property of the microsoft.graph.orgContact entity. get: tags: - contacts.directoryObject summary: 'orgContact: List memberOf' description: Retrieve the list of groups and adminstrative units the contact is a member of. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/orgcontact-list-memberof?view=graph-rest-beta operationId: contacts.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/memberOf/{directoryObject-id}': description: Provides operations to manage the memberOf property of the microsoft.graph.orgContact entity. get: tags: - contacts.directoryObject summary: Get memberOf from contacts description: Groups that this contact is a member of. Read-only. Nullable. Supports $expand. operationId: contacts.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/contacts/{orgContact-id}/memberOf/{directoryObject-id}/graph.administrativeUnit': description: Casts the previous resource to administrativeUnit. get: tags: - contacts.directoryObject summary: Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit operationId: contacts.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/contacts/{orgContact-id}/memberOf/{directoryObject-id}/graph.group': description: Casts the previous resource to group. get: tags: - contacts.directoryObject summary: Get the item of type microsoft.graph.directoryObject as microsoft.graph.group operationId: contacts.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/contacts/{orgContact-id}/memberOf/$count': description: Provides operations to count the resources in the collection. get: tags: - contacts.directoryObject summary: Get the number of the resource operationId: contacts.memberOf.GetCount-46e4 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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/memberOf/graph.administrativeUnit': description: Casts the previous resource to administrativeUnit. get: tags: - contacts.directoryObject summary: Get the items of type microsoft.graph.administrativeUnit in the microsoft.graph.directoryObject collection operationId: contacts.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/memberOf/graph.administrativeUnit/$count': description: Provides operations to count the resources in the collection. get: tags: - contacts.directoryObject summary: Get the number of the resource operationId: contacts.MemberOf.GetCount.AsAdministrativeUnit-db20 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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/memberOf/graph.group': description: Casts the previous resource to group. get: tags: - contacts.directoryObject summary: Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection operationId: contacts.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/memberOf/graph.group/$count': description: Provides operations to count the resources in the collection. get: tags: - contacts.directoryObject summary: Get the number of the resource operationId: contacts.MemberOf.GetCount.AsGroup-df93 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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/checkMemberGroups': description: Provides operations to call the checkMemberGroups method. post: tags: - contacts.orgContact.Actions summary: 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:\n- user\n- group\n- service principal\n- organizational contact\n- device\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-beta operationId: contacts.orgContact.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/checkMemberObjects': description: Provides operations to call the checkMemberObjects method. post: tags: - contacts.orgContact.Actions summary: Invoke action checkMemberObjects operationId: contacts.orgContact.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/getMemberGroups': description: Provides operations to call the getMemberGroups method. post: tags: - contacts.orgContact.Actions summary: 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-beta operationId: contacts.orgContact.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/getMemberObjects': description: Provides operations to call the getMemberObjects method. post: tags: - contacts.orgContact.Actions summary: Invoke action getMemberObjects operationId: contacts.orgContact.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/restore': description: Provides operations to call the restore method. post: tags: - contacts.orgContact.Actions summary: Invoke action restore description: "Restore a recently deleted directory object from deleted items. The following types are supported:\n- administrativeUnit\n- application\n- certificateBasedAuthPki\n- certificateAuthorityDetail\n- externalUserProfile\n- group\n- pendingExternalUserProfile\n- servicePrincipal\n- user If an item was accidentally deleted, you can fully restore the item. This isn't applicable to security groups, which are deleted permanently. Also, restoring an application doesn't 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-beta operationId: contacts.orgContact.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/retryServiceProvisioning': description: Provides operations to call the retryServiceProvisioning method. post: tags: - contacts.orgContact.Actions summary: Invoke action retryServiceProvisioning description: Retry the orgContact service provisioning. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/orgcontact-retryserviceprovisioning?view=graph-rest-beta operationId: contacts.orgContact.retryServiceProvisioning responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/serviceProvisioningErrors': get: tags: - contacts.serviceProvisioningError summary: Get serviceProvisioningErrors property value description: 'Errors published by a federated service describing a non-transient, service-specific error regarding the properties or link from an orgContact object . Supports $filter (eq, not, for isResolved and serviceInstance).' operationId: contacts.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/serviceProvisioningErrors/$count': description: Provides operations to count the resources in the collection. get: tags: - contacts.serviceProvisioningError summary: Get the number of the resource operationId: contacts.ServiceProvisioningErrors.GetCount-33c2 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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/transitiveMemberOf': description: Provides operations to manage the transitiveMemberOf property of the microsoft.graph.orgContact entity. get: tags: - contacts.directoryObject summary: List transitiveMemberOf description: 'Get groups that this organizational contact is a member of. The API request is transitive, and returns all groups the organizational contact is a nested member of.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/orgcontact-list-transitivememberof?view=graph-rest-beta operationId: contacts.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}': description: Provides operations to manage the transitiveMemberOf property of the microsoft.graph.orgContact entity. get: tags: - contacts.directoryObject summary: Get transitiveMemberOf from contacts operationId: contacts.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}/graph.administrativeUnit': description: Casts the previous resource to administrativeUnit. get: tags: - contacts.directoryObject summary: Get the item of type microsoft.graph.directoryObject as microsoft.graph.administrativeUnit operationId: contacts.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}/graph.group': description: Casts the previous resource to group. get: tags: - contacts.directoryObject summary: Get the item of type microsoft.graph.directoryObject as microsoft.graph.group operationId: contacts.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/contacts/{orgContact-id}/transitiveMemberOf/$count': description: Provides operations to count the resources in the collection. get: tags: - contacts.directoryObject summary: Get the number of the resource operationId: contacts.transitiveMemberOf.GetCount-d749 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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/transitiveMemberOf/graph.administrativeUnit': description: Casts the previous resource to administrativeUnit. get: tags: - contacts.directoryObject summary: Get the items of type microsoft.graph.administrativeUnit in the microsoft.graph.directoryObject collection operationId: contacts.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/transitiveMemberOf/graph.administrativeUnit/$count': description: Provides operations to count the resources in the collection. get: tags: - contacts.directoryObject summary: Get the number of the resource operationId: contacts.TransitiveMemberOf.GetCount.AsAdministrativeUnit-d6cb 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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/transitiveMemberOf/graph.group': description: Casts the previous resource to group. get: tags: - contacts.directoryObject summary: Get the items of type microsoft.graph.group in the microsoft.graph.directoryObject collection operationId: contacts.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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/transitiveMemberOf/graph.group/$count': description: Provides operations to count the resources in the collection. get: tags: - contacts.directoryObject summary: Get the number of the resource operationId: contacts.TransitiveMemberOf.GetCount.AsGroup-e1a5 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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/transitiveReports': description: Provides operations to manage the transitiveReports property of the microsoft.graph.orgContact entity. get: tags: - contacts.directoryObject summary: Get transitiveReports for orgContact description: Retrieve a count of transitive reports for an organizational contact. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/orgcontact-get-transitivereports?view=graph-rest-beta operationId: contacts.ListTransitiveReports 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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact '/contacts/{orgContact-id}/transitiveReports/{directoryObject-id}': description: Provides operations to manage the transitiveReports property of the microsoft.graph.orgContact entity. get: tags: - contacts.directoryObject summary: Get transitiveReports from contacts description: The transitive reports for a contact. Read-only. operationId: contacts.GetTransitiveReports parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: 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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact - name: directoryObject-id in: path description: The unique identifier of directoryObject required: true schema: type: string x-ms-docs-key-type: directoryObject '/contacts/{orgContact-id}/transitiveReports/$count': description: Provides operations to count the resources in the collection. get: tags: - contacts.directoryObject summary: Get the number of the resource operationId: contacts.transitiveReports.GetCount-c575 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: orgContact-id in: path description: The unique identifier of orgContact required: true schema: type: string x-ms-docs-key-type: orgContact /contacts/$count: description: Provides operations to count the resources in the collection. get: tags: - contacts.orgContact summary: Get the number of the resource operationId: contacts.GetCount-60f9 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' /contacts/delta(): description: Provides operations to call the delta method. get: tags: - contacts.orgContact.Functions summary: Invoke function delta description: 'Get newly created, updated, or deleted organizational contacts without having to perform a full read of the entire 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/orgcontact-delta?view=graph-rest-beta operationId: contacts.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 orgContact type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.orgContact' 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: - /contacts/delta() /contacts/getByIds: description: Provides operations to call the getByIds method. post: tags: - contacts.orgContact.Actions summary: Invoke action getByIds description: 'Return the directory objects specified in a list of IDs. 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-beta operationId: contacts.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 /contacts/getUserOwnedObjects: description: Provides operations to call the getUserOwnedObjects method. post: tags: - contacts.orgContact.Actions summary: Invoke action getUserOwnedObjects description: 'Retrieve a list of recently deleted application and group objects owned by the specified user. This API returns up to 1,000 deleted objects owned by the user, sorted by ID, and doesn''t support pagination.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta operationId: contacts.getUserOwnedObjects requestBody: description: Action parameters content: application/json: schema: type: object properties: userId: type: string nullable: true type: type: string nullable: true required: true 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 /contacts/validateProperties: description: Provides operations to call the validateProperties method. post: tags: - contacts.orgContact.Actions summary: 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. For validating properties of an existing group, use the validateProperties function for groups. The following validations are performed for the display name and mail nickname properties: \n1. Validate the prefix and suffix naming policy\n2. Validate the custom banned words policy\n3. Validate the mail nickname is unique This API returns with the first failure encountered. If one or more properties fail multiple validations, only the property with 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." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta operationId: contacts.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 /contracts: description: Provides operations to manage the collection of contract entities. get: tags: - contracts.contract summary: List contracts description: Retrieve a list of contract objects associated to a partner tenant. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/contract-list?view=graph-rest-beta operationId: contracts.contract.ListContract 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.contractCollectionResponse' 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: - contracts.contract summary: Add new entity to contracts operationId: contracts.contract.CreateContract requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contract' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contract' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/contracts/{contract-id}': description: Provides operations to manage the collection of contract entities. get: tags: - contracts.contract summary: Get Contract description: Retrieve the properties and relationships of contract object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/contract-get?view=graph-rest-beta operationId: contracts.contract.GetContract parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.contract' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - contracts.contract summary: Update entity in contracts operationId: contracts.contract.UpdateContract requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contract' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.contract' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - contracts.contract summary: Delete entity from contracts operationId: contracts.contract.DeleteContract parameters: - 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: contract-id in: path description: The unique identifier of contract required: true schema: type: string x-ms-docs-key-type: contract '/contracts/{contract-id}/checkMemberGroups': description: Provides operations to call the checkMemberGroups method. post: tags: - contracts.contract.Actions summary: 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:\n- user\n- group\n- service principal\n- organizational contact\n- device\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-beta operationId: contracts.contract.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: contract-id in: path description: The unique identifier of contract required: true schema: type: string x-ms-docs-key-type: contract '/contracts/{contract-id}/checkMemberObjects': description: Provides operations to call the checkMemberObjects method. post: tags: - contracts.contract.Actions summary: Invoke action checkMemberObjects operationId: contracts.contract.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: contract-id in: path description: The unique identifier of contract required: true schema: type: string x-ms-docs-key-type: contract '/contracts/{contract-id}/getMemberGroups': description: Provides operations to call the getMemberGroups method. post: tags: - contracts.contract.Actions summary: 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-beta operationId: contracts.contract.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: contract-id in: path description: The unique identifier of contract required: true schema: type: string x-ms-docs-key-type: contract '/contracts/{contract-id}/getMemberObjects': description: Provides operations to call the getMemberObjects method. post: tags: - contracts.contract.Actions summary: Invoke action getMemberObjects operationId: contracts.contract.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: contract-id in: path description: The unique identifier of contract required: true schema: type: string x-ms-docs-key-type: contract '/contracts/{contract-id}/restore': description: Provides operations to call the restore method. post: tags: - contracts.contract.Actions summary: Invoke action restore description: "Restore a recently deleted directory object from deleted items. The following types are supported:\n- administrativeUnit\n- application\n- certificateBasedAuthPki\n- certificateAuthorityDetail\n- externalUserProfile\n- group\n- pendingExternalUserProfile\n- servicePrincipal\n- user If an item was accidentally deleted, you can fully restore the item. This isn't applicable to security groups, which are deleted permanently. Also, restoring an application doesn't 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-beta operationId: contracts.contract.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: contract-id in: path description: The unique identifier of contract required: true schema: type: string x-ms-docs-key-type: contract /contracts/$count: description: Provides operations to count the resources in the collection. get: tags: - contracts.contract summary: Get the number of the resource operationId: contracts.GetCount-8092 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' /contracts/delta(): description: Provides operations to call the delta method. get: tags: - contracts.contract.Functions summary: Invoke function delta description: 'Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject 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/directoryobject-delta?view=graph-rest-beta operationId: contracts.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 directoryObject type: object allOf: - $ref: '#/components/schemas/BaseDeltaFunctionResponse' - 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: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /contracts/getByIds: description: Provides operations to call the getByIds method. post: tags: - contracts.contract.Actions summary: Invoke action getByIds description: 'Return the directory objects specified in a list of IDs. 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-beta operationId: contracts.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 /contracts/getUserOwnedObjects: description: Provides operations to call the getUserOwnedObjects method. post: tags: - contracts.contract.Actions summary: Invoke action getUserOwnedObjects description: 'Retrieve a list of recently deleted application and group objects owned by the specified user. This API returns up to 1,000 deleted objects owned by the user, sorted by ID, and doesn''t support pagination.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta operationId: contracts.getUserOwnedObjects requestBody: description: Action parameters content: application/json: schema: type: object properties: userId: type: string nullable: true type: type: string nullable: true required: true 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 /contracts/validateProperties: description: Provides operations to call the validateProperties method. post: tags: - contracts.contract.Actions summary: 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. For validating properties of an existing group, use the validateProperties function for groups. The following validations are performed for the display name and mail nickname properties: \n1. Validate the prefix and suffix naming policy\n2. Validate the custom banned words policy\n3. Validate the mail nickname is unique This API returns with the first failure encountered. If one or more properties fail multiple validations, only the property with 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." externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta operationId: contracts.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 /copilot: description: Provides operations to manage the copilotRoot singleton. get: tags: - copilot.copilotRoot summary: Get copilot operationId: copilot.copilotRoot.GetCopilotRoot parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.copilotRoot' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - copilot.copilotRoot summary: Update copilot operationId: copilot.copilotRoot.UpdateCopilotRoot requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.copilotRoot' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.copilotRoot' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation /copilot/admin: description: Provides operations to manage the admin property of the microsoft.graph.copilotRoot entity. get: tags: - copilot.copilotAdmin summary: Get admin from copilot description: The Microsoft 365 Copilot admin who can add or modify Copilot settings. Read-only. Nullable. operationId: copilot.GetAdmin parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.copilotAdmin' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - copilot.copilotAdmin summary: Update the navigation property admin in copilot operationId: copilot.UpdateAdmin requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.copilotAdmin' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.copilotAdmin' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - copilot.copilotAdmin summary: Delete navigation property admin for copilot operationId: copilot.DeleteAdmin parameters: - 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 /copilot/admin/settings: description: Provides operations to manage the settings property of the microsoft.graph.copilotAdmin entity. get: tags: - copilot.copilotAdmin summary: Get settings from copilot description: Set of Microsoft 365 Copilot settings that can be added or modified. Read-only. Nullable. operationId: copilot.admin.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.copilotAdminSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - copilot.copilotAdmin summary: Update the navigation property settings in copilot operationId: copilot.admin.UpdateSettings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.copilotAdminSetting' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.copilotAdminSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - copilot.copilotAdmin summary: Delete navigation property settings for copilot operationId: copilot.admin.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 /copilot/admin/settings/limitedMode: description: Provides operations to manage the limitedMode property of the microsoft.graph.copilotAdminSetting entity. get: tags: - copilot.copilotAdmin summary: Get copilotAdminLimitedMode description: Read the properties and relationships of a copilotAdminLimitedMode object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/copilotadminlimitedmode-get?view=graph-rest-beta operationId: copilot.admin.settings.GetLimitedMode parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.copilotAdminLimitedMode' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - copilot.copilotAdmin summary: Update copilotAdminLimitedMode description: Update the properties of a copilotAdminLimitedMode object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/copilotadminlimitedmode-update?view=graph-rest-beta operationId: copilot.admin.settings.UpdateLimitedMode requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.copilotAdminLimitedMode' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.copilotAdminLimitedMode' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - copilot.copilotAdmin summary: Delete navigation property limitedMode for copilot operationId: copilot.admin.settings.DeleteLimitedMode parameters: - 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 /copilot/interactionHistory: description: Provides operations to manage the interactionHistory property of the microsoft.graph.copilotRoot entity. get: tags: - copilot.aiInteractionHistory summary: Get interactionHistory from copilot description: The history of interactions between AI agents and users. operationId: copilot.GetInteractionHistory parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.aiInteractionHistory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - copilot.aiInteractionHistory summary: Update the navigation property interactionHistory in copilot operationId: copilot.UpdateInteractionHistory requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.aiInteractionHistory' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.aiInteractionHistory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - copilot.aiInteractionHistory summary: Delete navigation property interactionHistory for copilot operationId: copilot.DeleteInteractionHistory parameters: - 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 /copilot/interactionHistory/getAllEnterpriseInteractions(): description: Provides operations to call the getAllEnterpriseInteractions method. get: tags: - copilot.aiInteractionHistory summary: Invoke function getAllEnterpriseInteractions description: 'Get all Microsoft 365 Copilot interaction data, including user prompts to Copilot and Copilot responses. This API captures the user intent, the resources accessed by Copilot, and the response to the user for Microsoft 365 apps such as Teams, Word, and Outlook. 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/aiinteractionhistory-getallenterpriseinteractions?view=graph-rest-beta operationId: copilot.interactionHistory.getAllEnterpriseInteractions 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 aiInteraction type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.aiInteraction' 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: - '/copilot/users/{aiUser-id}/interactionHistory/getAllEnterpriseInteractions()' /copilot/settings: description: Provides operations to manage the settings property of the microsoft.graph.copilotRoot entity. get: tags: - copilot.copilotSetting summary: Get settings from copilot operationId: copilot.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.copilotSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - copilot.copilotSetting summary: Update the navigation property settings in copilot operationId: copilot.UpdateSettings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.copilotSetting' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.copilotSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - copilot.copilotSetting summary: Delete navigation property settings for copilot operationId: copilot.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 /copilot/settings/people: description: Provides operations to manage the people property of the microsoft.graph.copilotSetting entity. get: tags: - copilot.copilotSetting summary: Get people from copilot operationId: copilot.settings.GetPeople parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.copilotPeopleAdminSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - copilot.copilotSetting summary: Update the navigation property people in copilot operationId: copilot.settings.UpdatePeople requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.copilotPeopleAdminSetting' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.copilotPeopleAdminSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - copilot.copilotSetting summary: Delete navigation property people for copilot operationId: copilot.settings.DeletePeople parameters: - 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 /copilot/settings/people/enhancedPersonalization: description: Provides operations to manage the enhancedPersonalization property of the microsoft.graph.copilotPeopleAdminSetting entity. get: tags: - copilot.copilotSetting summary: Get enhancedPersonalization from copilot operationId: copilot.settings.people.GetEnhancedPersonalization parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.enhancedPersonalizationSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - copilot.copilotSetting summary: Update the navigation property enhancedPersonalization in copilot operationId: copilot.settings.people.UpdateEnhancedPersonalization requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.enhancedPersonalizationSetting' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.enhancedPersonalizationSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - copilot.copilotSetting summary: Delete navigation property enhancedPersonalization for copilot operationId: copilot.settings.people.DeleteEnhancedPersonalization parameters: - 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 /copilot/users: description: Provides operations to manage the users property of the microsoft.graph.copilotRoot entity. get: tags: - copilot.aiUser summary: Get users from copilot description: The list of AI users or agents. Read-only. Nullable. operationId: copilot.ListUsers 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.aiUserCollectionResponse' 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: - copilot.aiUser summary: Create new navigation property to users for copilot operationId: copilot.CreateUsers requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.aiUser' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.aiUser' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/copilot/users/{aiUser-id}': description: Provides operations to manage the users property of the microsoft.graph.copilotRoot entity. get: tags: - copilot.aiUser summary: Get users from copilot description: The list of AI users or agents. Read-only. Nullable. operationId: copilot.GetUsers parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.aiUser' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - copilot.aiUser summary: Update the navigation property users in copilot operationId: copilot.UpdateUsers requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.aiUser' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.aiUser' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - copilot.aiUser summary: Delete navigation property users for copilot operationId: copilot.DeleteUsers parameters: - 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: aiUser-id in: path description: The unique identifier of aiUser required: true schema: type: string x-ms-docs-key-type: aiUser '/copilot/users/{aiUser-id}/interactionHistory': description: Provides operations to manage the interactionHistory property of the microsoft.graph.aiUser entity. get: tags: - copilot.aiUser summary: Get interactionHistory from copilot description: The history of interactions between AI agents and users. operationId: copilot.users.GetInteractionHistory parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.aiInteractionHistory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - copilot.aiUser summary: Update the navigation property interactionHistory in copilot operationId: copilot.users.UpdateInteractionHistory requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.aiInteractionHistory' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.aiInteractionHistory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - copilot.aiUser summary: Delete navigation property interactionHistory for copilot operationId: copilot.users.DeleteInteractionHistory parameters: - 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: aiUser-id in: path description: The unique identifier of aiUser required: true schema: type: string x-ms-docs-key-type: aiUser '/copilot/users/{aiUser-id}/interactionHistory/getAllEnterpriseInteractions()': description: Provides operations to call the getAllEnterpriseInteractions method. get: tags: - copilot.aiUser summary: Invoke function getAllEnterpriseInteractions description: 'Get all Microsoft 365 Copilot interaction data, including user prompts to Copilot and Copilot responses. This API captures the user intent, the resources accessed by Copilot, and the response to the user for Microsoft 365 apps such as Teams, Word, and Outlook. 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/aiinteractionhistory-getallenterpriseinteractions?view=graph-rest-beta operationId: copilot.users.aiUser.interactionHistory.getAllEnterpriseInteractions 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 aiInteraction type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.aiInteraction' 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: aiUser-id in: path description: The unique identifier of aiUser required: true schema: type: string x-ms-docs-key-type: aiUser x-ms-docs-grouped-path: - /copilot/interactionHistory/getAllEnterpriseInteractions() '/copilot/users/{aiUser-id}/onlineMeetings': description: Provides operations to manage the onlineMeetings property of the microsoft.graph.aiUser entity. get: tags: - copilot.aiUser summary: Get onlineMeetings from copilot description: 'Information about an online meeting, including AI insights.' operationId: copilot.users.ListOnlineMeetings 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.aiOnlineMeetingCollectionResponse' 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: - copilot.aiUser summary: Create new navigation property to onlineMeetings for copilot operationId: copilot.users.CreateOnlineMeetings requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.aiOnlineMeeting' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.aiOnlineMeeting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: aiUser-id in: path description: The unique identifier of aiUser required: true schema: type: string x-ms-docs-key-type: aiUser '/copilot/users/{aiUser-id}/onlineMeetings/{aiOnlineMeeting-id}': description: Provides operations to manage the onlineMeetings property of the microsoft.graph.aiUser entity. get: tags: - copilot.aiUser summary: Get onlineMeetings from copilot description: 'Information about an online meeting, including AI insights.' operationId: copilot.users.GetOnlineMeetings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.aiOnlineMeeting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - copilot.aiUser summary: Update the navigation property onlineMeetings in copilot operationId: copilot.users.UpdateOnlineMeetings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.aiOnlineMeeting' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.aiOnlineMeeting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - copilot.aiUser summary: Delete navigation property onlineMeetings for copilot operationId: copilot.users.DeleteOnlineMeetings parameters: - 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: aiUser-id in: path description: The unique identifier of aiUser required: true schema: type: string x-ms-docs-key-type: aiUser - name: aiOnlineMeeting-id in: path description: The unique identifier of aiOnlineMeeting required: true schema: type: string x-ms-docs-key-type: aiOnlineMeeting '/copilot/users/{aiUser-id}/onlineMeetings/{aiOnlineMeeting-id}/aiInsights': description: Provides operations to manage the aiInsights property of the microsoft.graph.aiOnlineMeeting entity. get: tags: - copilot.aiUser summary: List aiInsights description: Get the list of callAiInsight objects associated with an onlineMeeting. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/onlinemeeting-list-aiinsights?view=graph-rest-beta operationId: copilot.users.onlineMeetings.ListAiInsights 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.callAiInsightCollectionResponse' 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: - copilot.aiUser summary: Create new navigation property to aiInsights for copilot operationId: copilot.users.onlineMeetings.CreateAiInsights requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callAiInsight' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callAiInsight' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: aiUser-id in: path description: The unique identifier of aiUser required: true schema: type: string x-ms-docs-key-type: aiUser - name: aiOnlineMeeting-id in: path description: The unique identifier of aiOnlineMeeting required: true schema: type: string x-ms-docs-key-type: aiOnlineMeeting '/copilot/users/{aiUser-id}/onlineMeetings/{aiOnlineMeeting-id}/aiInsights/{callAiInsight-id}': description: Provides operations to manage the aiInsights property of the microsoft.graph.aiOnlineMeeting entity. get: tags: - copilot.aiUser summary: Get callAiInsight description: Get a callAiInsight object associated with an onlineMeeting. This API returns the metadata and content of the single set of AI insights associated with the online meeting. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/callaiinsight-get?view=graph-rest-beta operationId: copilot.users.onlineMeetings.GetAiInsights parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callAiInsight' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - copilot.aiUser summary: Update the navigation property aiInsights in copilot operationId: copilot.users.onlineMeetings.UpdateAiInsights requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callAiInsight' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.callAiInsight' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - copilot.aiUser summary: Delete navigation property aiInsights for copilot operationId: copilot.users.onlineMeetings.DeleteAiInsights parameters: - 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: aiUser-id in: path description: The unique identifier of aiUser required: true schema: type: string x-ms-docs-key-type: aiUser - name: aiOnlineMeeting-id in: path description: The unique identifier of aiOnlineMeeting required: true schema: type: string x-ms-docs-key-type: aiOnlineMeeting - name: callAiInsight-id in: path description: The unique identifier of callAiInsight required: true schema: type: string x-ms-docs-key-type: callAiInsight '/copilot/users/{aiUser-id}/onlineMeetings/{aiOnlineMeeting-id}/aiInsights/$count': description: Provides operations to count the resources in the collection. get: tags: - copilot.aiUser summary: Get the number of the resource operationId: copilot.users.onlineMeetings.aiInsights.GetCount-11ce 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: aiUser-id in: path description: The unique identifier of aiUser required: true schema: type: string x-ms-docs-key-type: aiUser - name: aiOnlineMeeting-id in: path description: The unique identifier of aiOnlineMeeting required: true schema: type: string x-ms-docs-key-type: aiOnlineMeeting '/copilot/users/{aiUser-id}/onlineMeetings/$count': description: Provides operations to count the resources in the collection. get: tags: - copilot.aiUser summary: Get the number of the resource operationId: copilot.users.onlineMeetings.GetCount-e55c 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: aiUser-id in: path description: The unique identifier of aiUser required: true schema: type: string x-ms-docs-key-type: aiUser /copilot/users/$count: description: Provides operations to count the resources in the collection. get: tags: - copilot.aiUser summary: Get the number of the resource operationId: copilot.users.GetCount-2ed5 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' /dataClassification: description: Provides operations to manage the dataClassificationService singleton. get: tags: - dataClassification.dataClassificationService summary: Get dataClassification operationId: dataClassification.dataClassificationService.GetDataClassificationService parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.dataClassificationService' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - dataClassification.dataClassificationService summary: Update dataClassification operationId: dataClassification.dataClassificationService.UpdateDataClassificationService requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.dataClassificationService' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.dataClassificationService' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation /dataClassification/classifyFileJobs: description: Provides operations to manage the classifyFileJobs property of the microsoft.graph.dataClassificationService entity. get: tags: - dataClassification.jobResponseBase summary: Get classifyFileJobs from dataClassification operationId: dataClassification.ListClassifyFileJobs 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.jobResponseBaseCollectionResponse' 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: - dataClassification.jobResponseBase summary: Create new navigation property to classifyFileJobs for dataClassification operationId: dataClassification.CreateClassifyFileJobs requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/dataClassification/classifyFileJobs/{jobResponseBase-id}': description: Provides operations to manage the classifyFileJobs property of the microsoft.graph.dataClassificationService entity. get: tags: - dataClassification.jobResponseBase summary: Get classifyFileJobs from dataClassification operationId: dataClassification.GetClassifyFileJobs parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - dataClassification.jobResponseBase summary: Update the navigation property classifyFileJobs in dataClassification operationId: dataClassification.UpdateClassifyFileJobs requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - dataClassification.jobResponseBase summary: Delete navigation property classifyFileJobs for dataClassification operationId: dataClassification.DeleteClassifyFileJobs parameters: - 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: jobResponseBase-id in: path description: The unique identifier of jobResponseBase required: true schema: type: string x-ms-docs-key-type: jobResponseBase /dataClassification/classifyFileJobs/$count: description: Provides operations to count the resources in the collection. get: tags: - dataClassification.jobResponseBase summary: Get the number of the resource operationId: dataClassification.classifyFileJobs.GetCount-443c 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' /dataClassification/classifyTextJobs: description: Provides operations to manage the classifyTextJobs property of the microsoft.graph.dataClassificationService entity. get: tags: - dataClassification.jobResponseBase summary: Get classifyTextJobs from dataClassification operationId: dataClassification.ListClassifyTextJobs 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.jobResponseBaseCollectionResponse' 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: - dataClassification.jobResponseBase summary: Create new navigation property to classifyTextJobs for dataClassification operationId: dataClassification.CreateClassifyTextJobs requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/dataClassification/classifyTextJobs/{jobResponseBase-id}': description: Provides operations to manage the classifyTextJobs property of the microsoft.graph.dataClassificationService entity. get: tags: - dataClassification.jobResponseBase summary: Get classifyTextJobs from dataClassification operationId: dataClassification.GetClassifyTextJobs parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - dataClassification.jobResponseBase summary: Update the navigation property classifyTextJobs in dataClassification operationId: dataClassification.UpdateClassifyTextJobs requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - dataClassification.jobResponseBase summary: Delete navigation property classifyTextJobs for dataClassification operationId: dataClassification.DeleteClassifyTextJobs parameters: - 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: jobResponseBase-id in: path description: The unique identifier of jobResponseBase required: true schema: type: string x-ms-docs-key-type: jobResponseBase /dataClassification/classifyTextJobs/$count: description: Provides operations to count the resources in the collection. get: tags: - dataClassification.jobResponseBase summary: Get the number of the resource operationId: dataClassification.classifyTextJobs.GetCount-1585 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' /dataClassification/evaluateDlpPoliciesJobs: description: Provides operations to manage the evaluateDlpPoliciesJobs property of the microsoft.graph.dataClassificationService entity. get: tags: - dataClassification.jobResponseBase summary: Get evaluateDlpPoliciesJobs from dataClassification operationId: dataClassification.ListEvaluateDlpPoliciesJobs 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.jobResponseBaseCollectionResponse' 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: - dataClassification.jobResponseBase summary: Create new navigation property to evaluateDlpPoliciesJobs for dataClassification operationId: dataClassification.CreateEvaluateDlpPoliciesJobs requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/dataClassification/evaluateDlpPoliciesJobs/{jobResponseBase-id}': description: Provides operations to manage the evaluateDlpPoliciesJobs property of the microsoft.graph.dataClassificationService entity. get: tags: - dataClassification.jobResponseBase summary: Get evaluateDlpPoliciesJobs from dataClassification operationId: dataClassification.GetEvaluateDlpPoliciesJobs parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - dataClassification.jobResponseBase summary: Update the navigation property evaluateDlpPoliciesJobs in dataClassification operationId: dataClassification.UpdateEvaluateDlpPoliciesJobs requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - dataClassification.jobResponseBase summary: Delete navigation property evaluateDlpPoliciesJobs for dataClassification operationId: dataClassification.DeleteEvaluateDlpPoliciesJobs parameters: - 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: jobResponseBase-id in: path description: The unique identifier of jobResponseBase required: true schema: type: string x-ms-docs-key-type: jobResponseBase /dataClassification/evaluateDlpPoliciesJobs/$count: description: Provides operations to count the resources in the collection. get: tags: - dataClassification.jobResponseBase summary: Get the number of the resource operationId: dataClassification.evaluateDlpPoliciesJobs.GetCount-49a4 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' /dataClassification/evaluateLabelJobs: description: Provides operations to manage the evaluateLabelJobs property of the microsoft.graph.dataClassificationService entity. get: tags: - dataClassification.jobResponseBase summary: Get evaluateLabelJobs from dataClassification operationId: dataClassification.ListEvaluateLabelJobs 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.jobResponseBaseCollectionResponse' 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: - dataClassification.jobResponseBase summary: Create new navigation property to evaluateLabelJobs for dataClassification operationId: dataClassification.CreateEvaluateLabelJobs requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/dataClassification/evaluateLabelJobs/{jobResponseBase-id}': description: Provides operations to manage the evaluateLabelJobs property of the microsoft.graph.dataClassificationService entity. get: tags: - dataClassification.jobResponseBase summary: Get evaluateLabelJobs from dataClassification operationId: dataClassification.GetEvaluateLabelJobs parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - dataClassification.jobResponseBase summary: Update the navigation property evaluateLabelJobs in dataClassification operationId: dataClassification.UpdateEvaluateLabelJobs requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - dataClassification.jobResponseBase summary: Delete navigation property evaluateLabelJobs for dataClassification operationId: dataClassification.DeleteEvaluateLabelJobs parameters: - 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: jobResponseBase-id in: path description: The unique identifier of jobResponseBase required: true schema: type: string x-ms-docs-key-type: jobResponseBase /dataClassification/evaluateLabelJobs/$count: description: Provides operations to count the resources in the collection. get: tags: - dataClassification.jobResponseBase summary: Get the number of the resource operationId: dataClassification.evaluateLabelJobs.GetCount-f6d9 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' /dataClassification/exactMatchDataStores: description: Provides operations to manage the exactMatchDataStores property of the microsoft.graph.dataClassificationService entity. get: tags: - dataClassification.exactMatchDataStore summary: Get exactMatchDataStores from dataClassification operationId: dataClassification.ListExactMatchDataStores 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.exactMatchDataStoreCollectionResponse' 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: - dataClassification.exactMatchDataStore summary: Create new navigation property to exactMatchDataStores for dataClassification operationId: dataClassification.CreateExactMatchDataStores requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exactMatchDataStore' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exactMatchDataStore' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/dataClassification/exactMatchDataStores/{exactMatchDataStore-id}': description: Provides operations to manage the exactMatchDataStores property of the microsoft.graph.dataClassificationService entity. get: tags: - dataClassification.exactMatchDataStore summary: Get exactMatchDataStores from dataClassification operationId: dataClassification.GetExactMatchDataStores parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exactMatchDataStore' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - dataClassification.exactMatchDataStore summary: Update the navigation property exactMatchDataStores in dataClassification operationId: dataClassification.UpdateExactMatchDataStores requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exactMatchDataStore' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exactMatchDataStore' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - dataClassification.exactMatchDataStore summary: Delete navigation property exactMatchDataStores for dataClassification operationId: dataClassification.DeleteExactMatchDataStores parameters: - 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: exactMatchDataStore-id in: path description: The unique identifier of exactMatchDataStore required: true schema: type: string x-ms-docs-key-type: exactMatchDataStore '/dataClassification/exactMatchDataStores/{exactMatchDataStore-id}/lookup': description: Provides operations to call the lookup method. post: tags: - dataClassification.exactMatchDataStore summary: Invoke action lookup operationId: dataClassification.exactMatchDataStores.exactMatchDataStore.lookup requestBody: description: Action parameters content: application/json: schema: type: object properties: key: type: string nullable: true values: type: array items: type: string nullable: true resultColumnNames: type: array items: type: string 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 nullable: true 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: exactMatchDataStore-id in: path description: The unique identifier of exactMatchDataStore required: true schema: type: string x-ms-docs-key-type: exactMatchDataStore '/dataClassification/exactMatchDataStores/{exactMatchDataStore-id}/sessions': description: Provides operations to manage the sessions property of the microsoft.graph.exactMatchDataStore entity. get: tags: - dataClassification.exactMatchDataStore summary: Get sessions from dataClassification operationId: dataClassification.exactMatchDataStores.ListSessions 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.exactMatchSessionCollectionResponse' 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: - dataClassification.exactMatchDataStore summary: Create new navigation property to sessions for dataClassification operationId: dataClassification.exactMatchDataStores.CreateSessions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exactMatchSession' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exactMatchSession' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: exactMatchDataStore-id in: path description: The unique identifier of exactMatchDataStore required: true schema: type: string x-ms-docs-key-type: exactMatchDataStore '/dataClassification/exactMatchDataStores/{exactMatchDataStore-id}/sessions/{exactMatchSession-id}': description: Provides operations to manage the sessions property of the microsoft.graph.exactMatchDataStore entity. get: tags: - dataClassification.exactMatchDataStore summary: Get sessions from dataClassification operationId: dataClassification.exactMatchDataStores.GetSessions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exactMatchSession' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - dataClassification.exactMatchDataStore summary: Update the navigation property sessions in dataClassification operationId: dataClassification.exactMatchDataStores.UpdateSessions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exactMatchSession' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exactMatchSession' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - dataClassification.exactMatchDataStore summary: Delete navigation property sessions for dataClassification operationId: dataClassification.exactMatchDataStores.DeleteSessions parameters: - 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: exactMatchDataStore-id in: path description: The unique identifier of exactMatchDataStore required: true schema: type: string x-ms-docs-key-type: exactMatchDataStore - name: exactMatchSession-id in: path description: The unique identifier of exactMatchSession required: true schema: type: string x-ms-docs-key-type: exactMatchSession '/dataClassification/exactMatchDataStores/{exactMatchDataStore-id}/sessions/{exactMatchSession-id}/cancel': description: Provides operations to call the cancel method. post: tags: - dataClassification.exactMatchDataStore summary: Invoke action cancel operationId: dataClassification.exactMatchDataStores.exactMatchDataStore.sessions.exactMatchSession.cancel responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: exactMatchDataStore-id in: path description: The unique identifier of exactMatchDataStore required: true schema: type: string x-ms-docs-key-type: exactMatchDataStore - name: exactMatchSession-id in: path description: The unique identifier of exactMatchSession required: true schema: type: string x-ms-docs-key-type: exactMatchSession '/dataClassification/exactMatchDataStores/{exactMatchDataStore-id}/sessions/{exactMatchSession-id}/commit': description: Provides operations to call the commit method. post: tags: - dataClassification.exactMatchDataStore summary: Invoke action commit operationId: dataClassification.exactMatchDataStores.exactMatchDataStore.sessions.exactMatchSession.commit responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: exactMatchDataStore-id in: path description: The unique identifier of exactMatchDataStore required: true schema: type: string x-ms-docs-key-type: exactMatchDataStore - name: exactMatchSession-id in: path description: The unique identifier of exactMatchSession required: true schema: type: string x-ms-docs-key-type: exactMatchSession '/dataClassification/exactMatchDataStores/{exactMatchDataStore-id}/sessions/{exactMatchSession-id}/renew': description: Provides operations to call the renew method. post: tags: - dataClassification.exactMatchDataStore summary: Invoke action renew operationId: dataClassification.exactMatchDataStores.exactMatchDataStore.sessions.exactMatchSession.renew responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.exactMatchSession' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: exactMatchDataStore-id in: path description: The unique identifier of exactMatchDataStore required: true schema: type: string x-ms-docs-key-type: exactMatchDataStore - name: exactMatchSession-id in: path description: The unique identifier of exactMatchSession required: true schema: type: string x-ms-docs-key-type: exactMatchSession '/dataClassification/exactMatchDataStores/{exactMatchDataStore-id}/sessions/{exactMatchSession-id}/uploadAgent': description: Provides operations to manage the uploadAgent property of the microsoft.graph.exactMatchSession entity. get: tags: - dataClassification.exactMatchDataStore summary: Get uploadAgent from dataClassification operationId: dataClassification.exactMatchDataStores.sessions.GetUploadAgent parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exactMatchUploadAgent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - dataClassification.exactMatchDataStore summary: Update the navigation property uploadAgent in dataClassification operationId: dataClassification.exactMatchDataStores.sessions.UpdateUploadAgent requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exactMatchUploadAgent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exactMatchUploadAgent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - dataClassification.exactMatchDataStore summary: Delete navigation property uploadAgent for dataClassification operationId: dataClassification.exactMatchDataStores.sessions.DeleteUploadAgent parameters: - 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: exactMatchDataStore-id in: path description: The unique identifier of exactMatchDataStore required: true schema: type: string x-ms-docs-key-type: exactMatchDataStore - name: exactMatchSession-id in: path description: The unique identifier of exactMatchSession required: true schema: type: string x-ms-docs-key-type: exactMatchSession '/dataClassification/exactMatchDataStores/{exactMatchDataStore-id}/sessions/$count': description: Provides operations to count the resources in the collection. get: tags: - dataClassification.exactMatchDataStore summary: Get the number of the resource operationId: dataClassification.exactMatchDataStores.sessions.GetCount-6f25 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: exactMatchDataStore-id in: path description: The unique identifier of exactMatchDataStore required: true schema: type: string x-ms-docs-key-type: exactMatchDataStore /dataClassification/exactMatchDataStores/$count: description: Provides operations to count the resources in the collection. get: tags: - dataClassification.exactMatchDataStore summary: Get the number of the resource operationId: dataClassification.exactMatchDataStores.GetCount-6319 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' /dataClassification/exactMatchUploadAgents: description: Provides operations to manage the exactMatchUploadAgents property of the microsoft.graph.dataClassificationService entity. get: tags: - dataClassification.exactMatchUploadAgent summary: Get exactMatchUploadAgents from dataClassification operationId: dataClassification.ListExactMatchUploadAgents 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.exactMatchUploadAgentCollectionResponse' 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: - dataClassification.exactMatchUploadAgent summary: Create new navigation property to exactMatchUploadAgents for dataClassification operationId: dataClassification.CreateExactMatchUploadAgents requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exactMatchUploadAgent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exactMatchUploadAgent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/dataClassification/exactMatchUploadAgents/{exactMatchUploadAgent-id}': description: Provides operations to manage the exactMatchUploadAgents property of the microsoft.graph.dataClassificationService entity. get: tags: - dataClassification.exactMatchUploadAgent summary: Get exactMatchUploadAgents from dataClassification operationId: dataClassification.GetExactMatchUploadAgents parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exactMatchUploadAgent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - dataClassification.exactMatchUploadAgent summary: Update the navigation property exactMatchUploadAgents in dataClassification operationId: dataClassification.UpdateExactMatchUploadAgents requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exactMatchUploadAgent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.exactMatchUploadAgent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - dataClassification.exactMatchUploadAgent summary: Delete navigation property exactMatchUploadAgents for dataClassification operationId: dataClassification.DeleteExactMatchUploadAgents parameters: - 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: exactMatchUploadAgent-id in: path description: The unique identifier of exactMatchUploadAgent required: true schema: type: string x-ms-docs-key-type: exactMatchUploadAgent /dataClassification/exactMatchUploadAgents/$count: description: Provides operations to count the resources in the collection. get: tags: - dataClassification.exactMatchUploadAgent summary: Get the number of the resource operationId: dataClassification.exactMatchUploadAgents.GetCount-6b1e 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' /dataClassification/jobs: description: Provides operations to manage the jobs property of the microsoft.graph.dataClassificationService entity. get: tags: - dataClassification.jobResponseBase summary: Get jobs from dataClassification operationId: dataClassification.ListJobs 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.jobResponseBaseCollectionResponse' 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: - dataClassification.jobResponseBase summary: Create new navigation property to jobs for dataClassification operationId: dataClassification.CreateJobs requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/dataClassification/jobs/{jobResponseBase-id}': description: Provides operations to manage the jobs property of the microsoft.graph.dataClassificationService entity. get: tags: - dataClassification.jobResponseBase summary: Get jobs from dataClassification operationId: dataClassification.GetJobs parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - dataClassification.jobResponseBase summary: Update the navigation property jobs in dataClassification operationId: dataClassification.UpdateJobs requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.jobResponseBase' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - dataClassification.jobResponseBase summary: Delete navigation property jobs for dataClassification operationId: dataClassification.DeleteJobs parameters: - 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: jobResponseBase-id in: path description: The unique identifier of jobResponseBase required: true schema: type: string x-ms-docs-key-type: jobResponseBase /dataClassification/jobs/$count: description: Provides operations to count the resources in the collection. get: tags: - dataClassification.jobResponseBase summary: Get the number of the resource operationId: dataClassification.jobs.GetCount-5c75 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' /dataClassification/classifyExactMatches: description: Provides operations to call the classifyExactMatches method. post: tags: - dataClassification.dataClassificationService.Actions summary: Invoke action classifyExactMatches operationId: dataClassification.classifyExactMatches requestBody: description: Action parameters content: application/json: schema: type: object properties: text: type: string nullable: true timeoutInMs: type: string nullable: true sensitiveTypeIds: type: array items: type: string nullable: true contentClassifications: type: array items: $ref: '#/components/schemas/microsoft.graph.contentClassification' required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.exactMatchClassificationResult' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /dataClassification/classifyFile: description: Provides operations to call the classifyFile method. post: tags: - dataClassification.dataClassificationService.Actions summary: Invoke action classifyFile operationId: dataClassification.classifyFile requestBody: description: Action parameters content: application/json: schema: type: object properties: file: type: string format: base64url nullable: true sensitiveTypeIds: type: array items: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.classificationJobResponse' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /dataClassification/sensitiveTypes: description: Provides operations to manage the sensitiveTypes property of the microsoft.graph.dataClassificationService entity. get: tags: - dataClassification.sensitiveType summary: Get sensitiveTypes from dataClassification operationId: dataClassification.ListSensitiveTypes 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.sensitiveTypeCollectionResponse' 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: - dataClassification.sensitiveType summary: Create new navigation property to sensitiveTypes for dataClassification operationId: dataClassification.CreateSensitiveTypes requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sensitiveType' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sensitiveType' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/dataClassification/sensitiveTypes/{sensitiveType-id}': description: Provides operations to manage the sensitiveTypes property of the microsoft.graph.dataClassificationService entity. get: tags: - dataClassification.sensitiveType summary: Get sensitiveTypes from dataClassification operationId: dataClassification.GetSensitiveTypes parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sensitiveType' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - dataClassification.sensitiveType summary: Update the navigation property sensitiveTypes in dataClassification operationId: dataClassification.UpdateSensitiveTypes requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sensitiveType' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sensitiveType' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - dataClassification.sensitiveType summary: Delete navigation property sensitiveTypes for dataClassification operationId: dataClassification.DeleteSensitiveTypes parameters: - 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: sensitiveType-id in: path description: The unique identifier of sensitiveType required: true schema: type: string x-ms-docs-key-type: sensitiveType /dataClassification/sensitiveTypes/$count: description: Provides operations to count the resources in the collection. get: tags: - dataClassification.sensitiveType summary: Get the number of the resource operationId: dataClassification.sensitiveTypes.GetCount-5f01 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' /dataClassification/sensitivityLabels: description: Provides operations to manage the sensitivityLabels property of the microsoft.graph.dataClassificationService entity. get: tags: - dataClassification.sensitivityLabel summary: Get sensitivityLabels from dataClassification operationId: dataClassification.ListSensitivityLabels 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.sensitivityLabelCollectionResponse' 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: - dataClassification.sensitivityLabel summary: Create new navigation property to sensitivityLabels for dataClassification operationId: dataClassification.CreateSensitivityLabels requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sensitivityLabel' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sensitivityLabel' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/dataClassification/sensitivityLabels/{sensitivityLabel-id}': description: Provides operations to manage the sensitivityLabels property of the microsoft.graph.dataClassificationService entity. get: tags: - dataClassification.sensitivityLabel summary: Get sensitivityLabels from dataClassification operationId: dataClassification.GetSensitivityLabels parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sensitivityLabel' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - dataClassification.sensitivityLabel summary: Update the navigation property sensitivityLabels in dataClassification operationId: dataClassification.UpdateSensitivityLabels requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sensitivityLabel' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sensitivityLabel' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - dataClassification.sensitivityLabel summary: Delete navigation property sensitivityLabels for dataClassification operationId: dataClassification.DeleteSensitivityLabels parameters: - 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: sensitivityLabel-id in: path description: The unique identifier of sensitivityLabel required: true schema: type: string x-ms-docs-key-type: sensitivityLabel '/dataClassification/sensitivityLabels/{sensitivityLabel-id}/rights': description: Provides operations to manage the rights property of the microsoft.graph.sensitivityLabel entity. get: tags: - dataClassification.sensitivityLabel summary: Get rights from dataClassification operationId: dataClassification.sensitivityLabels.GetRights parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.usageRightsIncluded' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: sensitivityLabel-id in: path description: The unique identifier of sensitivityLabel required: true schema: type: string x-ms-docs-key-type: sensitivityLabel x-ms-docs-grouped-path: - '/dataClassification/sensitivityLabels/{sensitivityLabel-id}/sublabels/{sensitivityLabel-id1}/rights' '/dataClassification/sensitivityLabels/{sensitivityLabel-id}/sublabels': description: Provides operations to manage the sublabels property of the microsoft.graph.sensitivityLabel entity. get: tags: - dataClassification.sensitivityLabel summary: Get sublabels from dataClassification operationId: dataClassification.sensitivityLabels.ListSublabels 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.sensitivityLabelCollectionResponse' 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: - dataClassification.sensitivityLabel summary: Create new navigation property to sublabels for dataClassification operationId: dataClassification.sensitivityLabels.CreateSublabels requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sensitivityLabel' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sensitivityLabel' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: sensitivityLabel-id in: path description: The unique identifier of sensitivityLabel required: true schema: type: string x-ms-docs-key-type: sensitivityLabel '/dataClassification/sensitivityLabels/{sensitivityLabel-id}/sublabels/{sensitivityLabel-id1}': description: Provides operations to manage the sublabels property of the microsoft.graph.sensitivityLabel entity. get: tags: - dataClassification.sensitivityLabel summary: Get sublabels from dataClassification operationId: dataClassification.sensitivityLabels.GetSublabels parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sensitivityLabel' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - dataClassification.sensitivityLabel summary: Update the navigation property sublabels in dataClassification operationId: dataClassification.sensitivityLabels.UpdateSublabels requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sensitivityLabel' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.sensitivityLabel' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - dataClassification.sensitivityLabel summary: Delete navigation property sublabels for dataClassification operationId: dataClassification.sensitivityLabels.DeleteSublabels parameters: - 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: sensitivityLabel-id in: path description: The unique identifier of sensitivityLabel required: true schema: type: string x-ms-docs-key-type: sensitivityLabel - name: sensitivityLabel-id1 in: path description: The unique identifier of sensitivityLabel required: true schema: type: string x-ms-docs-key-type: sensitivityLabel '/dataClassification/sensitivityLabels/{sensitivityLabel-id}/sublabels/{sensitivityLabel-id1}/rights': description: Provides operations to manage the rights property of the microsoft.graph.sensitivityLabel entity. get: tags: - dataClassification.sensitivityLabel summary: Get rights from dataClassification operationId: dataClassification.sensitivityLabels.sublabels.GetRights parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.usageRightsIncluded' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: sensitivityLabel-id in: path description: The unique identifier of sensitivityLabel required: true schema: type: string x-ms-docs-key-type: sensitivityLabel - name: sensitivityLabel-id1 in: path description: The unique identifier of sensitivityLabel required: true schema: type: string x-ms-docs-key-type: sensitivityLabel x-ms-docs-grouped-path: - '/dataClassification/sensitivityLabels/{sensitivityLabel-id}/rights' '/dataClassification/sensitivityLabels/{sensitivityLabel-id}/sublabels/$count': description: Provides operations to count the resources in the collection. get: tags: - dataClassification.sensitivityLabel summary: Get the number of the resource operationId: dataClassification.sensitivityLabels.sublabels.GetCount-2e8c 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: sensitivityLabel-id in: path description: The unique identifier of sensitivityLabel required: true schema: type: string x-ms-docs-key-type: sensitivityLabel '/dataClassification/sensitivityLabels/{sensitivityLabel-id}/sublabels/computeInheritance(labelIds={labelIds},locale=''{locale}'',contentFormats={contentFormats})': description: Provides operations to call the computeInheritance method. get: tags: - dataClassification.sensitivityLabel summary: Invoke function computeInheritance description: 'Calculate the sensitivity label that should be inherited by an output artifact, given a set of sensitivity labels from input or referenced artifacts.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/sensitivitylabel-computeinheritance?view=graph-rest-beta operationId: dataClassification.sensitivityLabels.sensitivityLabel.sublabels.computeInheritance responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.sensitivityLabel' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: sensitivityLabel-id in: path description: The unique identifier of sensitivityLabel required: true schema: type: string x-ms-docs-key-type: sensitivityLabel - name: labelIds in: path description: 'Usage: labelIds={labelIds}' required: true content: application/json: schema: type: array items: type: string - name: locale in: path description: 'Usage: locale=''{locale}''' required: true schema: type: string nullable: true - name: contentFormats in: path description: 'Usage: contentFormats={contentFormats}' required: true content: application/json: schema: type: array items: type: string x-ms-docs-grouped-path: - '/dataClassification/sensitivityLabels/computeInheritance(labelIds={labelIds},locale=''{locale}'',contentFormats={contentFormats})' '/dataClassification/sensitivityLabels/{sensitivityLabel-id}/sublabels/computeRightsAndInheritance': description: Provides operations to call the computeRightsAndInheritance method. post: tags: - dataClassification.sensitivityLabel summary: Invoke action computeRightsAndInheritance description: Computes the rights and inheritance for sensitivity labels based on the input content and labels. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/sensitivitylabel-computerightsandinheritance?view=graph-rest-beta operationId: dataClassification.sensitivityLabels.sensitivityLabel.sublabels.computeRightsAndInheritance requestBody: description: Action parameters content: application/json: schema: type: object properties: delegatedUserEmail: type: string nullable: true locale: type: string nullable: true protectedContents: type: array items: $ref: '#/components/schemas/microsoft.graph.protectedContent' supportedContentFormats: type: array items: type: string required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.computeRightsAndInheritanceResult' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: sensitivityLabel-id in: path description: The unique identifier of sensitivityLabel required: true schema: type: string x-ms-docs-key-type: sensitivityLabel x-ms-docs-grouped-path: - /dataClassification/sensitivityLabels/computeRightsAndInheritance '/dataClassification/sensitivityLabels/{sensitivityLabel-id}/sublabels/evaluate': description: Provides operations to call the evaluate method. post: tags: - dataClassification.sensitivityLabel summary: Invoke action evaluate operationId: dataClassification.sensitivityLabels.sensitivityLabel.sublabels.evaluate requestBody: description: Action parameters content: application/json: schema: type: object properties: discoveredSensitiveTypes: type: array items: $ref: '#/components/schemas/microsoft.graph.discoveredSensitiveType' currentLabel: anyOf: - $ref: '#/components/schemas/microsoft.graph.currentLabel' - type: object nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.evaluateLabelJobResponse' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: sensitivityLabel-id in: path description: The unique identifier of sensitivityLabel required: true schema: type: string x-ms-docs-key-type: sensitivityLabel x-ms-docs-grouped-path: - /dataClassification/sensitivityLabels/evaluate /dataClassification/sensitivityLabels/$count: description: Provides operations to count the resources in the collection. get: tags: - dataClassification.sensitivityLabel summary: Get the number of the resource operationId: dataClassification.sensitivityLabels.GetCount-4799 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' '/dataClassification/sensitivityLabels/computeInheritance(labelIds={labelIds},locale=''{locale}'',contentFormats={contentFormats})': description: Provides operations to call the computeInheritance method. get: tags: - dataClassification.sensitivityLabel summary: Invoke function computeInheritance description: 'Calculate the sensitivity label that should be inherited by an output artifact, given a set of sensitivity labels from input or referenced artifacts.' externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/sensitivitylabel-computeinheritance?view=graph-rest-beta operationId: dataClassification.sensitivityLabels.computeInheritance responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.sensitivityLabel' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: labelIds in: path description: 'Usage: labelIds={labelIds}' required: true content: application/json: schema: type: array items: type: string - name: locale in: path description: 'Usage: locale=''{locale}''' required: true schema: type: string nullable: true - name: contentFormats in: path description: 'Usage: contentFormats={contentFormats}' required: true content: application/json: schema: type: array items: type: string x-ms-docs-grouped-path: - '/dataClassification/sensitivityLabels/{sensitivityLabel-id}/sublabels/computeInheritance(labelIds={labelIds},locale=''{locale}'',contentFormats={contentFormats})' /dataClassification/sensitivityLabels/computeRightsAndInheritance: description: Provides operations to call the computeRightsAndInheritance method. post: tags: - dataClassification.sensitivityLabel summary: Invoke action computeRightsAndInheritance description: Computes the rights and inheritance for sensitivity labels based on the input content and labels. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/sensitivitylabel-computerightsandinheritance?view=graph-rest-beta operationId: dataClassification.sensitivityLabels.computeRightsAndInheritance requestBody: description: Action parameters content: application/json: schema: type: object properties: delegatedUserEmail: type: string nullable: true locale: type: string nullable: true protectedContents: type: array items: $ref: '#/components/schemas/microsoft.graph.protectedContent' supportedContentFormats: type: array items: type: string required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.computeRightsAndInheritanceResult' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-docs-grouped-path: - '/dataClassification/sensitivityLabels/{sensitivityLabel-id}/sublabels/computeRightsAndInheritance' /dataClassification/sensitivityLabels/evaluate: description: Provides operations to call the evaluate method. post: tags: - dataClassification.sensitivityLabel summary: Invoke action evaluate operationId: dataClassification.sensitivityLabels.evaluate requestBody: description: Action parameters content: application/json: schema: type: object properties: discoveredSensitiveTypes: type: array items: $ref: '#/components/schemas/microsoft.graph.discoveredSensitiveType' currentLabel: anyOf: - $ref: '#/components/schemas/microsoft.graph.currentLabel' - type: object nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.evaluateLabelJobResponse' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-docs-grouped-path: - '/dataClassification/sensitivityLabels/{sensitivityLabel-id}/sublabels/evaluate' /dataPolicyOperations: description: Provides operations to manage the collection of dataPolicyOperation entities. get: tags: - dataPolicyOperations.dataPolicyOperation summary: Get dataPolicyOperation description: Retrieve the properties of the dataPolicyOperation object. operationId: dataPolicyOperations.dataPolicyOperation.ListDataPolicyOperation 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.dataPolicyOperationCollectionResponse' 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: - dataPolicyOperations.dataPolicyOperation summary: Add new entity to dataPolicyOperations operationId: dataPolicyOperations.dataPolicyOperation.CreateDataPolicyOperation requestBody: description: New entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.dataPolicyOperation' required: true responses: 2XX: description: Created entity content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.dataPolicyOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/dataPolicyOperations/{dataPolicyOperation-id}': description: Provides operations to manage the collection of dataPolicyOperation entities. get: tags: - dataPolicyOperations.dataPolicyOperation summary: Get dataPolicyOperation description: Retrieve the properties of the dataPolicyOperation object. externalDocs: description: Find more info here url: https://learn.microsoft.com/graph/api/datapolicyoperation-get?view=graph-rest-beta operationId: dataPolicyOperations.dataPolicyOperation.GetDataPolicyOperation parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.dataPolicyOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - dataPolicyOperations.dataPolicyOperation summary: Update entity in dataPolicyOperations operationId: dataPolicyOperations.dataPolicyOperation.UpdateDataPolicyOperation requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.dataPolicyOperation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.dataPolicyOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - dataPolicyOperations.dataPolicyOperation summary: Delete entity from dataPolicyOperations operationId: dataPolicyOperations.dataPolicyOperation.DeleteDataPolicyOperation parameters: - 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: dataPolicyOperation-id in: path description: The unique identifier of dataPolicyOperation required: true schema: type: string x-ms-docs-key-type: dataPolicyOperation /dataPolicyOperations/$count: description: Provides operations to count the resources in the collection. get: tags: - dataPolicyOperations.dataPolicyOperation summary: Get the number of the resource operationId: dataPolicyOperations.GetCount-b129 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' /deviceAppManagement: description: Provides operations to manage the deviceAppManagement singleton. get: tags: - deviceAppManagement.deviceAppManagement summary: Get deviceAppManagement operationId: deviceAppManagement.deviceAppManagement.GetDeviceAppManagement parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.deviceAppManagement' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.deviceAppManagement summary: Update deviceAppManagement operationId: deviceAppManagement.deviceAppManagement.UpdateDeviceAppManagement requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceAppManagement' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceAppManagement' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation /deviceAppManagement/androidManagedAppProtections: description: Provides operations to manage the androidManagedAppProtections property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.androidManagedAppProtection summary: Get androidManagedAppProtections from deviceAppManagement description: Android managed app policies. operationId: deviceAppManagement.ListAndroidManagedAppProtections 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.androidManagedAppProtectionCollectionResponse' 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: - deviceAppManagement.androidManagedAppProtection summary: Create new navigation property to androidManagedAppProtections for deviceAppManagement operationId: deviceAppManagement.CreateAndroidManagedAppProtections requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidManagedAppProtection' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidManagedAppProtection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}': description: Provides operations to manage the androidManagedAppProtections property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.androidManagedAppProtection summary: Get androidManagedAppProtections from deviceAppManagement description: Android managed app policies. operationId: deviceAppManagement.GetAndroidManagedAppProtections parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidManagedAppProtection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.androidManagedAppProtection summary: Update the navigation property androidManagedAppProtections in deviceAppManagement operationId: deviceAppManagement.UpdateAndroidManagedAppProtections requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidManagedAppProtection' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidManagedAppProtection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.androidManagedAppProtection summary: Delete navigation property androidManagedAppProtections for deviceAppManagement operationId: deviceAppManagement.DeleteAndroidManagedAppProtections parameters: - 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: androidManagedAppProtection-id in: path description: The unique identifier of androidManagedAppProtection required: true schema: type: string x-ms-docs-key-type: androidManagedAppProtection '/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps': description: Provides operations to manage the apps property of the microsoft.graph.androidManagedAppProtection entity. get: tags: - deviceAppManagement.androidManagedAppProtection summary: Get apps from deviceAppManagement description: List of apps to which the policy is deployed. operationId: deviceAppManagement.androidManagedAppProtections.ListApps 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.managedMobileAppCollectionResponse' 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: - deviceAppManagement.androidManagedAppProtection summary: Create new navigation property to apps for deviceAppManagement operationId: deviceAppManagement.androidManagedAppProtections.CreateApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: androidManagedAppProtection-id in: path description: The unique identifier of androidManagedAppProtection required: true schema: type: string x-ms-docs-key-type: androidManagedAppProtection '/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}': description: Provides operations to manage the apps property of the microsoft.graph.androidManagedAppProtection entity. get: tags: - deviceAppManagement.androidManagedAppProtection summary: Get apps from deviceAppManagement description: List of apps to which the policy is deployed. operationId: deviceAppManagement.androidManagedAppProtections.GetApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.androidManagedAppProtection summary: Update the navigation property apps in deviceAppManagement operationId: deviceAppManagement.androidManagedAppProtections.UpdateApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.androidManagedAppProtection summary: Delete navigation property apps for deviceAppManagement operationId: deviceAppManagement.androidManagedAppProtections.DeleteApps parameters: - 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: androidManagedAppProtection-id in: path description: The unique identifier of androidManagedAppProtection required: true schema: type: string x-ms-docs-key-type: androidManagedAppProtection - name: managedMobileApp-id in: path description: The unique identifier of managedMobileApp required: true schema: type: string x-ms-docs-key-type: managedMobileApp '/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.androidManagedAppProtection summary: Get the number of the resource operationId: deviceAppManagement.androidManagedAppProtections.apps.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: androidManagedAppProtection-id in: path description: The unique identifier of androidManagedAppProtection required: true schema: type: string x-ms-docs-key-type: androidManagedAppProtection '/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.targetedManagedAppProtection entity. get: tags: - deviceAppManagement.androidManagedAppProtection summary: Get assignments from deviceAppManagement description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.androidManagedAppProtections.ListAssignments 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.targetedManagedAppPolicyAssignmentCollectionResponse' 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: - deviceAppManagement.androidManagedAppProtection summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.androidManagedAppProtections.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: androidManagedAppProtection-id in: path description: The unique identifier of androidManagedAppProtection required: true schema: type: string x-ms-docs-key-type: androidManagedAppProtection x-ms-docs-grouped-path: - '/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments' '/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.targetedManagedAppProtection entity. get: tags: - deviceAppManagement.androidManagedAppProtection summary: Get assignments from deviceAppManagement description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.androidManagedAppProtections.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.androidManagedAppProtection summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.androidManagedAppProtections.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.androidManagedAppProtection summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.androidManagedAppProtections.DeleteAssignments parameters: - 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: androidManagedAppProtection-id in: path description: The unique identifier of androidManagedAppProtection required: true schema: type: string x-ms-docs-key-type: androidManagedAppProtection - name: targetedManagedAppPolicyAssignment-id in: path description: The unique identifier of targetedManagedAppPolicyAssignment required: true schema: type: string x-ms-docs-key-type: targetedManagedAppPolicyAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}' '/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.androidManagedAppProtection summary: Get the number of the resource operationId: deviceAppManagement.androidManagedAppProtections.assignments.GetCount-574a 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: androidManagedAppProtection-id in: path description: The unique identifier of androidManagedAppProtection required: true schema: type: string x-ms-docs-key-type: androidManagedAppProtection '/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary': description: Provides operations to manage the deploymentSummary property of the microsoft.graph.androidManagedAppProtection entity. get: tags: - deviceAppManagement.androidManagedAppProtection summary: Get deploymentSummary from deviceAppManagement description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.androidManagedAppProtections.GetDeploymentSummary parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.androidManagedAppProtection summary: Update the navigation property deploymentSummary in deviceAppManagement operationId: deviceAppManagement.androidManagedAppProtections.UpdateDeploymentSummary requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.androidManagedAppProtection summary: Delete navigation property deploymentSummary for deviceAppManagement operationId: deviceAppManagement.androidManagedAppProtections.DeleteDeploymentSummary parameters: - 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: androidManagedAppProtection-id in: path description: The unique identifier of androidManagedAppProtection required: true schema: type: string x-ms-docs-key-type: androidManagedAppProtection /deviceAppManagement/androidManagedAppProtections/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.androidManagedAppProtection summary: Get the number of the resource operationId: deviceAppManagement.androidManagedAppProtections.GetCount-dc72 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' /deviceAppManagement/androidManagedAppProtections/hasPayloadLinks: description: Provides operations to call the hasPayloadLinks method. post: tags: - deviceAppManagement.androidManagedAppProtection summary: Invoke action hasPayloadLinks operationId: deviceAppManagement.androidManagedAppProtections.hasPayloadLinks requestBody: description: Action parameters content: application/json: schema: type: object properties: payloadIds: type: array items: type: string 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.hasPayloadLinkResultItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-grouped-path: - /deviceAppManagement/iosLobAppProvisioningConfigurations/hasPayloadLinks - /deviceAppManagement/iosManagedAppProtections/hasPayloadLinks - /deviceAppManagement/mdmWindowsInformationProtectionPolicies/hasPayloadLinks - /deviceAppManagement/mobileApps/hasPayloadLinks - /deviceAppManagement/targetedManagedAppConfigurations/hasPayloadLinks /deviceAppManagement/defaultManagedAppProtections: description: Provides operations to manage the defaultManagedAppProtections property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get defaultManagedAppProtections from deviceAppManagement description: Default managed app policies. operationId: deviceAppManagement.ListDefaultManagedAppProtections 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.defaultManagedAppProtectionCollectionResponse' 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: - deviceAppManagement.defaultManagedAppProtection summary: Create new navigation property to defaultManagedAppProtections for deviceAppManagement operationId: deviceAppManagement.CreateDefaultManagedAppProtections requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.defaultManagedAppProtection' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.defaultManagedAppProtection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}': description: Provides operations to manage the defaultManagedAppProtections property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get defaultManagedAppProtections from deviceAppManagement description: Default managed app policies. operationId: deviceAppManagement.GetDefaultManagedAppProtections parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.defaultManagedAppProtection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.defaultManagedAppProtection summary: Update the navigation property defaultManagedAppProtections in deviceAppManagement operationId: deviceAppManagement.UpdateDefaultManagedAppProtections requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.defaultManagedAppProtection' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.defaultManagedAppProtection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.defaultManagedAppProtection summary: Delete navigation property defaultManagedAppProtections for deviceAppManagement operationId: deviceAppManagement.DeleteDefaultManagedAppProtections parameters: - 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: defaultManagedAppProtection-id in: path description: The unique identifier of defaultManagedAppProtection required: true schema: type: string x-ms-docs-key-type: defaultManagedAppProtection '/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps': description: Provides operations to manage the apps property of the microsoft.graph.defaultManagedAppProtection entity. get: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get apps from deviceAppManagement description: List of apps to which the policy is deployed. operationId: deviceAppManagement.defaultManagedAppProtections.ListApps 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.managedMobileAppCollectionResponse' 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: - deviceAppManagement.defaultManagedAppProtection summary: Create new navigation property to apps for deviceAppManagement operationId: deviceAppManagement.defaultManagedAppProtections.CreateApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: defaultManagedAppProtection-id in: path description: The unique identifier of defaultManagedAppProtection required: true schema: type: string x-ms-docs-key-type: defaultManagedAppProtection '/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}': description: Provides operations to manage the apps property of the microsoft.graph.defaultManagedAppProtection entity. get: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get apps from deviceAppManagement description: List of apps to which the policy is deployed. operationId: deviceAppManagement.defaultManagedAppProtections.GetApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.defaultManagedAppProtection summary: Update the navigation property apps in deviceAppManagement operationId: deviceAppManagement.defaultManagedAppProtections.UpdateApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.defaultManagedAppProtection summary: Delete navigation property apps for deviceAppManagement operationId: deviceAppManagement.defaultManagedAppProtections.DeleteApps parameters: - 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: defaultManagedAppProtection-id in: path description: The unique identifier of defaultManagedAppProtection required: true schema: type: string x-ms-docs-key-type: defaultManagedAppProtection - name: managedMobileApp-id in: path description: The unique identifier of managedMobileApp required: true schema: type: string x-ms-docs-key-type: managedMobileApp '/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get the number of the resource operationId: deviceAppManagement.defaultManagedAppProtections.apps.GetCount-9a28 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: defaultManagedAppProtection-id in: path description: The unique identifier of defaultManagedAppProtection required: true schema: type: string x-ms-docs-key-type: defaultManagedAppProtection '/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary': description: Provides operations to manage the deploymentSummary property of the microsoft.graph.defaultManagedAppProtection entity. get: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get deploymentSummary from deviceAppManagement description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.defaultManagedAppProtections.GetDeploymentSummary parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.defaultManagedAppProtection summary: Update the navigation property deploymentSummary in deviceAppManagement operationId: deviceAppManagement.defaultManagedAppProtections.UpdateDeploymentSummary requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.defaultManagedAppProtection summary: Delete navigation property deploymentSummary for deviceAppManagement operationId: deviceAppManagement.defaultManagedAppProtections.DeleteDeploymentSummary parameters: - 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: defaultManagedAppProtection-id in: path description: The unique identifier of defaultManagedAppProtection required: true schema: type: string x-ms-docs-key-type: defaultManagedAppProtection /deviceAppManagement/defaultManagedAppProtections/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.defaultManagedAppProtection summary: Get the number of the resource operationId: deviceAppManagement.defaultManagedAppProtections.GetCount-9b85 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' /deviceAppManagement/deviceAppManagementTasks: description: Provides operations to manage the deviceAppManagementTasks property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.deviceAppManagementTask summary: Get deviceAppManagementTasks from deviceAppManagement description: Device app management tasks. operationId: deviceAppManagement.ListDeviceAppManagementTasks 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.deviceAppManagementTaskCollectionResponse' 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: - deviceAppManagement.deviceAppManagementTask summary: Create new navigation property to deviceAppManagementTasks for deviceAppManagement operationId: deviceAppManagement.CreateDeviceAppManagementTasks requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceAppManagementTask' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceAppManagementTask' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/deviceAppManagementTasks/{deviceAppManagementTask-id}': description: Provides operations to manage the deviceAppManagementTasks property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.deviceAppManagementTask summary: Get deviceAppManagementTasks from deviceAppManagement description: Device app management tasks. operationId: deviceAppManagement.GetDeviceAppManagementTasks parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceAppManagementTask' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.deviceAppManagementTask summary: Update the navigation property deviceAppManagementTasks in deviceAppManagement operationId: deviceAppManagement.UpdateDeviceAppManagementTasks requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceAppManagementTask' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceAppManagementTask' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.deviceAppManagementTask summary: Delete navigation property deviceAppManagementTasks for deviceAppManagement operationId: deviceAppManagement.DeleteDeviceAppManagementTasks parameters: - 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: deviceAppManagementTask-id in: path description: The unique identifier of deviceAppManagementTask required: true schema: type: string x-ms-docs-key-type: deviceAppManagementTask '/deviceAppManagement/deviceAppManagementTasks/{deviceAppManagementTask-id}/updateStatus': description: Provides operations to call the updateStatus method. post: tags: - deviceAppManagement.deviceAppManagementTask summary: Invoke action updateStatus description: Set the task's status and attach a note. operationId: deviceAppManagement.deviceAppManagementTasks.deviceAppManagementTask.updateStatus requestBody: description: Action parameters content: application/json: schema: type: object properties: status: $ref: '#/components/schemas/microsoft.graph.deviceAppManagementTaskStatus' note: 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: deviceAppManagementTask-id in: path description: The unique identifier of deviceAppManagementTask required: true schema: type: string x-ms-docs-key-type: deviceAppManagementTask /deviceAppManagement/deviceAppManagementTasks/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.deviceAppManagementTask summary: Get the number of the resource operationId: deviceAppManagement.deviceAppManagementTasks.GetCount-ec90 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' /deviceAppManagement/enterpriseCodeSigningCertificates: description: Provides operations to manage the enterpriseCodeSigningCertificates property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.enterpriseCodeSigningCertificate summary: Get enterpriseCodeSigningCertificates from deviceAppManagement description: The Windows Enterprise Code Signing Certificate. operationId: deviceAppManagement.ListEnterpriseCodeSigningCertificates 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.enterpriseCodeSigningCertificateCollectionResponse' 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: - deviceAppManagement.enterpriseCodeSigningCertificate summary: Create new navigation property to enterpriseCodeSigningCertificates for deviceAppManagement operationId: deviceAppManagement.CreateEnterpriseCodeSigningCertificates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.enterpriseCodeSigningCertificate' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.enterpriseCodeSigningCertificate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/enterpriseCodeSigningCertificates/{enterpriseCodeSigningCertificate-id}': description: Provides operations to manage the enterpriseCodeSigningCertificates property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.enterpriseCodeSigningCertificate summary: Get enterpriseCodeSigningCertificates from deviceAppManagement description: The Windows Enterprise Code Signing Certificate. operationId: deviceAppManagement.GetEnterpriseCodeSigningCertificates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.enterpriseCodeSigningCertificate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.enterpriseCodeSigningCertificate summary: Update the navigation property enterpriseCodeSigningCertificates in deviceAppManagement operationId: deviceAppManagement.UpdateEnterpriseCodeSigningCertificates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.enterpriseCodeSigningCertificate' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.enterpriseCodeSigningCertificate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.enterpriseCodeSigningCertificate summary: Delete navigation property enterpriseCodeSigningCertificates for deviceAppManagement operationId: deviceAppManagement.DeleteEnterpriseCodeSigningCertificates parameters: - 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: enterpriseCodeSigningCertificate-id in: path description: The unique identifier of enterpriseCodeSigningCertificate required: true schema: type: string x-ms-docs-key-type: enterpriseCodeSigningCertificate /deviceAppManagement/enterpriseCodeSigningCertificates/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.enterpriseCodeSigningCertificate summary: Get the number of the resource operationId: deviceAppManagement.enterpriseCodeSigningCertificates.GetCount-f6c2 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' /deviceAppManagement/iosLobAppProvisioningConfigurations: description: Provides operations to manage the iosLobAppProvisioningConfigurations property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get iosLobAppProvisioningConfigurations from deviceAppManagement description: The IOS Lob App Provisioning Configurations. operationId: deviceAppManagement.ListIosLobAppProvisioningConfigurations 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.iosLobAppProvisioningConfigurationCollectionResponse' 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: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Create new navigation property to iosLobAppProvisioningConfigurations for deviceAppManagement operationId: deviceAppManagement.CreateIosLobAppProvisioningConfigurations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosLobAppProvisioningConfiguration' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosLobAppProvisioningConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}': description: Provides operations to manage the iosLobAppProvisioningConfigurations property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get iosLobAppProvisioningConfigurations from deviceAppManagement description: The IOS Lob App Provisioning Configurations. operationId: deviceAppManagement.GetIosLobAppProvisioningConfigurations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosLobAppProvisioningConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Update the navigation property iosLobAppProvisioningConfigurations in deviceAppManagement operationId: deviceAppManagement.UpdateIosLobAppProvisioningConfigurations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosLobAppProvisioningConfiguration' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosLobAppProvisioningConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Delete navigation property iosLobAppProvisioningConfigurations for deviceAppManagement operationId: deviceAppManagement.DeleteIosLobAppProvisioningConfigurations parameters: - 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: iosLobAppProvisioningConfiguration-id in: path description: The unique identifier of iosLobAppProvisioningConfiguration required: true schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.iosLobAppProvisioningConfiguration entity. get: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get assignments from deviceAppManagement description: 'The associated group assignments for IosLobAppProvisioningConfiguration, this determines which devices/users the IOS LOB app provisioning conifguration will be targeted to.' operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.ListAssignments 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.iosLobAppProvisioningConfigurationAssignmentCollectionResponse' 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: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosLobAppProvisioningConfigurationAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosLobAppProvisioningConfigurationAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: iosLobAppProvisioningConfiguration-id in: path description: The unique identifier of iosLobAppProvisioningConfiguration required: true schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments/{iosLobAppProvisioningConfigurationAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.iosLobAppProvisioningConfiguration entity. get: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get assignments from deviceAppManagement description: 'The associated group assignments for IosLobAppProvisioningConfiguration, this determines which devices/users the IOS LOB app provisioning conifguration will be targeted to.' operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosLobAppProvisioningConfigurationAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosLobAppProvisioningConfigurationAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosLobAppProvisioningConfigurationAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.DeleteAssignments parameters: - 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: iosLobAppProvisioningConfiguration-id in: path description: The unique identifier of iosLobAppProvisioningConfiguration required: true schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration - name: iosLobAppProvisioningConfigurationAssignment-id in: path description: The unique identifier of iosLobAppProvisioningConfigurationAssignment required: true schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfigurationAssignment '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get the number of the resource operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.assignments.GetCount-d8b8 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: iosLobAppProvisioningConfiguration-id in: path description: The unique identifier of iosLobAppProvisioningConfiguration required: true schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses': description: Provides operations to manage the deviceStatuses property of the microsoft.graph.iosLobAppProvisioningConfiguration entity. get: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get deviceStatuses from deviceAppManagement description: The list of device installation states for this mobile app configuration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.ListDeviceStatuses 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.managedDeviceMobileAppConfigurationDeviceStatusCollectionResponse' 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: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Create new navigation property to deviceStatuses for deviceAppManagement operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.CreateDeviceStatuses requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: iosLobAppProvisioningConfiguration-id in: path description: The unique identifier of iosLobAppProvisioningConfiguration required: true schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}': description: Provides operations to manage the deviceStatuses property of the microsoft.graph.iosLobAppProvisioningConfiguration entity. get: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get deviceStatuses from deviceAppManagement description: The list of device installation states for this mobile app configuration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.GetDeviceStatuses parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Update the navigation property deviceStatuses in deviceAppManagement operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.UpdateDeviceStatuses requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Delete navigation property deviceStatuses for deviceAppManagement operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.DeleteDeviceStatuses parameters: - 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: iosLobAppProvisioningConfiguration-id in: path description: The unique identifier of iosLobAppProvisioningConfiguration required: true schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration - name: managedDeviceMobileAppConfigurationDeviceStatus-id in: path description: The unique identifier of managedDeviceMobileAppConfigurationDeviceStatus required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationDeviceStatus '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get the number of the resource operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.deviceStatuses.GetCount-47ef 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: iosLobAppProvisioningConfiguration-id in: path description: The unique identifier of iosLobAppProvisioningConfiguration required: true schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments': description: Provides operations to manage the groupAssignments property of the microsoft.graph.iosLobAppProvisioningConfiguration entity. get: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get groupAssignments from deviceAppManagement description: The associated group assignments. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.ListGroupAssignments 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.mobileAppProvisioningConfigGroupAssignmentCollectionResponse' 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: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Create new navigation property to groupAssignments for deviceAppManagement operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.CreateGroupAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppProvisioningConfigGroupAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppProvisioningConfigGroupAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: iosLobAppProvisioningConfiguration-id in: path description: The unique identifier of iosLobAppProvisioningConfiguration required: true schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments/{mobileAppProvisioningConfigGroupAssignment-id}': description: Provides operations to manage the groupAssignments property of the microsoft.graph.iosLobAppProvisioningConfiguration entity. get: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get groupAssignments from deviceAppManagement description: The associated group assignments. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.GetGroupAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppProvisioningConfigGroupAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Update the navigation property groupAssignments in deviceAppManagement operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.UpdateGroupAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppProvisioningConfigGroupAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppProvisioningConfigGroupAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Delete navigation property groupAssignments for deviceAppManagement operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.DeleteGroupAssignments parameters: - 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: iosLobAppProvisioningConfiguration-id in: path description: The unique identifier of iosLobAppProvisioningConfiguration required: true schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration - name: mobileAppProvisioningConfigGroupAssignment-id in: path description: The unique identifier of mobileAppProvisioningConfigGroupAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppProvisioningConfigGroupAssignment '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get the number of the resource operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.groupAssignments.GetCount-3759 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: iosLobAppProvisioningConfiguration-id in: path description: The unique identifier of iosLobAppProvisioningConfiguration required: true schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assign': description: Provides operations to call the assign method. post: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Invoke action assign operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.iosLobAppProvisioningConfiguration.assign requestBody: description: Action parameters content: application/json: schema: type: object properties: appProvisioningConfigurationGroupAssignments: type: array items: $ref: '#/components/schemas/microsoft.graph.mobileAppProvisioningConfigGroupAssignment' iOSLobAppProvisioningConfigAssignments: type: array items: $ref: '#/components/schemas/microsoft.graph.iosLobAppProvisioningConfigurationAssignment' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: iosLobAppProvisioningConfiguration-id in: path description: The unique identifier of iosLobAppProvisioningConfiguration required: true schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration x-ms-docs-grouped-path: - '/deviceAppManagement/managedEBooks/{managedEBook-id}/assign' - '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assign' - '/deviceAppManagement/mobileApps/{mobileApp-id}/assign' - '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign' - '/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assign' - '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assign' '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses': description: Provides operations to manage the userStatuses property of the microsoft.graph.iosLobAppProvisioningConfiguration entity. get: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get userStatuses from deviceAppManagement description: The list of user installation states for this mobile app configuration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.ListUserStatuses 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.managedDeviceMobileAppConfigurationUserStatusCollectionResponse' 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: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Create new navigation property to userStatuses for deviceAppManagement operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.CreateUserStatuses requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserStatus' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: iosLobAppProvisioningConfiguration-id in: path description: The unique identifier of iosLobAppProvisioningConfiguration required: true schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}': description: Provides operations to manage the userStatuses property of the microsoft.graph.iosLobAppProvisioningConfiguration entity. get: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get userStatuses from deviceAppManagement description: The list of user installation states for this mobile app configuration. operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.GetUserStatuses parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Update the navigation property userStatuses in deviceAppManagement operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.UpdateUserStatuses requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserStatus' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Delete navigation property userStatuses for deviceAppManagement operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.DeleteUserStatuses parameters: - 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: iosLobAppProvisioningConfiguration-id in: path description: The unique identifier of iosLobAppProvisioningConfiguration required: true schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration - name: managedDeviceMobileAppConfigurationUserStatus-id in: path description: The unique identifier of managedDeviceMobileAppConfigurationUserStatus required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationUserStatus '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get the number of the resource operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.userStatuses.GetCount-5ad9 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: iosLobAppProvisioningConfiguration-id in: path description: The unique identifier of iosLobAppProvisioningConfiguration required: true schema: type: string x-ms-docs-key-type: iosLobAppProvisioningConfiguration /deviceAppManagement/iosLobAppProvisioningConfigurations/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Get the number of the resource operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.GetCount-e694 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' /deviceAppManagement/iosLobAppProvisioningConfigurations/hasPayloadLinks: description: Provides operations to call the hasPayloadLinks method. post: tags: - deviceAppManagement.iosLobAppProvisioningConfiguration summary: Invoke action hasPayloadLinks operationId: deviceAppManagement.iosLobAppProvisioningConfigurations.hasPayloadLinks requestBody: description: Action parameters content: application/json: schema: type: object properties: payloadIds: type: array items: type: string 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.hasPayloadLinkResultItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-grouped-path: - /deviceAppManagement/androidManagedAppProtections/hasPayloadLinks - /deviceAppManagement/iosManagedAppProtections/hasPayloadLinks - /deviceAppManagement/mdmWindowsInformationProtectionPolicies/hasPayloadLinks - /deviceAppManagement/mobileApps/hasPayloadLinks - /deviceAppManagement/targetedManagedAppConfigurations/hasPayloadLinks /deviceAppManagement/iosManagedAppProtections: description: Provides operations to manage the iosManagedAppProtections property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.iosManagedAppProtection summary: Get iosManagedAppProtections from deviceAppManagement description: iOS managed app policies. operationId: deviceAppManagement.ListIosManagedAppProtections 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.iosManagedAppProtectionCollectionResponse' 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: - deviceAppManagement.iosManagedAppProtection summary: Create new navigation property to iosManagedAppProtections for deviceAppManagement operationId: deviceAppManagement.CreateIosManagedAppProtections requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosManagedAppProtection' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosManagedAppProtection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}': description: Provides operations to manage the iosManagedAppProtections property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.iosManagedAppProtection summary: Get iosManagedAppProtections from deviceAppManagement description: iOS managed app policies. operationId: deviceAppManagement.GetIosManagedAppProtections parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosManagedAppProtection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.iosManagedAppProtection summary: Update the navigation property iosManagedAppProtections in deviceAppManagement operationId: deviceAppManagement.UpdateIosManagedAppProtections requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosManagedAppProtection' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosManagedAppProtection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.iosManagedAppProtection summary: Delete navigation property iosManagedAppProtections for deviceAppManagement operationId: deviceAppManagement.DeleteIosManagedAppProtections parameters: - 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: iosManagedAppProtection-id in: path description: The unique identifier of iosManagedAppProtection required: true schema: type: string x-ms-docs-key-type: iosManagedAppProtection '/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps': description: Provides operations to manage the apps property of the microsoft.graph.iosManagedAppProtection entity. get: tags: - deviceAppManagement.iosManagedAppProtection summary: Get apps from deviceAppManagement description: List of apps to which the policy is deployed. operationId: deviceAppManagement.iosManagedAppProtections.ListApps 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.managedMobileAppCollectionResponse' 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: - deviceAppManagement.iosManagedAppProtection summary: Create new navigation property to apps for deviceAppManagement operationId: deviceAppManagement.iosManagedAppProtections.CreateApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: iosManagedAppProtection-id in: path description: The unique identifier of iosManagedAppProtection required: true schema: type: string x-ms-docs-key-type: iosManagedAppProtection '/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}': description: Provides operations to manage the apps property of the microsoft.graph.iosManagedAppProtection entity. get: tags: - deviceAppManagement.iosManagedAppProtection summary: Get apps from deviceAppManagement description: List of apps to which the policy is deployed. operationId: deviceAppManagement.iosManagedAppProtections.GetApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.iosManagedAppProtection summary: Update the navigation property apps in deviceAppManagement operationId: deviceAppManagement.iosManagedAppProtections.UpdateApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.iosManagedAppProtection summary: Delete navigation property apps for deviceAppManagement operationId: deviceAppManagement.iosManagedAppProtections.DeleteApps parameters: - 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: iosManagedAppProtection-id in: path description: The unique identifier of iosManagedAppProtection required: true schema: type: string x-ms-docs-key-type: iosManagedAppProtection - name: managedMobileApp-id in: path description: The unique identifier of managedMobileApp required: true schema: type: string x-ms-docs-key-type: managedMobileApp '/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.iosManagedAppProtection summary: Get the number of the resource operationId: deviceAppManagement.iosManagedAppProtections.apps.GetCount-33d5 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: iosManagedAppProtection-id in: path description: The unique identifier of iosManagedAppProtection required: true schema: type: string x-ms-docs-key-type: iosManagedAppProtection '/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.targetedManagedAppProtection entity. get: tags: - deviceAppManagement.iosManagedAppProtection summary: Get assignments from deviceAppManagement description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.iosManagedAppProtections.ListAssignments 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.targetedManagedAppPolicyAssignmentCollectionResponse' 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: - deviceAppManagement.iosManagedAppProtection summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.iosManagedAppProtections.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: iosManagedAppProtection-id in: path description: The unique identifier of iosManagedAppProtection required: true schema: type: string x-ms-docs-key-type: iosManagedAppProtection x-ms-docs-grouped-path: - '/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments' '/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.targetedManagedAppProtection entity. get: tags: - deviceAppManagement.iosManagedAppProtection summary: Get assignments from deviceAppManagement description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.iosManagedAppProtections.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.iosManagedAppProtection summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.iosManagedAppProtections.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.iosManagedAppProtection summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.iosManagedAppProtections.DeleteAssignments parameters: - 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: iosManagedAppProtection-id in: path description: The unique identifier of iosManagedAppProtection required: true schema: type: string x-ms-docs-key-type: iosManagedAppProtection - name: targetedManagedAppPolicyAssignment-id in: path description: The unique identifier of targetedManagedAppPolicyAssignment required: true schema: type: string x-ms-docs-key-type: targetedManagedAppPolicyAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}' '/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.iosManagedAppProtection summary: Get the number of the resource operationId: deviceAppManagement.iosManagedAppProtections.assignments.GetCount-619f 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: iosManagedAppProtection-id in: path description: The unique identifier of iosManagedAppProtection required: true schema: type: string x-ms-docs-key-type: iosManagedAppProtection '/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary': description: Provides operations to manage the deploymentSummary property of the microsoft.graph.iosManagedAppProtection entity. get: tags: - deviceAppManagement.iosManagedAppProtection summary: Get deploymentSummary from deviceAppManagement description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.iosManagedAppProtections.GetDeploymentSummary parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.iosManagedAppProtection summary: Update the navigation property deploymentSummary in deviceAppManagement operationId: deviceAppManagement.iosManagedAppProtections.UpdateDeploymentSummary requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.iosManagedAppProtection summary: Delete navigation property deploymentSummary for deviceAppManagement operationId: deviceAppManagement.iosManagedAppProtections.DeleteDeploymentSummary parameters: - 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: iosManagedAppProtection-id in: path description: The unique identifier of iosManagedAppProtection required: true schema: type: string x-ms-docs-key-type: iosManagedAppProtection /deviceAppManagement/iosManagedAppProtections/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.iosManagedAppProtection summary: Get the number of the resource operationId: deviceAppManagement.iosManagedAppProtections.GetCount-dcdc 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' /deviceAppManagement/iosManagedAppProtections/hasPayloadLinks: description: Provides operations to call the hasPayloadLinks method. post: tags: - deviceAppManagement.iosManagedAppProtection summary: Invoke action hasPayloadLinks operationId: deviceAppManagement.iosManagedAppProtections.hasPayloadLinks requestBody: description: Action parameters content: application/json: schema: type: object properties: payloadIds: type: array items: type: string 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.hasPayloadLinkResultItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-grouped-path: - /deviceAppManagement/androidManagedAppProtections/hasPayloadLinks - /deviceAppManagement/iosLobAppProvisioningConfigurations/hasPayloadLinks - /deviceAppManagement/mdmWindowsInformationProtectionPolicies/hasPayloadLinks - /deviceAppManagement/mobileApps/hasPayloadLinks - /deviceAppManagement/targetedManagedAppConfigurations/hasPayloadLinks /deviceAppManagement/managedAppPolicies: description: Provides operations to manage the managedAppPolicies property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.managedAppPolicy summary: Get managedAppPolicies from deviceAppManagement description: Managed app policies. operationId: deviceAppManagement.ListManagedAppPolicies 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.managedAppPolicyCollectionResponse' 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: - deviceAppManagement.managedAppPolicy summary: Create new navigation property to managedAppPolicies for deviceAppManagement operationId: deviceAppManagement.CreateManagedAppPolicies requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicy' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}': description: Provides operations to manage the managedAppPolicies property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.managedAppPolicy summary: Get managedAppPolicies from deviceAppManagement description: Managed app policies. operationId: deviceAppManagement.GetManagedAppPolicies parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedAppPolicy summary: Update the navigation property managedAppPolicies in deviceAppManagement operationId: deviceAppManagement.UpdateManagedAppPolicies requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicy' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedAppPolicy summary: Delete navigation property managedAppPolicies for deviceAppManagement operationId: deviceAppManagement.DeleteManagedAppPolicies parameters: - 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: managedAppPolicy-id in: path description: The unique identifier of managedAppPolicy required: true schema: type: string x-ms-docs-key-type: managedAppPolicy '/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps': description: Provides operations to call the targetApps method. post: tags: - deviceAppManagement.managedAppPolicy summary: Invoke action targetApps operationId: deviceAppManagement.managedAppPolicies.managedAppPolicy.targetApps requestBody: description: Action parameters content: application/json: schema: type: object properties: apps: type: array items: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedAppPolicy-id in: path description: The unique identifier of managedAppPolicy required: true schema: type: string x-ms-docs-key-type: managedAppPolicy x-ms-docs-grouped-path: - '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/targetApps' - '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/targetApps' - '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/targetApps' - '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/targetApps' /deviceAppManagement/managedAppPolicies/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.managedAppPolicy summary: Get the number of the resource operationId: deviceAppManagement.managedAppPolicies.GetCount-b24d 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' /deviceAppManagement/managedAppRegistrations: description: Provides operations to manage the managedAppRegistrations property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.managedAppRegistration summary: Get managedAppRegistrations from deviceAppManagement description: The managed app registrations. operationId: deviceAppManagement.ListManagedAppRegistrations 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.managedAppRegistrationCollectionResponse' 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: - deviceAppManagement.managedAppRegistration summary: Create new navigation property to managedAppRegistrations for deviceAppManagement operationId: deviceAppManagement.CreateManagedAppRegistrations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppRegistration' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppRegistration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}': description: Provides operations to manage the managedAppRegistrations property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.managedAppRegistration summary: Get managedAppRegistrations from deviceAppManagement description: The managed app registrations. operationId: deviceAppManagement.GetManagedAppRegistrations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppRegistration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedAppRegistration summary: Update the navigation property managedAppRegistrations in deviceAppManagement operationId: deviceAppManagement.UpdateManagedAppRegistrations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppRegistration' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppRegistration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedAppRegistration summary: Delete navigation property managedAppRegistrations for deviceAppManagement operationId: deviceAppManagement.DeleteManagedAppRegistrations parameters: - 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: managedAppRegistration-id in: path description: The unique identifier of managedAppRegistration required: true schema: type: string x-ms-docs-key-type: managedAppRegistration '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies': description: Provides operations to manage the appliedPolicies property of the microsoft.graph.managedAppRegistration entity. get: tags: - deviceAppManagement.managedAppRegistration summary: Get appliedPolicies from deviceAppManagement description: Zero or more policys already applied on the registered app when it last synchronized with managment service. operationId: deviceAppManagement.managedAppRegistrations.ListAppliedPolicies 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.managedAppPolicyCollectionResponse' 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: - deviceAppManagement.managedAppRegistration summary: Create new navigation property to appliedPolicies for deviceAppManagement operationId: deviceAppManagement.managedAppRegistrations.CreateAppliedPolicies requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicy' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedAppRegistration-id in: path description: The unique identifier of managedAppRegistration required: true schema: type: string x-ms-docs-key-type: managedAppRegistration '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}': description: Provides operations to manage the appliedPolicies property of the microsoft.graph.managedAppRegistration entity. get: tags: - deviceAppManagement.managedAppRegistration summary: Get appliedPolicies from deviceAppManagement description: Zero or more policys already applied on the registered app when it last synchronized with managment service. operationId: deviceAppManagement.managedAppRegistrations.GetAppliedPolicies parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedAppRegistration summary: Update the navigation property appliedPolicies in deviceAppManagement operationId: deviceAppManagement.managedAppRegistrations.UpdateAppliedPolicies requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicy' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedAppRegistration summary: Delete navigation property appliedPolicies for deviceAppManagement operationId: deviceAppManagement.managedAppRegistrations.DeleteAppliedPolicies parameters: - 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: managedAppRegistration-id in: path description: The unique identifier of managedAppRegistration required: true schema: type: string x-ms-docs-key-type: managedAppRegistration - name: managedAppPolicy-id in: path description: The unique identifier of managedAppPolicy required: true schema: type: string x-ms-docs-key-type: managedAppPolicy '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/targetApps': description: Provides operations to call the targetApps method. post: tags: - deviceAppManagement.managedAppRegistration summary: Invoke action targetApps operationId: deviceAppManagement.managedAppRegistrations.managedAppRegistration.appliedPolicies.managedAppPolicy.targetApps requestBody: description: Action parameters content: application/json: schema: type: object properties: apps: type: array items: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedAppRegistration-id in: path description: The unique identifier of managedAppRegistration required: true schema: type: string x-ms-docs-key-type: managedAppRegistration - name: managedAppPolicy-id in: path description: The unique identifier of managedAppPolicy required: true schema: type: string x-ms-docs-key-type: managedAppPolicy x-ms-docs-grouped-path: - '/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps' - '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/targetApps' - '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/targetApps' - '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/targetApps' '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.managedAppRegistration summary: Get the number of the resource operationId: deviceAppManagement.managedAppRegistrations.appliedPolicies.GetCount-91f5 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: managedAppRegistration-id in: path description: The unique identifier of managedAppRegistration required: true schema: type: string x-ms-docs-key-type: managedAppRegistration '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies': description: Provides operations to manage the intendedPolicies property of the microsoft.graph.managedAppRegistration entity. get: tags: - deviceAppManagement.managedAppRegistration summary: Get intendedPolicies from deviceAppManagement description: Zero or more policies admin intended for the app as of now. operationId: deviceAppManagement.managedAppRegistrations.ListIntendedPolicies 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.managedAppPolicyCollectionResponse' 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: - deviceAppManagement.managedAppRegistration summary: Create new navigation property to intendedPolicies for deviceAppManagement operationId: deviceAppManagement.managedAppRegistrations.CreateIntendedPolicies requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicy' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedAppRegistration-id in: path description: The unique identifier of managedAppRegistration required: true schema: type: string x-ms-docs-key-type: managedAppRegistration '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}': description: Provides operations to manage the intendedPolicies property of the microsoft.graph.managedAppRegistration entity. get: tags: - deviceAppManagement.managedAppRegistration summary: Get intendedPolicies from deviceAppManagement description: Zero or more policies admin intended for the app as of now. operationId: deviceAppManagement.managedAppRegistrations.GetIntendedPolicies parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedAppRegistration summary: Update the navigation property intendedPolicies in deviceAppManagement operationId: deviceAppManagement.managedAppRegistrations.UpdateIntendedPolicies requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicy' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedAppRegistration summary: Delete navigation property intendedPolicies for deviceAppManagement operationId: deviceAppManagement.managedAppRegistrations.DeleteIntendedPolicies parameters: - 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: managedAppRegistration-id in: path description: The unique identifier of managedAppRegistration required: true schema: type: string x-ms-docs-key-type: managedAppRegistration - name: managedAppPolicy-id in: path description: The unique identifier of managedAppPolicy required: true schema: type: string x-ms-docs-key-type: managedAppPolicy '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/targetApps': description: Provides operations to call the targetApps method. post: tags: - deviceAppManagement.managedAppRegistration summary: Invoke action targetApps operationId: deviceAppManagement.managedAppRegistrations.managedAppRegistration.intendedPolicies.managedAppPolicy.targetApps requestBody: description: Action parameters content: application/json: schema: type: object properties: apps: type: array items: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedAppRegistration-id in: path description: The unique identifier of managedAppRegistration required: true schema: type: string x-ms-docs-key-type: managedAppRegistration - name: managedAppPolicy-id in: path description: The unique identifier of managedAppPolicy required: true schema: type: string x-ms-docs-key-type: managedAppPolicy x-ms-docs-grouped-path: - '/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps' - '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/targetApps' - '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/targetApps' - '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/targetApps' '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.managedAppRegistration summary: Get the number of the resource operationId: deviceAppManagement.managedAppRegistrations.intendedPolicies.GetCount-edb3 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: managedAppRegistration-id in: path description: The unique identifier of managedAppRegistration required: true schema: type: string x-ms-docs-key-type: managedAppRegistration '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/managedAppLogCollectionRequests': description: Provides operations to manage the managedAppLogCollectionRequests property of the microsoft.graph.managedAppRegistration entity. get: tags: - deviceAppManagement.managedAppRegistration summary: Get managedAppLogCollectionRequests from deviceAppManagement description: Zero or more log collection requests triggered for the app. operationId: deviceAppManagement.managedAppRegistrations.ListManagedAppLogCollectionRequests 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.managedAppLogCollectionRequestCollectionResponse' 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: - deviceAppManagement.managedAppRegistration summary: Create new navigation property to managedAppLogCollectionRequests for deviceAppManagement operationId: deviceAppManagement.managedAppRegistrations.CreateManagedAppLogCollectionRequests requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedAppRegistration-id in: path description: The unique identifier of managedAppRegistration required: true schema: type: string x-ms-docs-key-type: managedAppRegistration '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/managedAppLogCollectionRequests/{managedAppLogCollectionRequest-id}': description: Provides operations to manage the managedAppLogCollectionRequests property of the microsoft.graph.managedAppRegistration entity. get: tags: - deviceAppManagement.managedAppRegistration summary: Get managedAppLogCollectionRequests from deviceAppManagement description: Zero or more log collection requests triggered for the app. operationId: deviceAppManagement.managedAppRegistrations.GetManagedAppLogCollectionRequests parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedAppRegistration summary: Update the navigation property managedAppLogCollectionRequests in deviceAppManagement operationId: deviceAppManagement.managedAppRegistrations.UpdateManagedAppLogCollectionRequests requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppLogCollectionRequest' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedAppRegistration summary: Delete navigation property managedAppLogCollectionRequests for deviceAppManagement operationId: deviceAppManagement.managedAppRegistrations.DeleteManagedAppLogCollectionRequests parameters: - 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: managedAppRegistration-id in: path description: The unique identifier of managedAppRegistration required: true schema: type: string x-ms-docs-key-type: managedAppRegistration - name: managedAppLogCollectionRequest-id in: path description: The unique identifier of managedAppLogCollectionRequest required: true schema: type: string x-ms-docs-key-type: managedAppLogCollectionRequest '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/managedAppLogCollectionRequests/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.managedAppRegistration summary: Get the number of the resource operationId: deviceAppManagement.managedAppRegistrations.managedAppLogCollectionRequests.GetCount-2185 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: managedAppRegistration-id in: path description: The unique identifier of managedAppRegistration required: true schema: type: string x-ms-docs-key-type: managedAppRegistration '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations': description: Provides operations to manage the operations property of the microsoft.graph.managedAppRegistration entity. get: tags: - deviceAppManagement.managedAppRegistration summary: Get operations from deviceAppManagement description: Zero or more long running operations triggered on the app registration. operationId: deviceAppManagement.managedAppRegistrations.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.managedAppOperationCollectionResponse' 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: - deviceAppManagement.managedAppRegistration summary: Create new navigation property to operations for deviceAppManagement operationId: deviceAppManagement.managedAppRegistrations.CreateOperations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppOperation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedAppRegistration-id in: path description: The unique identifier of managedAppRegistration required: true schema: type: string x-ms-docs-key-type: managedAppRegistration '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}': description: Provides operations to manage the operations property of the microsoft.graph.managedAppRegistration entity. get: tags: - deviceAppManagement.managedAppRegistration summary: Get operations from deviceAppManagement description: Zero or more long running operations triggered on the app registration. operationId: deviceAppManagement.managedAppRegistrations.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.managedAppOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedAppRegistration summary: Update the navigation property operations in deviceAppManagement operationId: deviceAppManagement.managedAppRegistrations.UpdateOperations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppOperation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppOperation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedAppRegistration summary: Delete navigation property operations for deviceAppManagement operationId: deviceAppManagement.managedAppRegistrations.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: managedAppRegistration-id in: path description: The unique identifier of managedAppRegistration required: true schema: type: string x-ms-docs-key-type: managedAppRegistration - name: managedAppOperation-id in: path description: The unique identifier of managedAppOperation required: true schema: type: string x-ms-docs-key-type: managedAppOperation '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.managedAppRegistration summary: Get the number of the resource operationId: deviceAppManagement.managedAppRegistrations.operations.GetCount-3c0f 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: managedAppRegistration-id in: path description: The unique identifier of managedAppRegistration required: true schema: type: string x-ms-docs-key-type: managedAppRegistration /deviceAppManagement/managedAppRegistrations/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.managedAppRegistration summary: Get the number of the resource operationId: deviceAppManagement.managedAppRegistrations.GetCount-e04a 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' /deviceAppManagement/managedAppRegistrations/getUserIdsWithFlaggedAppRegistration(): description: Provides operations to call the getUserIdsWithFlaggedAppRegistration method. get: tags: - deviceAppManagement.managedAppRegistration summary: Invoke function getUserIdsWithFlaggedAppRegistration operationId: deviceAppManagement.managedAppRegistrations.getUserIdsWithFlaggedAppRegistration 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: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/managedAppStatuses: description: Provides operations to manage the managedAppStatuses property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.managedAppStatus summary: Get managedAppStatuses from deviceAppManagement description: The managed app statuses. operationId: deviceAppManagement.ListManagedAppStatuses 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.managedAppStatusCollectionResponse' 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: - deviceAppManagement.managedAppStatus summary: Create new navigation property to managedAppStatuses for deviceAppManagement operationId: deviceAppManagement.CreateManagedAppStatuses requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppStatus' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}': description: Provides operations to manage the managedAppStatuses property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.managedAppStatus summary: Get managedAppStatuses from deviceAppManagement description: The managed app statuses. operationId: deviceAppManagement.GetManagedAppStatuses parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedAppStatus summary: Update the navigation property managedAppStatuses in deviceAppManagement operationId: deviceAppManagement.UpdateManagedAppStatuses requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppStatus' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedAppStatus summary: Delete navigation property managedAppStatuses for deviceAppManagement operationId: deviceAppManagement.DeleteManagedAppStatuses parameters: - 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: managedAppStatus-id in: path description: The unique identifier of managedAppStatus required: true schema: type: string x-ms-docs-key-type: managedAppStatus /deviceAppManagement/managedAppStatuses/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.managedAppStatus summary: Get the number of the resource operationId: deviceAppManagement.managedAppStatuses.GetCount-1655 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' /deviceAppManagement/managedEBookCategories: description: Provides operations to manage the managedEBookCategories property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.managedEBookCategory summary: Get managedEBookCategories from deviceAppManagement description: The mobile eBook categories. operationId: deviceAppManagement.ListManagedEBookCategories 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.managedEBookCategoryCollectionResponse' 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: - deviceAppManagement.managedEBookCategory summary: Create new navigation property to managedEBookCategories for deviceAppManagement operationId: deviceAppManagement.CreateManagedEBookCategories requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedEBookCategory' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedEBookCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/managedEBookCategories/{managedEBookCategory-id}': description: Provides operations to manage the managedEBookCategories property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.managedEBookCategory summary: Get managedEBookCategories from deviceAppManagement description: The mobile eBook categories. operationId: deviceAppManagement.GetManagedEBookCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedEBookCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedEBookCategory summary: Update the navigation property managedEBookCategories in deviceAppManagement operationId: deviceAppManagement.UpdateManagedEBookCategories requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedEBookCategory' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedEBookCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedEBookCategory summary: Delete navigation property managedEBookCategories for deviceAppManagement operationId: deviceAppManagement.DeleteManagedEBookCategories parameters: - 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: managedEBookCategory-id in: path description: The unique identifier of managedEBookCategory required: true schema: type: string x-ms-docs-key-type: managedEBookCategory /deviceAppManagement/managedEBookCategories/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.managedEBookCategory summary: Get the number of the resource operationId: deviceAppManagement.managedEBookCategories.GetCount-873b 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' /deviceAppManagement/managedEBooks: description: Provides operations to manage the managedEBooks property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.managedEBook summary: Get managedEBooks from deviceAppManagement description: The Managed eBook. operationId: deviceAppManagement.ListManagedEBooks 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.managedEBookCollectionResponse' 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: - deviceAppManagement.managedEBook summary: Create new navigation property to managedEBooks for deviceAppManagement operationId: deviceAppManagement.CreateManagedEBooks requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedEBook' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedEBook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/managedEBooks/{managedEBook-id}': description: Provides operations to manage the managedEBooks property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.managedEBook summary: Get managedEBooks from deviceAppManagement description: The Managed eBook. operationId: deviceAppManagement.GetManagedEBooks parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedEBook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedEBook summary: Update the navigation property managedEBooks in deviceAppManagement operationId: deviceAppManagement.UpdateManagedEBooks requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedEBook' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedEBook' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedEBook summary: Delete navigation property managedEBooks for deviceAppManagement operationId: deviceAppManagement.DeleteManagedEBooks parameters: - 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: managedEBook-id in: path description: The unique identifier of managedEBook required: true schema: type: string x-ms-docs-key-type: managedEBook '/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.managedEBook entity. get: tags: - deviceAppManagement.managedEBook summary: Get assignments from deviceAppManagement description: The list of assignments for this eBook. operationId: deviceAppManagement.managedEBooks.ListAssignments 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.managedEBookAssignmentCollectionResponse' 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: - deviceAppManagement.managedEBook summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.managedEBooks.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedEBookAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedEBookAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedEBook-id in: path description: The unique identifier of managedEBook required: true schema: type: string x-ms-docs-key-type: managedEBook '/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.managedEBook entity. get: tags: - deviceAppManagement.managedEBook summary: Get assignments from deviceAppManagement description: The list of assignments for this eBook. operationId: deviceAppManagement.managedEBooks.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedEBookAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedEBook summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.managedEBooks.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedEBookAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedEBookAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedEBook summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.managedEBooks.DeleteAssignments parameters: - 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: managedEBook-id in: path description: The unique identifier of managedEBook required: true schema: type: string x-ms-docs-key-type: managedEBook - name: managedEBookAssignment-id in: path description: The unique identifier of managedEBookAssignment required: true schema: type: string x-ms-docs-key-type: managedEBookAssignment '/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.managedEBook summary: Get the number of the resource operationId: deviceAppManagement.managedEBooks.assignments.GetCount-b034 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: managedEBook-id in: path description: The unique identifier of managedEBook required: true schema: type: string x-ms-docs-key-type: managedEBook '/deviceAppManagement/managedEBooks/{managedEBook-id}/categories': description: Provides operations to manage the categories property of the microsoft.graph.managedEBook entity. get: tags: - deviceAppManagement.managedEBook summary: Get categories from deviceAppManagement description: The list of categories for this eBook. operationId: deviceAppManagement.managedEBooks.ListCategories 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.managedEBookCategoryCollectionResponse' 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: managedEBook-id in: path description: The unique identifier of managedEBook required: true schema: type: string x-ms-docs-key-type: managedEBook '/deviceAppManagement/managedEBooks/{managedEBook-id}/categories/{managedEBookCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.managedEBook entity. get: tags: - deviceAppManagement.managedEBook summary: Get categories from deviceAppManagement description: The list of categories for this eBook. operationId: deviceAppManagement.managedEBooks.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedEBookCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedEBook-id in: path description: The unique identifier of managedEBook required: true schema: type: string x-ms-docs-key-type: managedEBook - name: managedEBookCategory-id in: path description: The unique identifier of managedEBookCategory required: true schema: type: string x-ms-docs-key-type: managedEBookCategory '/deviceAppManagement/managedEBooks/{managedEBook-id}/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.managedEBook summary: Get the number of the resource operationId: deviceAppManagement.managedEBooks.categories.GetCount-0946 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: managedEBook-id in: path description: The unique identifier of managedEBook required: true schema: type: string x-ms-docs-key-type: managedEBook '/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates': description: Provides operations to manage the deviceStates property of the microsoft.graph.managedEBook entity. get: tags: - deviceAppManagement.managedEBook summary: Get deviceStates from deviceAppManagement description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks.ListDeviceStates 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.deviceInstallStateCollectionResponse' 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: - deviceAppManagement.managedEBook summary: Create new navigation property to deviceStates for deviceAppManagement operationId: deviceAppManagement.managedEBooks.CreateDeviceStates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceInstallState' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceInstallState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedEBook-id in: path description: The unique identifier of managedEBook required: true schema: type: string x-ms-docs-key-type: managedEBook '/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}': description: Provides operations to manage the deviceStates property of the microsoft.graph.managedEBook entity. get: tags: - deviceAppManagement.managedEBook summary: Get deviceStates from deviceAppManagement description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks.GetDeviceStates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceInstallState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedEBook summary: Update the navigation property deviceStates in deviceAppManagement operationId: deviceAppManagement.managedEBooks.UpdateDeviceStates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceInstallState' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceInstallState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedEBook summary: Delete navigation property deviceStates for deviceAppManagement operationId: deviceAppManagement.managedEBooks.DeleteDeviceStates parameters: - 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: managedEBook-id in: path description: The unique identifier of managedEBook required: true schema: type: string x-ms-docs-key-type: managedEBook - name: deviceInstallState-id in: path description: The unique identifier of deviceInstallState required: true schema: type: string x-ms-docs-key-type: deviceInstallState '/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.managedEBook summary: Get the number of the resource operationId: deviceAppManagement.managedEBooks.deviceStates.GetCount-6c04 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: managedEBook-id in: path description: The unique identifier of managedEBook required: true schema: type: string x-ms-docs-key-type: managedEBook '/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary': description: Provides operations to manage the installSummary property of the microsoft.graph.managedEBook entity. get: tags: - deviceAppManagement.managedEBook summary: Get installSummary from deviceAppManagement description: Mobile App Install Summary. operationId: deviceAppManagement.managedEBooks.GetInstallSummary parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.eBookInstallSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedEBook summary: Update the navigation property installSummary in deviceAppManagement operationId: deviceAppManagement.managedEBooks.UpdateInstallSummary requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.eBookInstallSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.eBookInstallSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedEBook summary: Delete navigation property installSummary for deviceAppManagement operationId: deviceAppManagement.managedEBooks.DeleteInstallSummary parameters: - 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: managedEBook-id in: path description: The unique identifier of managedEBook required: true schema: type: string x-ms-docs-key-type: managedEBook '/deviceAppManagement/managedEBooks/{managedEBook-id}/assign': description: Provides operations to call the assign method. post: tags: - deviceAppManagement.managedEBook summary: Invoke action assign operationId: deviceAppManagement.managedEBooks.managedEBook.assign requestBody: description: Action parameters content: application/json: schema: type: object properties: managedEBookAssignments: type: array items: $ref: '#/components/schemas/microsoft.graph.managedEBookAssignment' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedEBook-id in: path description: The unique identifier of managedEBook required: true schema: type: string x-ms-docs-key-type: managedEBook x-ms-docs-grouped-path: - '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assign' - '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assign' - '/deviceAppManagement/mobileApps/{mobileApp-id}/assign' - '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign' - '/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assign' - '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assign' '/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary': description: Provides operations to manage the userStateSummary property of the microsoft.graph.managedEBook entity. get: tags: - deviceAppManagement.managedEBook summary: Get userStateSummary from deviceAppManagement description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks.ListUserStateSummary 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.userInstallStateSummaryCollectionResponse' 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: - deviceAppManagement.managedEBook summary: Create new navigation property to userStateSummary for deviceAppManagement operationId: deviceAppManagement.managedEBooks.CreateUserStateSummary requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.userInstallStateSummary' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.userInstallStateSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedEBook-id in: path description: The unique identifier of managedEBook required: true schema: type: string x-ms-docs-key-type: managedEBook '/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}': description: Provides operations to manage the userStateSummary property of the microsoft.graph.managedEBook entity. get: tags: - deviceAppManagement.managedEBook summary: Get userStateSummary from deviceAppManagement description: The list of installation states for this eBook. operationId: deviceAppManagement.managedEBooks.GetUserStateSummary parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.userInstallStateSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedEBook summary: Update the navigation property userStateSummary in deviceAppManagement operationId: deviceAppManagement.managedEBooks.UpdateUserStateSummary requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.userInstallStateSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.userInstallStateSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedEBook summary: Delete navigation property userStateSummary for deviceAppManagement operationId: deviceAppManagement.managedEBooks.DeleteUserStateSummary parameters: - 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: managedEBook-id in: path description: The unique identifier of managedEBook required: true schema: type: string x-ms-docs-key-type: managedEBook - name: userInstallStateSummary-id in: path description: The unique identifier of userInstallStateSummary required: true schema: type: string x-ms-docs-key-type: userInstallStateSummary '/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates': description: Provides operations to manage the deviceStates property of the microsoft.graph.userInstallStateSummary entity. get: tags: - deviceAppManagement.managedEBook summary: Get deviceStates from deviceAppManagement description: The install state of the eBook. operationId: deviceAppManagement.managedEBooks.userStateSummary.ListDeviceStates 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.deviceInstallStateCollectionResponse' 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: - deviceAppManagement.managedEBook summary: Create new navigation property to deviceStates for deviceAppManagement operationId: deviceAppManagement.managedEBooks.userStateSummary.CreateDeviceStates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceInstallState' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceInstallState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedEBook-id in: path description: The unique identifier of managedEBook required: true schema: type: string x-ms-docs-key-type: managedEBook - name: userInstallStateSummary-id in: path description: The unique identifier of userInstallStateSummary required: true schema: type: string x-ms-docs-key-type: userInstallStateSummary '/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}': description: Provides operations to manage the deviceStates property of the microsoft.graph.userInstallStateSummary entity. get: tags: - deviceAppManagement.managedEBook summary: Get deviceStates from deviceAppManagement description: The install state of the eBook. operationId: deviceAppManagement.managedEBooks.userStateSummary.GetDeviceStates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceInstallState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedEBook summary: Update the navigation property deviceStates in deviceAppManagement operationId: deviceAppManagement.managedEBooks.userStateSummary.UpdateDeviceStates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceInstallState' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceInstallState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedEBook summary: Delete navigation property deviceStates for deviceAppManagement operationId: deviceAppManagement.managedEBooks.userStateSummary.DeleteDeviceStates parameters: - 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: managedEBook-id in: path description: The unique identifier of managedEBook required: true schema: type: string x-ms-docs-key-type: managedEBook - name: userInstallStateSummary-id in: path description: The unique identifier of userInstallStateSummary required: true schema: type: string x-ms-docs-key-type: userInstallStateSummary - name: deviceInstallState-id in: path description: The unique identifier of deviceInstallState required: true schema: type: string x-ms-docs-key-type: deviceInstallState '/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.managedEBook summary: Get the number of the resource operationId: deviceAppManagement.managedEBooks.userStateSummary.deviceStates.GetCount-a97e 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: managedEBook-id in: path description: The unique identifier of managedEBook required: true schema: type: string x-ms-docs-key-type: managedEBook - name: userInstallStateSummary-id in: path description: The unique identifier of userInstallStateSummary required: true schema: type: string x-ms-docs-key-type: userInstallStateSummary '/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.managedEBook summary: Get the number of the resource operationId: deviceAppManagement.managedEBooks.userStateSummary.GetCount-862d 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: managedEBook-id in: path description: The unique identifier of managedEBook required: true schema: type: string x-ms-docs-key-type: managedEBook /deviceAppManagement/managedEBooks/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.managedEBook summary: Get the number of the resource operationId: deviceAppManagement.managedEBooks.GetCount-72ff 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' /deviceAppManagement/mdmWindowsInformationProtectionPolicies: description: Provides operations to manage the mdmWindowsInformationProtectionPolicies property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Get mdmWindowsInformationProtectionPolicies from deviceAppManagement description: Windows information protection for apps running on devices which are MDM enrolled. operationId: deviceAppManagement.ListMdmWindowsInformationProtectionPolicies 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.mdmWindowsInformationProtectionPolicyCollectionResponse' 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: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Create new navigation property to mdmWindowsInformationProtectionPolicies for deviceAppManagement operationId: deviceAppManagement.CreateMdmWindowsInformationProtectionPolicies requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mdmWindowsInformationProtectionPolicy' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mdmWindowsInformationProtectionPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}': description: Provides operations to manage the mdmWindowsInformationProtectionPolicies property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Get mdmWindowsInformationProtectionPolicies from deviceAppManagement description: Windows information protection for apps running on devices which are MDM enrolled. operationId: deviceAppManagement.GetMdmWindowsInformationProtectionPolicies parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mdmWindowsInformationProtectionPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Update the navigation property mdmWindowsInformationProtectionPolicies in deviceAppManagement operationId: deviceAppManagement.UpdateMdmWindowsInformationProtectionPolicies requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mdmWindowsInformationProtectionPolicy' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mdmWindowsInformationProtectionPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Delete navigation property mdmWindowsInformationProtectionPolicies for deviceAppManagement operationId: deviceAppManagement.DeleteMdmWindowsInformationProtectionPolicies parameters: - 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: mdmWindowsInformationProtectionPolicy-id in: path description: The unique identifier of mdmWindowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: mdmWindowsInformationProtectionPolicy '/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.windowsInformationProtection entity. get: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Get assignments from deviceAppManagement description: Navigation property to list of security groups targeted for policy. operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.ListAssignments 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.targetedManagedAppPolicyAssignmentCollectionResponse' 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: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mdmWindowsInformationProtectionPolicy-id in: path description: The unique identifier of mdmWindowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: mdmWindowsInformationProtectionPolicy x-ms-docs-grouped-path: - '/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments' '/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.windowsInformationProtection entity. get: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Get assignments from deviceAppManagement description: Navigation property to list of security groups targeted for policy. operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.DeleteAssignments parameters: - 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: mdmWindowsInformationProtectionPolicy-id in: path description: The unique identifier of mdmWindowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: mdmWindowsInformationProtectionPolicy - name: targetedManagedAppPolicyAssignment-id in: path description: The unique identifier of targetedManagedAppPolicyAssignment required: true schema: type: string x-ms-docs-key-type: targetedManagedAppPolicyAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}' '/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Get the number of the resource operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.assignments.GetCount-12b1 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: mdmWindowsInformationProtectionPolicy-id in: path description: The unique identifier of mdmWindowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: mdmWindowsInformationProtectionPolicy '/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles': description: Provides operations to manage the exemptAppLockerFiles property of the microsoft.graph.windowsInformationProtection entity. get: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Get exemptAppLockerFiles from deviceAppManagement description: Another way to input exempt apps through xml files operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.ListExemptAppLockerFiles 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.windowsInformationProtectionAppLockerFileCollectionResponse' 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: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Create new navigation property to exemptAppLockerFiles for deviceAppManagement operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.CreateExemptAppLockerFiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mdmWindowsInformationProtectionPolicy-id in: path description: The unique identifier of mdmWindowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: mdmWindowsInformationProtectionPolicy x-ms-docs-grouped-path: - '/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles' '/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}': description: Provides operations to manage the exemptAppLockerFiles property of the microsoft.graph.windowsInformationProtection entity. get: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Get exemptAppLockerFiles from deviceAppManagement description: Another way to input exempt apps through xml files operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.GetExemptAppLockerFiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Update the navigation property exemptAppLockerFiles in deviceAppManagement operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.UpdateExemptAppLockerFiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Delete navigation property exemptAppLockerFiles for deviceAppManagement operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.DeleteExemptAppLockerFiles parameters: - 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: mdmWindowsInformationProtectionPolicy-id in: path description: The unique identifier of mdmWindowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: mdmWindowsInformationProtectionPolicy - name: windowsInformationProtectionAppLockerFile-id in: path description: The unique identifier of windowsInformationProtectionAppLockerFile required: true schema: type: string x-ms-docs-key-type: windowsInformationProtectionAppLockerFile x-ms-docs-grouped-path: - '/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}' '/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Get the number of the resource operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.exemptAppLockerFiles.GetCount-f6bf 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: mdmWindowsInformationProtectionPolicy-id in: path description: The unique identifier of mdmWindowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: mdmWindowsInformationProtectionPolicy '/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles': description: Provides operations to manage the protectedAppLockerFiles property of the microsoft.graph.windowsInformationProtection entity. get: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Get protectedAppLockerFiles from deviceAppManagement description: Another way to input protected apps through xml files operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.ListProtectedAppLockerFiles 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.windowsInformationProtectionAppLockerFileCollectionResponse' 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: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Create new navigation property to protectedAppLockerFiles for deviceAppManagement operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.CreateProtectedAppLockerFiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mdmWindowsInformationProtectionPolicy-id in: path description: The unique identifier of mdmWindowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: mdmWindowsInformationProtectionPolicy x-ms-docs-grouped-path: - '/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles' '/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}': description: Provides operations to manage the protectedAppLockerFiles property of the microsoft.graph.windowsInformationProtection entity. get: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Get protectedAppLockerFiles from deviceAppManagement description: Another way to input protected apps through xml files operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.GetProtectedAppLockerFiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Update the navigation property protectedAppLockerFiles in deviceAppManagement operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.UpdateProtectedAppLockerFiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Delete navigation property protectedAppLockerFiles for deviceAppManagement operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.DeleteProtectedAppLockerFiles parameters: - 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: mdmWindowsInformationProtectionPolicy-id in: path description: The unique identifier of mdmWindowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: mdmWindowsInformationProtectionPolicy - name: windowsInformationProtectionAppLockerFile-id in: path description: The unique identifier of windowsInformationProtectionAppLockerFile required: true schema: type: string x-ms-docs-key-type: windowsInformationProtectionAppLockerFile x-ms-docs-grouped-path: - '/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}' '/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Get the number of the resource operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.protectedAppLockerFiles.GetCount-5893 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: mdmWindowsInformationProtectionPolicy-id in: path description: The unique identifier of mdmWindowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: mdmWindowsInformationProtectionPolicy /deviceAppManagement/mdmWindowsInformationProtectionPolicies/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Get the number of the resource operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.GetCount-a680 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' /deviceAppManagement/mdmWindowsInformationProtectionPolicies/hasPayloadLinks: description: Provides operations to call the hasPayloadLinks method. post: tags: - deviceAppManagement.mdmWindowsInformationProtectionPolicy summary: Invoke action hasPayloadLinks operationId: deviceAppManagement.mdmWindowsInformationProtectionPolicies.hasPayloadLinks requestBody: description: Action parameters content: application/json: schema: type: object properties: payloadIds: type: array items: type: string 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.hasPayloadLinkResultItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-grouped-path: - /deviceAppManagement/androidManagedAppProtections/hasPayloadLinks - /deviceAppManagement/iosLobAppProvisioningConfigurations/hasPayloadLinks - /deviceAppManagement/iosManagedAppProtections/hasPayloadLinks - /deviceAppManagement/mobileApps/hasPayloadLinks - /deviceAppManagement/targetedManagedAppConfigurations/hasPayloadLinks /deviceAppManagement/syncMicrosoftStoreForBusinessApps: description: Provides operations to call the syncMicrosoftStoreForBusinessApps method. post: tags: - deviceAppManagement.deviceAppManagement.Actions summary: Invoke action syncMicrosoftStoreForBusinessApps description: Syncs Intune account with Microsoft Store For Business operationId: deviceAppManagement.syncMicrosoftStoreForBusinessApps responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /deviceAppManagement/mobileAppCatalogPackages: description: Provides operations to manage the mobileAppCatalogPackages property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.mobileAppCatalogPackage summary: Get mobileAppCatalogPackages from deviceAppManagement description: MobileAppCatalogPackage entities. operationId: deviceAppManagement.ListMobileAppCatalogPackages 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.mobileAppCatalogPackageCollectionResponse' 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: - deviceAppManagement.mobileAppCatalogPackage summary: Create new navigation property to mobileAppCatalogPackages for deviceAppManagement operationId: deviceAppManagement.CreateMobileAppCatalogPackages requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCatalogPackage' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCatalogPackage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/mobileAppCatalogPackages/{mobileAppCatalogPackage-id}': description: Provides operations to manage the mobileAppCatalogPackages property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.mobileAppCatalogPackage summary: Get mobileAppCatalogPackages from deviceAppManagement description: MobileAppCatalogPackage entities. operationId: deviceAppManagement.GetMobileAppCatalogPackages parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCatalogPackage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileAppCatalogPackage summary: Update the navigation property mobileAppCatalogPackages in deviceAppManagement operationId: deviceAppManagement.UpdateMobileAppCatalogPackages requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCatalogPackage' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCatalogPackage' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileAppCatalogPackage summary: Delete navigation property mobileAppCatalogPackages for deviceAppManagement operationId: deviceAppManagement.DeleteMobileAppCatalogPackages parameters: - 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: mobileAppCatalogPackage-id in: path description: The unique identifier of mobileAppCatalogPackage required: true schema: type: string x-ms-docs-key-type: mobileAppCatalogPackage /deviceAppManagement/mobileAppCatalogPackages/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileAppCatalogPackage summary: Get the number of the resource operationId: deviceAppManagement.mobileAppCatalogPackages.GetCount-18b4 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' /deviceAppManagement/mobileAppCategories: description: Provides operations to manage the mobileAppCategories property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.mobileAppCategory summary: Get mobileAppCategories from deviceAppManagement description: The mobile app categories. operationId: deviceAppManagement.ListMobileAppCategories 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.mobileAppCategoryCollectionResponse' 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: - deviceAppManagement.mobileAppCategory summary: Create new navigation property to mobileAppCategories for deviceAppManagement operationId: deviceAppManagement.CreateMobileAppCategories requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}': description: Provides operations to manage the mobileAppCategories property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.mobileAppCategory summary: Get mobileAppCategories from deviceAppManagement description: The mobile app categories. operationId: deviceAppManagement.GetMobileAppCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileAppCategory summary: Update the navigation property mobileAppCategories in deviceAppManagement operationId: deviceAppManagement.UpdateMobileAppCategories requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileAppCategory summary: Delete navigation property mobileAppCategories for deviceAppManagement operationId: deviceAppManagement.DeleteMobileAppCategories parameters: - 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: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory /deviceAppManagement/mobileAppCategories/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileAppCategory summary: Get the number of the resource operationId: deviceAppManagement.mobileAppCategories.GetCount-03a0 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' /deviceAppManagement/mobileAppConfigurations: description: Provides operations to manage the mobileAppConfigurations property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get mobileAppConfigurations from deviceAppManagement description: The Managed Device Mobile Application Configurations. operationId: deviceAppManagement.ListMobileAppConfigurations 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.managedDeviceMobileAppConfigurationCollectionResponse' 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: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Create new navigation property to mobileAppConfigurations for deviceAppManagement operationId: deviceAppManagement.CreateMobileAppConfigurations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfiguration' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}': description: Provides operations to manage the mobileAppConfigurations property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get mobileAppConfigurations from deviceAppManagement description: The Managed Device Mobile Application Configurations. operationId: deviceAppManagement.GetMobileAppConfigurations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Update the navigation property mobileAppConfigurations in deviceAppManagement operationId: deviceAppManagement.UpdateMobileAppConfigurations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfiguration' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Delete navigation property mobileAppConfigurations for deviceAppManagement operationId: deviceAppManagement.DeleteMobileAppConfigurations parameters: - 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: managedDeviceMobileAppConfiguration-id in: path description: The unique identifier of managedDeviceMobileAppConfiguration required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.managedDeviceMobileAppConfiguration entity. get: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get assignments from deviceAppManagement description: The list of group assignemenets for app configration. operationId: deviceAppManagement.mobileAppConfigurations.ListAssignments 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.managedDeviceMobileAppConfigurationAssignmentCollectionResponse' 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: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileAppConfigurations.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedDeviceMobileAppConfiguration-id in: path description: The unique identifier of managedDeviceMobileAppConfiguration required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.managedDeviceMobileAppConfiguration entity. get: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get assignments from deviceAppManagement description: The list of group assignemenets for app configration. operationId: deviceAppManagement.mobileAppConfigurations.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileAppConfigurations.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileAppConfigurations.DeleteAssignments parameters: - 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: managedDeviceMobileAppConfiguration-id in: path description: The unique identifier of managedDeviceMobileAppConfiguration required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration - name: managedDeviceMobileAppConfigurationAssignment-id in: path description: The unique identifier of managedDeviceMobileAppConfigurationAssignment required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationAssignment '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get the number of the resource operationId: deviceAppManagement.mobileAppConfigurations.assignments.GetCount-24db 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: managedDeviceMobileAppConfiguration-id in: path description: The unique identifier of managedDeviceMobileAppConfiguration required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses': description: Provides operations to manage the deviceStatuses property of the microsoft.graph.managedDeviceMobileAppConfiguration entity. get: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get deviceStatuses from deviceAppManagement description: List of ManagedDeviceMobileAppConfigurationDeviceStatus. operationId: deviceAppManagement.mobileAppConfigurations.ListDeviceStatuses 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.managedDeviceMobileAppConfigurationDeviceStatusCollectionResponse' 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: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Create new navigation property to deviceStatuses for deviceAppManagement operationId: deviceAppManagement.mobileAppConfigurations.CreateDeviceStatuses requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedDeviceMobileAppConfiguration-id in: path description: The unique identifier of managedDeviceMobileAppConfiguration required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}': description: Provides operations to manage the deviceStatuses property of the microsoft.graph.managedDeviceMobileAppConfiguration entity. get: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get deviceStatuses from deviceAppManagement description: List of ManagedDeviceMobileAppConfigurationDeviceStatus. operationId: deviceAppManagement.mobileAppConfigurations.GetDeviceStatuses parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Update the navigation property deviceStatuses in deviceAppManagement operationId: deviceAppManagement.mobileAppConfigurations.UpdateDeviceStatuses requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Delete navigation property deviceStatuses for deviceAppManagement operationId: deviceAppManagement.mobileAppConfigurations.DeleteDeviceStatuses parameters: - 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: managedDeviceMobileAppConfiguration-id in: path description: The unique identifier of managedDeviceMobileAppConfiguration required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration - name: managedDeviceMobileAppConfigurationDeviceStatus-id in: path description: The unique identifier of managedDeviceMobileAppConfigurationDeviceStatus required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationDeviceStatus '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get the number of the resource operationId: deviceAppManagement.mobileAppConfigurations.deviceStatuses.GetCount-812c 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: managedDeviceMobileAppConfiguration-id in: path description: The unique identifier of managedDeviceMobileAppConfiguration required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary': description: Provides operations to manage the deviceStatusSummary property of the microsoft.graph.managedDeviceMobileAppConfiguration entity. get: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get deviceStatusSummary from deviceAppManagement description: App configuration device status summary. operationId: deviceAppManagement.mobileAppConfigurations.GetDeviceStatusSummary parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Update the navigation property deviceStatusSummary in deviceAppManagement operationId: deviceAppManagement.mobileAppConfigurations.UpdateDeviceStatusSummary requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationDeviceSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Delete navigation property deviceStatusSummary for deviceAppManagement operationId: deviceAppManagement.mobileAppConfigurations.DeleteDeviceStatusSummary parameters: - 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: managedDeviceMobileAppConfiguration-id in: path description: The unique identifier of managedDeviceMobileAppConfiguration required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assign': description: Provides operations to call the assign method. post: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Invoke action assign operationId: deviceAppManagement.mobileAppConfigurations.managedDeviceMobileAppConfiguration.assign requestBody: description: Action parameters content: application/json: schema: type: object properties: assignments: type: array items: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationAssignment' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDeviceMobileAppConfiguration-id in: path description: The unique identifier of managedDeviceMobileAppConfiguration required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration x-ms-docs-grouped-path: - '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assign' - '/deviceAppManagement/managedEBooks/{managedEBook-id}/assign' - '/deviceAppManagement/mobileApps/{mobileApp-id}/assign' - '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign' - '/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assign' - '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assign' '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses': description: Provides operations to manage the userStatuses property of the microsoft.graph.managedDeviceMobileAppConfiguration entity. get: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get userStatuses from deviceAppManagement description: List of ManagedDeviceMobileAppConfigurationUserStatus. operationId: deviceAppManagement.mobileAppConfigurations.ListUserStatuses 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.managedDeviceMobileAppConfigurationUserStatusCollectionResponse' 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: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Create new navigation property to userStatuses for deviceAppManagement operationId: deviceAppManagement.mobileAppConfigurations.CreateUserStatuses requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserStatus' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedDeviceMobileAppConfiguration-id in: path description: The unique identifier of managedDeviceMobileAppConfiguration required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}': description: Provides operations to manage the userStatuses property of the microsoft.graph.managedDeviceMobileAppConfiguration entity. get: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get userStatuses from deviceAppManagement description: List of ManagedDeviceMobileAppConfigurationUserStatus. operationId: deviceAppManagement.mobileAppConfigurations.GetUserStatuses parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Update the navigation property userStatuses in deviceAppManagement operationId: deviceAppManagement.mobileAppConfigurations.UpdateUserStatuses requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserStatus' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Delete navigation property userStatuses for deviceAppManagement operationId: deviceAppManagement.mobileAppConfigurations.DeleteUserStatuses parameters: - 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: managedDeviceMobileAppConfiguration-id in: path description: The unique identifier of managedDeviceMobileAppConfiguration required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration - name: managedDeviceMobileAppConfigurationUserStatus-id in: path description: The unique identifier of managedDeviceMobileAppConfigurationUserStatus required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationUserStatus '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get the number of the resource operationId: deviceAppManagement.mobileAppConfigurations.userStatuses.GetCount-b4b1 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: managedDeviceMobileAppConfiguration-id in: path description: The unique identifier of managedDeviceMobileAppConfiguration required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary': description: Provides operations to manage the userStatusSummary property of the microsoft.graph.managedDeviceMobileAppConfiguration entity. get: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get userStatusSummary from deviceAppManagement description: App configuration user status summary. operationId: deviceAppManagement.mobileAppConfigurations.GetUserStatusSummary parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Update the navigation property userStatusSummary in deviceAppManagement operationId: deviceAppManagement.mobileAppConfigurations.UpdateUserStatusSummary requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationUserSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Delete navigation property userStatusSummary for deviceAppManagement operationId: deviceAppManagement.mobileAppConfigurations.DeleteUserStatusSummary parameters: - 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: managedDeviceMobileAppConfiguration-id in: path description: The unique identifier of managedDeviceMobileAppConfiguration required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfiguration /deviceAppManagement/mobileAppConfigurations/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.managedDeviceMobileAppConfiguration summary: Get the number of the resource operationId: deviceAppManagement.mobileAppConfigurations.GetCount-15a7 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' /deviceAppManagement/mobileAppRelationships: description: Provides operations to manage the mobileAppRelationships property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.mobileAppRelationship summary: Get mobileAppRelationships from deviceAppManagement description: List mobileAppRelationship objects for mobile applications. operationId: deviceAppManagement.ListMobileAppRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileAppRelationship summary: Create new navigation property to mobileAppRelationships for deviceAppManagement operationId: deviceAppManagement.CreateMobileAppRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/mobileAppRelationships/{mobileAppRelationship-id}': description: Provides operations to manage the mobileAppRelationships property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.mobileAppRelationship summary: Get mobileAppRelationships from deviceAppManagement description: List mobileAppRelationship objects for mobile applications. operationId: deviceAppManagement.GetMobileAppRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileAppRelationship summary: Update the navigation property mobileAppRelationships in deviceAppManagement operationId: deviceAppManagement.UpdateMobileAppRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileAppRelationship summary: Delete navigation property mobileAppRelationships for deviceAppManagement operationId: deviceAppManagement.DeleteMobileAppRelationships parameters: - 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: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship /deviceAppManagement/mobileAppRelationships/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileAppRelationship summary: Get the number of the resource operationId: deviceAppManagement.mobileAppRelationships.GetCount-a82f 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' /deviceAppManagement/mobileApps: description: Provides operations to manage the mobileApps property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.mobileApp summary: Get mobileApps from deviceAppManagement description: The mobile apps. operationId: deviceAppManagement.ListMobileApps 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.mobileAppCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to mobileApps for deviceAppManagement operationId: deviceAppManagement.CreateMobileApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/mobileApps/{mobileApp-id}': description: Provides operations to manage the mobileApps property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.mobileApp summary: Get mobileApps from deviceAppManagement description: The mobile apps. operationId: deviceAppManagement.GetMobileApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property mobileApps in deviceAppManagement operationId: deviceAppManagement.UpdateMobileApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property mobileApps for deviceAppManagement operationId: deviceAppManagement.DeleteMobileApps parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.assignments.GetCount-493c 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.categories.GetCount-6d0e 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp': description: Casts the previous resource to androidForWorkApp. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.androidForWorkApp operationId: deviceAppManagement.GetMobileApps.AsAndroidForWorkApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.androidForWorkApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsAndroidForWorkApp.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidForWorkApp.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsAndroidForWorkApp.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidForWorkApp.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidForWorkApp.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsAndroidForWorkApp.assignments.GetCount-b6f4 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsAndroidForWorkApp.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsAndroidForWorkApp.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsAndroidForWorkApp.categories.GetCount-15ee 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsAndroidForWorkApp.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidForWorkApp.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsAndroidForWorkApp.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidForWorkApp.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidForWorkApp.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsAndroidForWorkApp.relationships.GetCount-1351 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp': description: Casts the previous resource to androidLobApp. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.androidLobApp operationId: deviceAppManagement.GetMobileApps.AsAndroidLobApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.androidLobApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.assignments.GetCount-1911 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.categories.GetCount-828c 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions': description: Provides operations to manage the contentVersions property of the microsoft.graph.mobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.ListContentVersions 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.mobileAppContentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.CreateContentVersions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}': description: Provides operations to manage the contentVersions property of the microsoft.graph.mobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.GetContentVersions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property contentVersions in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.UpdateContentVersions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.DeleteContentVersions parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.contentVersions.ListContainedApps 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.mobileContainedAppCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.contentVersions.CreateContainedApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.contentVersions.GetContainedApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property containedApps in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.contentVersions.UpdateContainedApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.contentVersions.DeleteContainedApps parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileContainedApp-id in: path description: The unique identifier of mobileContainedApp required: true schema: type: string x-ms-docs-key-type: mobileContainedApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.contentVersions.containedApps.GetCount-510a 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.contentVersions.ListFiles 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.mobileAppContentFileCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.contentVersions.CreateFiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.contentVersions.GetFiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property files in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.contentVersions.UpdateFiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.contentVersions.DeleteFiles parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit': description: Provides operations to call the commit method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action commit description: Commits a file of a given app. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.androidLobApp.contentVersions.mobileAppContent.files.mobileAppContentFile.commit requestBody: description: Action parameters content: application/json: schema: type: object properties: fileEncryptionInfo: anyOf: - $ref: '#/components/schemas/microsoft.graph.fileEncryptionInfo' - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload': description: Provides operations to call the renewUpload method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action renewUpload description: Renews the SAS URI for an application file upload. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.androidLobApp.contentVersions.mobileAppContent.files.mobileAppContentFile.renewUpload responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.contentVersions.files.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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.contentVersions.GetCount-12ca 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsAndroidLobApp.relationships.GetCount-bcda 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp': description: Casts the previous resource to androidManagedStoreApp. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.androidManagedStoreApp operationId: deviceAppManagement.GetMobileApps.AsAndroidManagedStoreApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.androidManagedStoreApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsAndroidManagedStoreApp.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidManagedStoreApp.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsAndroidManagedStoreApp.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidManagedStoreApp.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidManagedStoreApp.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsAndroidManagedStoreApp.assignments.GetCount-ae88 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsAndroidManagedStoreApp.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsAndroidManagedStoreApp.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsAndroidManagedStoreApp.categories.GetCount-9f41 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsAndroidManagedStoreApp.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidManagedStoreApp.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsAndroidManagedStoreApp.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidManagedStoreApp.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidManagedStoreApp.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsAndroidManagedStoreApp.relationships.GetCount-bb31 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp': description: Casts the previous resource to androidStoreApp. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.androidStoreApp operationId: deviceAppManagement.GetMobileApps.AsAndroidStoreApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.androidStoreApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsAndroidStoreApp.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidStoreApp.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsAndroidStoreApp.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidStoreApp.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidStoreApp.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsAndroidStoreApp.assignments.GetCount-6eb3 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsAndroidStoreApp.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsAndroidStoreApp.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsAndroidStoreApp.categories.GetCount-2f24 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsAndroidStoreApp.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidStoreApp.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsAndroidStoreApp.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidStoreApp.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsAndroidStoreApp.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsAndroidStoreApp.relationships.GetCount-bf5f 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/assign': description: Provides operations to call the assign method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action assign operationId: deviceAppManagement.mobileApps.mobileApp.assign requestBody: description: Action parameters content: application/json: schema: type: object properties: mobileAppAssignments: type: array items: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assign' - '/deviceAppManagement/managedEBooks/{managedEBook-id}/assign' - '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assign' - '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign' - '/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assign' - '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assign' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp': description: Casts the previous resource to iosLobApp. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.iosLobApp operationId: deviceAppManagement.GetMobileApps.AsIosLobApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.iosLobApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsIosLobApp.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosLobApp.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsIosLobApp.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosLobApp.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosLobApp.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsIosLobApp.assignments.GetCount-22ac 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsIosLobApp.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsIosLobApp.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsIosLobApp.categories.GetCount-9433 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions': description: Provides operations to manage the contentVersions property of the microsoft.graph.mobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsIosLobApp.ListContentVersions 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.mobileAppContentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosLobApp.CreateContentVersions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}': description: Provides operations to manage the contentVersions property of the microsoft.graph.mobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsIosLobApp.GetContentVersions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property contentVersions in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosLobApp.UpdateContentVersions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosLobApp.DeleteContentVersions parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsIosLobApp.contentVersions.ListContainedApps 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.mobileContainedAppCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosLobApp.contentVersions.CreateContainedApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsIosLobApp.contentVersions.GetContainedApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property containedApps in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosLobApp.contentVersions.UpdateContainedApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosLobApp.contentVersions.DeleteContainedApps parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileContainedApp-id in: path description: The unique identifier of mobileContainedApp required: true schema: type: string x-ms-docs-key-type: mobileContainedApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsIosLobApp.contentVersions.containedApps.GetCount-7a04 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsIosLobApp.contentVersions.ListFiles 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.mobileAppContentFileCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosLobApp.contentVersions.CreateFiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsIosLobApp.contentVersions.GetFiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property files in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosLobApp.contentVersions.UpdateFiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosLobApp.contentVersions.DeleteFiles parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit': description: Provides operations to call the commit method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action commit description: Commits a file of a given app. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.iosLobApp.contentVersions.mobileAppContent.files.mobileAppContentFile.commit requestBody: description: Action parameters content: application/json: schema: type: object properties: fileEncryptionInfo: anyOf: - $ref: '#/components/schemas/microsoft.graph.fileEncryptionInfo' - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload': description: Provides operations to call the renewUpload method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action renewUpload description: Renews the SAS URI for an application file upload. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.iosLobApp.contentVersions.mobileAppContent.files.mobileAppContentFile.renewUpload responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsIosLobApp.contentVersions.files.GetCount-ec6f 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsIosLobApp.contentVersions.GetCount-e450 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsIosLobApp.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosLobApp.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsIosLobApp.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosLobApp.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosLobApp.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsIosLobApp.relationships.GetCount-0e21 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp': description: Casts the previous resource to iosStoreApp. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.iosStoreApp operationId: deviceAppManagement.GetMobileApps.AsIosStoreApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.iosStoreApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsIosStoreApp.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosStoreApp.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsIosStoreApp.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosStoreApp.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosStoreApp.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsIosStoreApp.assignments.GetCount-ec45 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsIosStoreApp.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsIosStoreApp.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsIosStoreApp.categories.GetCount-06f1 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsIosStoreApp.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosStoreApp.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsIosStoreApp.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosStoreApp.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosStoreApp.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsIosStoreApp.relationships.GetCount-c1f6 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp': description: Casts the previous resource to iosVppApp. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.iosVppApp operationId: deviceAppManagement.GetMobileApps.AsIosVppApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.iosVppApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignedLicenses': description: Provides operations to manage the assignedLicenses property of the microsoft.graph.iosVppApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignedLicenses from deviceAppManagement description: The licenses assigned to this app. operationId: deviceAppManagement.mobileApps.AsIosVppApp.ListAssignedLicenses 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.iosVppAppAssignedLicenseCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignedLicenses for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosVppApp.CreateAssignedLicenses requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosVppAppAssignedLicense' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosVppAppAssignedLicense' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignedLicenses/{iosVppAppAssignedLicense-id}': description: Provides operations to manage the assignedLicenses property of the microsoft.graph.iosVppApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignedLicenses from deviceAppManagement description: The licenses assigned to this app. operationId: deviceAppManagement.mobileApps.AsIosVppApp.GetAssignedLicenses parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosVppAppAssignedLicense' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignedLicenses in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosVppApp.UpdateAssignedLicenses requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosVppAppAssignedLicense' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.iosVppAppAssignedLicense' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignedLicenses for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosVppApp.DeleteAssignedLicenses parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: iosVppAppAssignedLicense-id in: path description: The unique identifier of iosVppAppAssignedLicense required: true schema: type: string x-ms-docs-key-type: iosVppAppAssignedLicense '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignedLicenses/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsIosVppApp.assignedLicenses.GetCount-91de 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsIosVppApp.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosVppApp.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsIosVppApp.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosVppApp.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosVppApp.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsIosVppApp.assignments.GetCount-4b18 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsIosVppApp.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsIosVppApp.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsIosVppApp.categories.GetCount-7fa7 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsIosVppApp.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosVppApp.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsIosVppApp.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosVppApp.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsIosVppApp.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsIosVppApp.relationships.GetCount-3862 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp': description: Casts the previous resource to macOSDmgApp. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.macOSDmgApp operationId: deviceAppManagement.GetMobileApps.AsMacOSDmgApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.macOSDmgApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.assignments.GetCount-2a85 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.categories.GetCount-ccbd 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions': description: Provides operations to manage the contentVersions property of the microsoft.graph.mobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.ListContentVersions 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.mobileAppContentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.CreateContentVersions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}': description: Provides operations to manage the contentVersions property of the microsoft.graph.mobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.GetContentVersions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property contentVersions in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.UpdateContentVersions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.DeleteContentVersions parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.contentVersions.ListContainedApps 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.mobileContainedAppCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.contentVersions.CreateContainedApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.contentVersions.GetContainedApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property containedApps in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.contentVersions.UpdateContainedApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.contentVersions.DeleteContainedApps parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileContainedApp-id in: path description: The unique identifier of mobileContainedApp required: true schema: type: string x-ms-docs-key-type: mobileContainedApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.contentVersions.containedApps.GetCount-19e5 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.contentVersions.ListFiles 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.mobileAppContentFileCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.contentVersions.CreateFiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.contentVersions.GetFiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property files in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.contentVersions.UpdateFiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.contentVersions.DeleteFiles parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit': description: Provides operations to call the commit method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action commit description: Commits a file of a given app. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.macOSDmgApp.contentVersions.mobileAppContent.files.mobileAppContentFile.commit requestBody: description: Action parameters content: application/json: schema: type: object properties: fileEncryptionInfo: anyOf: - $ref: '#/components/schemas/microsoft.graph.fileEncryptionInfo' - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload': description: Provides operations to call the renewUpload method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action renewUpload description: Renews the SAS URI for an application file upload. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.macOSDmgApp.contentVersions.mobileAppContent.files.mobileAppContentFile.renewUpload responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.contentVersions.files.GetCount-36b4 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.contentVersions.GetCount-df85 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMacOSDmgApp.relationships.GetCount-0f1e 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp': description: Casts the previous resource to macOSLobApp. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.macOSLobApp operationId: deviceAppManagement.GetMobileApps.AsMacOSLobApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.macOSLobApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.assignments.GetCount-0658 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.categories.GetCount-18f1 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions': description: Provides operations to manage the contentVersions property of the microsoft.graph.mobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.ListContentVersions 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.mobileAppContentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.CreateContentVersions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}': description: Provides operations to manage the contentVersions property of the microsoft.graph.mobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.GetContentVersions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property contentVersions in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.UpdateContentVersions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.DeleteContentVersions parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.contentVersions.ListContainedApps 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.mobileContainedAppCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.contentVersions.CreateContainedApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.contentVersions.GetContainedApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property containedApps in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.contentVersions.UpdateContainedApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.contentVersions.DeleteContainedApps parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileContainedApp-id in: path description: The unique identifier of mobileContainedApp required: true schema: type: string x-ms-docs-key-type: mobileContainedApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.contentVersions.containedApps.GetCount-667c 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.contentVersions.ListFiles 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.mobileAppContentFileCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.contentVersions.CreateFiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.contentVersions.GetFiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property files in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.contentVersions.UpdateFiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.contentVersions.DeleteFiles parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit': description: Provides operations to call the commit method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action commit description: Commits a file of a given app. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.macOSLobApp.contentVersions.mobileAppContent.files.mobileAppContentFile.commit requestBody: description: Action parameters content: application/json: schema: type: object properties: fileEncryptionInfo: anyOf: - $ref: '#/components/schemas/microsoft.graph.fileEncryptionInfo' - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload': description: Provides operations to call the renewUpload method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action renewUpload description: Renews the SAS URI for an application file upload. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.macOSLobApp.contentVersions.mobileAppContent.files.mobileAppContentFile.renewUpload responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.contentVersions.files.GetCount-ebb2 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.contentVersions.GetCount-f249 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMacOSLobApp.relationships.GetCount-7a9d 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp': description: Casts the previous resource to macOSPkgApp. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.macOSPkgApp operationId: deviceAppManagement.GetMobileApps.AsMacOSPkgApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.macOSPkgApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.assignments.GetCount-856a 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.categories.GetCount-ab55 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions': description: Provides operations to manage the contentVersions property of the microsoft.graph.mobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.ListContentVersions 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.mobileAppContentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.CreateContentVersions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}': description: Provides operations to manage the contentVersions property of the microsoft.graph.mobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.GetContentVersions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property contentVersions in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.UpdateContentVersions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.DeleteContentVersions parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.contentVersions.ListContainedApps 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.mobileContainedAppCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.contentVersions.CreateContainedApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.contentVersions.GetContainedApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property containedApps in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.contentVersions.UpdateContainedApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.contentVersions.DeleteContainedApps parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileContainedApp-id in: path description: The unique identifier of mobileContainedApp required: true schema: type: string x-ms-docs-key-type: mobileContainedApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.contentVersions.containedApps.GetCount-b97e 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.contentVersions.ListFiles 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.mobileAppContentFileCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.contentVersions.CreateFiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.contentVersions.GetFiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property files in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.contentVersions.UpdateFiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.contentVersions.DeleteFiles parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit': description: Provides operations to call the commit method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action commit description: Commits a file of a given app. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.macOSPkgApp.contentVersions.mobileAppContent.files.mobileAppContentFile.commit requestBody: description: Action parameters content: application/json: schema: type: object properties: fileEncryptionInfo: anyOf: - $ref: '#/components/schemas/microsoft.graph.fileEncryptionInfo' - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload': description: Provides operations to call the renewUpload method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action renewUpload description: Renews the SAS URI for an application file upload. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.macOSPkgApp.contentVersions.mobileAppContent.files.mobileAppContentFile.renewUpload responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.contentVersions.files.GetCount-5d3c 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.contentVersions.GetCount-5550 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMacOSPkgApp.relationships.GetCount-1435 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp': description: Casts the previous resource to managedAndroidLobApp. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.managedAndroidLobApp operationId: deviceAppManagement.GetMobileApps.AsManagedAndroidLobApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.managedAndroidLobApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.assignments.GetCount-7cc2 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.categories.GetCount-ebb1 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions': description: Provides operations to manage the contentVersions property of the microsoft.graph.managedMobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.ListContentVersions 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.mobileAppContentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.CreateContentVersions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}': description: Provides operations to manage the contentVersions property of the microsoft.graph.managedMobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.GetContentVersions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property contentVersions in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.UpdateContentVersions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.DeleteContentVersions parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.contentVersions.ListContainedApps 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.mobileContainedAppCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.contentVersions.CreateContainedApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.contentVersions.GetContainedApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property containedApps in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.contentVersions.UpdateContainedApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.contentVersions.DeleteContainedApps parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileContainedApp-id in: path description: The unique identifier of mobileContainedApp required: true schema: type: string x-ms-docs-key-type: mobileContainedApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.contentVersions.containedApps.GetCount-1666 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.contentVersions.ListFiles 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.mobileAppContentFileCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.contentVersions.CreateFiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.contentVersions.GetFiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property files in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.contentVersions.UpdateFiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.contentVersions.DeleteFiles parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit': description: Provides operations to call the commit method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action commit description: Commits a file of a given app. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.managedAndroidLobApp.contentVersions.mobileAppContent.files.mobileAppContentFile.commit requestBody: description: Action parameters content: application/json: schema: type: object properties: fileEncryptionInfo: anyOf: - $ref: '#/components/schemas/microsoft.graph.fileEncryptionInfo' - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload': description: Provides operations to call the renewUpload method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action renewUpload description: Renews the SAS URI for an application file upload. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.managedAndroidLobApp.contentVersions.mobileAppContent.files.mobileAppContentFile.renewUpload responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.contentVersions.files.GetCount-237b 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.contentVersions.GetCount-bb5b 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsManagedAndroidLobApp.relationships.GetCount-1eb5 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp': description: Casts the previous resource to managedIOSLobApp. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.managedIOSLobApp operationId: deviceAppManagement.GetMobileApps.AsManagedIOSLobApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.managedIOSLobApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.assignments.GetCount-6633 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.categories.GetCount-baea 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions': description: Provides operations to manage the contentVersions property of the microsoft.graph.managedMobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.ListContentVersions 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.mobileAppContentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.CreateContentVersions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}': description: Provides operations to manage the contentVersions property of the microsoft.graph.managedMobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.GetContentVersions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property contentVersions in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.UpdateContentVersions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.DeleteContentVersions parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.contentVersions.ListContainedApps 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.mobileContainedAppCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.contentVersions.CreateContainedApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.contentVersions.GetContainedApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property containedApps in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.contentVersions.UpdateContainedApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.contentVersions.DeleteContainedApps parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileContainedApp-id in: path description: The unique identifier of mobileContainedApp required: true schema: type: string x-ms-docs-key-type: mobileContainedApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.contentVersions.containedApps.GetCount-877c 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.contentVersions.ListFiles 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.mobileAppContentFileCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.contentVersions.CreateFiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.contentVersions.GetFiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property files in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.contentVersions.UpdateFiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.contentVersions.DeleteFiles parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit': description: Provides operations to call the commit method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action commit description: Commits a file of a given app. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.managedIOSLobApp.contentVersions.mobileAppContent.files.mobileAppContentFile.commit requestBody: description: Action parameters content: application/json: schema: type: object properties: fileEncryptionInfo: anyOf: - $ref: '#/components/schemas/microsoft.graph.fileEncryptionInfo' - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload': description: Provides operations to call the renewUpload method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action renewUpload description: Renews the SAS URI for an application file upload. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.managedIOSLobApp.contentVersions.mobileAppContent.files.mobileAppContentFile.renewUpload responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.contentVersions.files.GetCount-6260 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.contentVersions.GetCount-57c4 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsManagedIOSLobApp.relationships.GetCount-e4fc 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp': description: Casts the previous resource to managedMobileLobApp. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.managedMobileLobApp operationId: deviceAppManagement.GetMobileApps.AsManagedMobileLobApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.managedMobileLobApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.assignments.GetCount-7f2e 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.categories.GetCount-6e46 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions': description: Provides operations to manage the contentVersions property of the microsoft.graph.managedMobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.ListContentVersions 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.mobileAppContentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.CreateContentVersions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}': description: Provides operations to manage the contentVersions property of the microsoft.graph.managedMobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.GetContentVersions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property contentVersions in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.UpdateContentVersions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.DeleteContentVersions parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.contentVersions.ListContainedApps 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.mobileContainedAppCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.contentVersions.CreateContainedApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.contentVersions.GetContainedApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property containedApps in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.contentVersions.UpdateContainedApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.contentVersions.DeleteContainedApps parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileContainedApp-id in: path description: The unique identifier of mobileContainedApp required: true schema: type: string x-ms-docs-key-type: mobileContainedApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.contentVersions.containedApps.GetCount-4c53 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.contentVersions.ListFiles 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.mobileAppContentFileCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.contentVersions.CreateFiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.contentVersions.GetFiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property files in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.contentVersions.UpdateFiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.contentVersions.DeleteFiles parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit': description: Provides operations to call the commit method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action commit description: Commits a file of a given app. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.managedMobileLobApp.contentVersions.mobileAppContent.files.mobileAppContentFile.commit requestBody: description: Action parameters content: application/json: schema: type: object properties: fileEncryptionInfo: anyOf: - $ref: '#/components/schemas/microsoft.graph.fileEncryptionInfo' - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload': description: Provides operations to call the renewUpload method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action renewUpload description: Renews the SAS URI for an application file upload. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.managedMobileLobApp.contentVersions.mobileAppContent.files.mobileAppContentFile.renewUpload responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.contentVersions.files.GetCount-f9ec 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.contentVersions.GetCount-db35 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsManagedMobileLobApp.relationships.GetCount-402b 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp': description: Casts the previous resource to microsoftStoreForBusinessApp. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.microsoftStoreForBusinessApp operationId: deviceAppManagement.GetMobileApps.AsMicrosoftStoreForBusinessApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.microsoftStoreForBusinessApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.assignments.GetCount-38b3 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.categories.GetCount-e09e 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/containedApps': description: Provides operations to manage the containedApps property of the microsoft.graph.microsoftStoreForBusinessApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a mobileApp acting as a package. operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.ListContainedApps 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.mobileContainedAppCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.CreateContainedApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/containedApps/{mobileContainedApp-id}': description: Provides operations to manage the containedApps property of the microsoft.graph.microsoftStoreForBusinessApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a mobileApp acting as a package. operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.GetContainedApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property containedApps in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.UpdateContainedApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.DeleteContainedApps parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileContainedApp-id in: path description: The unique identifier of mobileContainedApp required: true schema: type: string x-ms-docs-key-type: mobileContainedApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/containedApps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.containedApps.GetCount-d4e5 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsMicrosoftStoreForBusinessApp.relationships.GetCount-484c 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/updateRelationships': description: Provides operations to call the updateRelationships method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action updateRelationships operationId: deviceAppManagement.mobileApps.mobileApp.updateRelationships requestBody: description: Action parameters content: application/json: schema: type: object properties: relationships: type: array items: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp': description: Casts the previous resource to win32LobApp. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.win32LobApp operationId: deviceAppManagement.GetMobileApps.AsWin32LobApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.win32LobApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsWin32LobApp.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWin32LobApp.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsWin32LobApp.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWin32LobApp.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWin32LobApp.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWin32LobApp.assignments.GetCount-ce71 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsWin32LobApp.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsWin32LobApp.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWin32LobApp.categories.GetCount-fcaa 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions': description: Provides operations to manage the contentVersions property of the microsoft.graph.mobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsWin32LobApp.ListContentVersions 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.mobileAppContentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWin32LobApp.CreateContentVersions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}': description: Provides operations to manage the contentVersions property of the microsoft.graph.mobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsWin32LobApp.GetContentVersions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property contentVersions in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWin32LobApp.UpdateContentVersions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWin32LobApp.DeleteContentVersions parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsWin32LobApp.contentVersions.ListContainedApps 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.mobileContainedAppCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWin32LobApp.contentVersions.CreateContainedApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsWin32LobApp.contentVersions.GetContainedApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property containedApps in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWin32LobApp.contentVersions.UpdateContainedApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWin32LobApp.contentVersions.DeleteContainedApps parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileContainedApp-id in: path description: The unique identifier of mobileContainedApp required: true schema: type: string x-ms-docs-key-type: mobileContainedApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWin32LobApp.contentVersions.containedApps.GetCount-5c38 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsWin32LobApp.contentVersions.ListFiles 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.mobileAppContentFileCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWin32LobApp.contentVersions.CreateFiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsWin32LobApp.contentVersions.GetFiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property files in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWin32LobApp.contentVersions.UpdateFiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWin32LobApp.contentVersions.DeleteFiles parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit': description: Provides operations to call the commit method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action commit description: Commits a file of a given app. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.win32LobApp.contentVersions.mobileAppContent.files.mobileAppContentFile.commit requestBody: description: Action parameters content: application/json: schema: type: object properties: fileEncryptionInfo: anyOf: - $ref: '#/components/schemas/microsoft.graph.fileEncryptionInfo' - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload': description: Provides operations to call the renewUpload method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action renewUpload description: Renews the SAS URI for an application file upload. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.win32LobApp.contentVersions.mobileAppContent.files.mobileAppContentFile.renewUpload responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWin32LobApp.contentVersions.files.GetCount-1de1 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWin32LobApp.contentVersions.GetCount-1710 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsWin32LobApp.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWin32LobApp.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsWin32LobApp.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWin32LobApp.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWin32LobApp.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWin32LobApp.relationships.GetCount-f356 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX': description: Casts the previous resource to windowsAppX. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.windowsAppX operationId: deviceAppManagement.GetMobileApps.AsWindowsAppX parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.windowsAppX' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsAppX.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsAppX.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsAppX.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsAppX.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsAppX.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsAppX.assignments.GetCount-59b1 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsWindowsAppX.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsWindowsAppX.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsAppX.categories.GetCount-d1eb 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions': description: Provides operations to manage the contentVersions property of the microsoft.graph.mobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsWindowsAppX.ListContentVersions 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.mobileAppContentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsAppX.CreateContentVersions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}': description: Provides operations to manage the contentVersions property of the microsoft.graph.mobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsWindowsAppX.GetContentVersions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property contentVersions in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsAppX.UpdateContentVersions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsAppX.DeleteContentVersions parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsWindowsAppX.contentVersions.ListContainedApps 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.mobileContainedAppCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsAppX.contentVersions.CreateContainedApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsWindowsAppX.contentVersions.GetContainedApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property containedApps in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsAppX.contentVersions.UpdateContainedApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsAppX.contentVersions.DeleteContainedApps parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileContainedApp-id in: path description: The unique identifier of mobileContainedApp required: true schema: type: string x-ms-docs-key-type: mobileContainedApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsAppX.contentVersions.containedApps.GetCount-d3ec 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsWindowsAppX.contentVersions.ListFiles 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.mobileAppContentFileCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsAppX.contentVersions.CreateFiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsWindowsAppX.contentVersions.GetFiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property files in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsAppX.contentVersions.UpdateFiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsAppX.contentVersions.DeleteFiles parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit': description: Provides operations to call the commit method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action commit description: Commits a file of a given app. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.windowsAppX.contentVersions.mobileAppContent.files.mobileAppContentFile.commit requestBody: description: Action parameters content: application/json: schema: type: object properties: fileEncryptionInfo: anyOf: - $ref: '#/components/schemas/microsoft.graph.fileEncryptionInfo' - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload': description: Provides operations to call the renewUpload method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action renewUpload description: Renews the SAS URI for an application file upload. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.windowsAppX.contentVersions.mobileAppContent.files.mobileAppContentFile.renewUpload responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsAppX.contentVersions.files.GetCount-21f7 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsAppX.contentVersions.GetCount-e02a 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsAppX.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsAppX.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsAppX.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsAppX.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsAppX.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsAppX.relationships.GetCount-73c0 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI': description: Casts the previous resource to windowsMobileMSI. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.windowsMobileMSI operationId: deviceAppManagement.GetMobileApps.AsWindowsMobileMSI parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.windowsMobileMSI' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.assignments.GetCount-4603 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.categories.GetCount-4240 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions': description: Provides operations to manage the contentVersions property of the microsoft.graph.mobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.ListContentVersions 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.mobileAppContentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.CreateContentVersions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}': description: Provides operations to manage the contentVersions property of the microsoft.graph.mobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.GetContentVersions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property contentVersions in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.UpdateContentVersions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.DeleteContentVersions parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.contentVersions.ListContainedApps 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.mobileContainedAppCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.contentVersions.CreateContainedApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.contentVersions.GetContainedApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property containedApps in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.contentVersions.UpdateContainedApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.contentVersions.DeleteContainedApps parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileContainedApp-id in: path description: The unique identifier of mobileContainedApp required: true schema: type: string x-ms-docs-key-type: mobileContainedApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.contentVersions.containedApps.GetCount-1ef7 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.contentVersions.ListFiles 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.mobileAppContentFileCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.contentVersions.CreateFiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.contentVersions.GetFiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property files in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.contentVersions.UpdateFiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.contentVersions.DeleteFiles parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit': description: Provides operations to call the commit method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action commit description: Commits a file of a given app. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.windowsMobileMSI.contentVersions.mobileAppContent.files.mobileAppContentFile.commit requestBody: description: Action parameters content: application/json: schema: type: object properties: fileEncryptionInfo: anyOf: - $ref: '#/components/schemas/microsoft.graph.fileEncryptionInfo' - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload': description: Provides operations to call the renewUpload method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action renewUpload description: Renews the SAS URI for an application file upload. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.windowsMobileMSI.contentVersions.mobileAppContent.files.mobileAppContentFile.renewUpload responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.contentVersions.files.GetCount-56d9 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.contentVersions.GetCount-4cf0 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsMobileMSI.relationships.GetCount-192f 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp': description: Casts the previous resource to windowsStoreApp. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.windowsStoreApp operationId: deviceAppManagement.GetMobileApps.AsWindowsStoreApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.windowsStoreApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsStoreApp.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsStoreApp.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsStoreApp.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsStoreApp.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsStoreApp.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsStoreApp.assignments.GetCount-0228 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsWindowsStoreApp.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsWindowsStoreApp.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsStoreApp.categories.GetCount-5216 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsStoreApp.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsStoreApp.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsStoreApp.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsStoreApp.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsStoreApp.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsStoreApp.relationships.GetCount-6d6e 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX': description: Casts the previous resource to windowsUniversalAppX. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.windowsUniversalAppX operationId: deviceAppManagement.GetMobileApps.AsWindowsUniversalAppX parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.windowsUniversalAppX' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.assignments.GetCount-07a1 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.categories.GetCount-c2ed 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/committedContainedApps': description: Provides operations to manage the committedContainedApps property of the microsoft.graph.windowsUniversalAppX entity. get: tags: - deviceAppManagement.mobileApp summary: Get committedContainedApps from deviceAppManagement description: The collection of contained apps in the committed mobileAppContent of a windowsUniversalAppX app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.ListCommittedContainedApps 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.mobileContainedAppCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to committedContainedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.CreateCommittedContainedApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/committedContainedApps/{mobileContainedApp-id}': description: Provides operations to manage the committedContainedApps property of the microsoft.graph.windowsUniversalAppX entity. get: tags: - deviceAppManagement.mobileApp summary: Get committedContainedApps from deviceAppManagement description: The collection of contained apps in the committed mobileAppContent of a windowsUniversalAppX app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.GetCommittedContainedApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property committedContainedApps in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.UpdateCommittedContainedApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property committedContainedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.DeleteCommittedContainedApps parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileContainedApp-id in: path description: The unique identifier of mobileContainedApp required: true schema: type: string x-ms-docs-key-type: mobileContainedApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/committedContainedApps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.committedContainedApps.GetCount-b859 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions': description: Provides operations to manage the contentVersions property of the microsoft.graph.mobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.ListContentVersions 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.mobileAppContentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.CreateContentVersions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}': description: Provides operations to manage the contentVersions property of the microsoft.graph.mobileLobApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get contentVersions from deviceAppManagement description: The list of content versions for this app. This property is read-only. operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.GetContentVersions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property contentVersions in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.UpdateContentVersions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property contentVersions for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.DeleteContentVersions parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.contentVersions.ListContainedApps 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.mobileContainedAppCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.contentVersions.CreateContainedApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}': description: Provides operations to manage the containedApps property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get containedApps from deviceAppManagement description: The collection of contained apps in a MobileLobApp acting as a package. operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.contentVersions.GetContainedApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property containedApps in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.contentVersions.UpdateContainedApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileContainedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property containedApps for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.contentVersions.DeleteContainedApps parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileContainedApp-id in: path description: The unique identifier of mobileContainedApp required: true schema: type: string x-ms-docs-key-type: mobileContainedApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.contentVersions.containedApps.GetCount-be43 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.contentVersions.ListFiles 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.mobileAppContentFileCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.contentVersions.CreateFiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}': description: Provides operations to manage the files property of the microsoft.graph.mobileAppContent entity. get: tags: - deviceAppManagement.mobileApp summary: Get files from deviceAppManagement description: The list of files for this app content version. operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.contentVersions.GetFiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property files in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.contentVersions.UpdateFiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppContentFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property files for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.contentVersions.DeleteFiles parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit': description: Provides operations to call the commit method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action commit description: Commits a file of a given app. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.windowsUniversalAppX.contentVersions.mobileAppContent.files.mobileAppContentFile.commit requestBody: description: Action parameters content: application/json: schema: type: object properties: fileEncryptionInfo: anyOf: - $ref: '#/components/schemas/microsoft.graph.fileEncryptionInfo' - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload': description: Provides operations to call the renewUpload method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action renewUpload description: Renews the SAS URI for an application file upload. operationId: deviceAppManagement.mobileApps.mobileApp.microsoft.graph.windowsUniversalAppX.contentVersions.mobileAppContent.files.mobileAppContentFile.renewUpload responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent - name: mobileAppContentFile-id in: path description: The unique identifier of mobileAppContentFile required: true schema: type: string x-ms-docs-key-type: mobileAppContentFile x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.contentVersions.files.GetCount-43a7 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppContent-id in: path description: The unique identifier of mobileAppContent required: true schema: type: string x-ms-docs-key-type: mobileAppContent '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/contentVersions/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.contentVersions.GetCount-2f10 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsUniversalAppX.relationships.GetCount-317e 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp': description: Casts the previous resource to windowsWebApp. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.windowsWebApp operationId: deviceAppManagement.GetMobileApps.AsWindowsWebApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.windowsWebApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsWebApp.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsWebApp.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsWebApp.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsWebApp.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsWebApp.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsWebApp.assignments.GetCount-0362 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsWindowsWebApp.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsWindowsWebApp.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsWebApp.categories.GetCount-79ca 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsWebApp.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsWebApp.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsWindowsWebApp.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsWebApp.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWindowsWebApp.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWindowsWebApp.relationships.GetCount-2e35 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp': description: Casts the previous resource to winGetApp. get: tags: - deviceAppManagement.mobileApp summary: Get the item of type microsoft.graph.mobileApp as microsoft.graph.winGetApp operationId: deviceAppManagement.GetMobileApps.AsWinGetApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: 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.winGetApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsWinGetApp.ListAssignments 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.mobileAppAssignmentCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWinGetApp.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/{mobileAppAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get assignments from deviceAppManagement description: The list of group assignments for this mobile app. operationId: deviceAppManagement.mobileApps.AsWinGetApp.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWinGetApp.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWinGetApp.DeleteAssignments parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppAssignment-id in: path description: The unique identifier of mobileAppAssignment required: true schema: type: string x-ms-docs-key-type: mobileAppAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/assignments/{mobileAppAssignment-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWinGetApp.assignments.GetCount-fc64 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsWinGetApp.ListCategories 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.mobileAppCategoryCollectionResponse' 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/{mobileAppCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get categories from deviceAppManagement description: The list of categories for this app. operationId: deviceAppManagement.mobileApps.AsWinGetApp.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppCategory-id in: path description: The unique identifier of mobileAppCategory required: true schema: type: string x-ms-docs-key-type: mobileAppCategory x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/categories/{mobileAppCategory-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/categories/{mobileAppCategory-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/categories/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWinGetApp.categories.GetCount-5263 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsWinGetApp.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWinGetApp.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.AsWinGetApp.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWinGetApp.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.AsWinGetApp.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.AsWinGetApp.relationships.GetCount-8db3 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.ListRelationships 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.mobileAppRelationshipCollectionResponse' 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: - deviceAppManagement.mobileApp summary: Create new navigation property to relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.CreateRelationships requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships' '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}': description: Provides operations to manage the relationships property of the microsoft.graph.mobileApp entity. get: tags: - deviceAppManagement.mobileApp summary: Get relationships from deviceAppManagement description: List of relationships for this mobile app. operationId: deviceAppManagement.mobileApps.GetRelationships parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.mobileApp summary: Update the navigation property relationships in deviceAppManagement operationId: deviceAppManagement.mobileApps.UpdateRelationships requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.mobileAppRelationship' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.mobileApp summary: Delete navigation property relationships for deviceAppManagement operationId: deviceAppManagement.mobileApps.DeleteRelationships parameters: - 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp - name: mobileAppRelationship-id in: path description: The unique identifier of mobileAppRelationship required: true schema: type: string x-ms-docs-key-type: mobileAppRelationship x-ms-docs-grouped-path: - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidForWorkApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidManagedStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.androidStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.iosVppApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSDmgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.macOSPkgApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedAndroidLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedIOSLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.managedMobileLobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.win32LobApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsMobileMSI/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsStoreApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsUniversalAppX/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.windowsWebApp/relationships/{mobileAppRelationship-id}' - '/deviceAppManagement/mobileApps/{mobileApp-id}/graph.winGetApp/relationships/{mobileAppRelationship-id}' '/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.relationships.GetCount-e867 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: mobileApp-id in: path description: The unique identifier of mobileApp required: true schema: type: string x-ms-docs-key-type: mobileApp /deviceAppManagement/mobileApps/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.mobileApps.GetCount-dcef 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' /deviceAppManagement/mobileApps/graph.androidForWorkApp: description: Casts the previous resource to androidForWorkApp. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.androidForWorkApp in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsAndroidForWorkApp 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.androidForWorkAppCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.androidForWorkApp/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsAndroidForWorkApp-2f04 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' /deviceAppManagement/mobileApps/graph.androidLobApp: description: Casts the previous resource to androidLobApp. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.androidLobApp in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsAndroidLobApp 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.androidLobAppCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.androidLobApp/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsAndroidLobApp-3c7c 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' /deviceAppManagement/mobileApps/graph.androidManagedStoreApp: description: Casts the previous resource to androidManagedStoreApp. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.androidManagedStoreApp in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsAndroidManagedStoreApp 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.androidManagedStoreAppCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.androidManagedStoreApp/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsAndroidManagedStoreApp-eb96 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' /deviceAppManagement/mobileApps/graph.androidStoreApp: description: Casts the previous resource to androidStoreApp. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.androidStoreApp in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsAndroidStoreApp 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.androidStoreAppCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.androidStoreApp/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsAndroidStoreApp-fff5 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' '/deviceAppManagement/mobileApps/convertFromMobileAppCatalogPackage(mobileAppCatalogPackageId=''{mobileAppCatalogPackageId}'')': description: Provides operations to call the convertFromMobileAppCatalogPackage method. get: tags: - deviceAppManagement.mobileApp summary: Invoke function convertFromMobileAppCatalogPackage operationId: deviceAppManagement.mobileApps.convertFromMobileAppCatalogPackage responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.mobileApp' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: mobileAppCatalogPackageId in: path description: 'Usage: mobileAppCatalogPackageId=''{mobileAppCatalogPackageId}''' required: true schema: type: string nullable: true /deviceAppManagement/mobileApps/hasPayloadLinks: description: Provides operations to call the hasPayloadLinks method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action hasPayloadLinks operationId: deviceAppManagement.mobileApps.hasPayloadLinks requestBody: description: Action parameters content: application/json: schema: type: object properties: payloadIds: type: array items: type: string 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.hasPayloadLinkResultItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-grouped-path: - /deviceAppManagement/androidManagedAppProtections/hasPayloadLinks - /deviceAppManagement/iosLobAppProvisioningConfigurations/hasPayloadLinks - /deviceAppManagement/iosManagedAppProtections/hasPayloadLinks - /deviceAppManagement/mdmWindowsInformationProtectionPolicies/hasPayloadLinks - /deviceAppManagement/targetedManagedAppConfigurations/hasPayloadLinks /deviceAppManagement/mobileApps/graph.iosLobApp: description: Casts the previous resource to iosLobApp. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.iosLobApp in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsIosLobApp 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.iosLobAppCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.iosLobApp/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsIosLobApp-f182 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' /deviceAppManagement/mobileApps/graph.iosStoreApp: description: Casts the previous resource to iosStoreApp. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.iosStoreApp in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsIosStoreApp 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.iosStoreAppCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.iosStoreApp/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsIosStoreApp-6fbc 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' /deviceAppManagement/mobileApps/graph.iosVppApp: description: Casts the previous resource to iosVppApp. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.iosVppApp in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsIosVppApp 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.iosVppAppCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.iosVppApp/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsIosVppApp-da96 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' /deviceAppManagement/mobileApps/graph.macOSDmgApp: description: Casts the previous resource to macOSDmgApp. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.macOSDmgApp in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsMacOSDmgApp 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.macOSDmgAppCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.macOSDmgApp/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsMacOSDmgApp-b712 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' /deviceAppManagement/mobileApps/graph.macOSLobApp: description: Casts the previous resource to macOSLobApp. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.macOSLobApp in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsMacOSLobApp 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.macOSLobAppCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.macOSLobApp/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsMacOSLobApp-6776 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' /deviceAppManagement/mobileApps/graph.macOSPkgApp: description: Casts the previous resource to macOSPkgApp. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.macOSPkgApp in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsMacOSPkgApp 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.macOSPkgAppCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.macOSPkgApp/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsMacOSPkgApp-912a 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' /deviceAppManagement/mobileApps/graph.managedAndroidLobApp: description: Casts the previous resource to managedAndroidLobApp. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.managedAndroidLobApp in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsManagedAndroidLobApp 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.managedAndroidLobAppCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.managedAndroidLobApp/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsManagedAndroidLobApp-8619 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' /deviceAppManagement/mobileApps/graph.managedIOSLobApp: description: Casts the previous resource to managedIOSLobApp. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.managedIOSLobApp in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsManagedIOSLobApp 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.managedIOSLobAppCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.managedIOSLobApp/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsManagedIOSLobApp-11b8 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' /deviceAppManagement/mobileApps/graph.managedMobileLobApp: description: Casts the previous resource to managedMobileLobApp. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.managedMobileLobApp in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsManagedMobileLobApp 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.managedMobileLobAppCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.managedMobileLobApp/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsManagedMobileLobApp-469d 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' /deviceAppManagement/mobileApps/graph.microsoftStoreForBusinessApp: description: Casts the previous resource to microsoftStoreForBusinessApp. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.microsoftStoreForBusinessApp in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsMicrosoftStoreForBusinessApp 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.microsoftStoreForBusinessAppCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.microsoftStoreForBusinessApp/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsMicrosoftStoreForBusinessApp-724e 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' /deviceAppManagement/mobileApps/validateXml: description: Provides operations to call the validateXml method. post: tags: - deviceAppManagement.mobileApp summary: Invoke action validateXml operationId: deviceAppManagement.mobileApps.validateXml requestBody: description: Action parameters content: application/json: schema: type: object properties: officeConfigurationXml: type: string format: base64url required: true responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /deviceAppManagement/mobileApps/graph.win32LobApp: description: Casts the previous resource to win32LobApp. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.win32LobApp in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsWin32LobApp 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.win32LobAppCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.win32LobApp/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsWin32LobApp-513f 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' /deviceAppManagement/mobileApps/graph.windowsAppX: description: Casts the previous resource to windowsAppX. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.windowsAppX in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsWindowsAppX 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.windowsAppXCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.windowsAppX/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsWindowsAppX-2550 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' /deviceAppManagement/mobileApps/graph.windowsMobileMSI: description: Casts the previous resource to windowsMobileMSI. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.windowsMobileMSI in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsWindowsMobileMSI 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.windowsMobileMSICollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.windowsMobileMSI/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsWindowsMobileMSI-5644 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' /deviceAppManagement/mobileApps/graph.windowsStoreApp: description: Casts the previous resource to windowsStoreApp. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.windowsStoreApp in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsWindowsStoreApp 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.windowsStoreAppCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.windowsStoreApp/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsWindowsStoreApp-da0f 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' /deviceAppManagement/mobileApps/graph.windowsUniversalAppX: description: Casts the previous resource to windowsUniversalAppX. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.windowsUniversalAppX in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsWindowsUniversalAppX 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.windowsUniversalAppXCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.windowsUniversalAppX/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsWindowsUniversalAppX-fe04 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' /deviceAppManagement/mobileApps/graph.windowsWebApp: description: Casts the previous resource to windowsWebApp. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.windowsWebApp in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsWindowsWebApp 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.windowsWebAppCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.windowsWebApp/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsWindowsWebApp-f73a 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' /deviceAppManagement/mobileApps/graph.winGetApp: description: Casts the previous resource to winGetApp. get: tags: - deviceAppManagement.mobileApp summary: Get the items of type microsoft.graph.winGetApp in the microsoft.graph.mobileApp collection operationId: deviceAppManagement.ListMobileApps.AsWinGetApp 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.winGetAppCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/mobileApps/graph.winGetApp/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.mobileApp summary: Get the number of the resource operationId: deviceAppManagement.MobileApps.GetCount.AsWinGetApp-5292 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' /deviceAppManagement/policySets: description: Provides operations to manage the policySets property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.policySet summary: Get policySets from deviceAppManagement description: The PolicySet of Policies and Applications operationId: deviceAppManagement.ListPolicySets 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.policySetCollectionResponse' 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: - deviceAppManagement.policySet summary: Create new navigation property to policySets for deviceAppManagement operationId: deviceAppManagement.CreatePolicySets requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.policySet' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.policySet' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/policySets/{policySet-id}': description: Provides operations to manage the policySets property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.policySet summary: Get policySets from deviceAppManagement description: The PolicySet of Policies and Applications operationId: deviceAppManagement.GetPolicySets parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.policySet' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.policySet summary: Update the navigation property policySets in deviceAppManagement operationId: deviceAppManagement.UpdatePolicySets requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.policySet' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.policySet' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.policySet summary: Delete navigation property policySets for deviceAppManagement operationId: deviceAppManagement.DeletePolicySets parameters: - 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: policySet-id in: path description: The unique identifier of policySet required: true schema: type: string x-ms-docs-key-type: policySet '/deviceAppManagement/policySets/{policySet-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.policySet entity. get: tags: - deviceAppManagement.policySet summary: Get assignments from deviceAppManagement description: Assignments of the PolicySet. operationId: deviceAppManagement.policySets.ListAssignments 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.policySetAssignmentCollectionResponse' 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: - deviceAppManagement.policySet summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.policySets.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.policySetAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.policySetAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: policySet-id in: path description: The unique identifier of policySet required: true schema: type: string x-ms-docs-key-type: policySet '/deviceAppManagement/policySets/{policySet-id}/assignments/{policySetAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.policySet entity. get: tags: - deviceAppManagement.policySet summary: Get assignments from deviceAppManagement description: Assignments of the PolicySet. operationId: deviceAppManagement.policySets.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.policySetAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.policySet summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.policySets.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.policySetAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.policySetAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.policySet summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.policySets.DeleteAssignments parameters: - 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: policySet-id in: path description: The unique identifier of policySet required: true schema: type: string x-ms-docs-key-type: policySet - name: policySetAssignment-id in: path description: The unique identifier of policySetAssignment required: true schema: type: string x-ms-docs-key-type: policySetAssignment '/deviceAppManagement/policySets/{policySet-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.policySet summary: Get the number of the resource operationId: deviceAppManagement.policySets.assignments.GetCount-ad67 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: policySet-id in: path description: The unique identifier of policySet required: true schema: type: string x-ms-docs-key-type: policySet '/deviceAppManagement/policySets/{policySet-id}/items': description: Provides operations to manage the items property of the microsoft.graph.policySet entity. get: tags: - deviceAppManagement.policySet summary: Get items from deviceAppManagement description: Items of the PolicySet with maximum count 100. operationId: deviceAppManagement.policySets.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.policySetItemCollectionResponse' 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: - deviceAppManagement.policySet summary: Create new navigation property to items for deviceAppManagement operationId: deviceAppManagement.policySets.CreateItems requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.policySetItem' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.policySetItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: policySet-id in: path description: The unique identifier of policySet required: true schema: type: string x-ms-docs-key-type: policySet '/deviceAppManagement/policySets/{policySet-id}/items/{policySetItem-id}': description: Provides operations to manage the items property of the microsoft.graph.policySet entity. get: tags: - deviceAppManagement.policySet summary: Get items from deviceAppManagement description: Items of the PolicySet with maximum count 100. operationId: deviceAppManagement.policySets.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.policySetItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.policySet summary: Update the navigation property items in deviceAppManagement operationId: deviceAppManagement.policySets.UpdateItems requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.policySetItem' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.policySetItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.policySet summary: Delete navigation property items for deviceAppManagement operationId: deviceAppManagement.policySets.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: policySet-id in: path description: The unique identifier of policySet required: true schema: type: string x-ms-docs-key-type: policySet - name: policySetItem-id in: path description: The unique identifier of policySetItem required: true schema: type: string x-ms-docs-key-type: policySetItem '/deviceAppManagement/policySets/{policySet-id}/items/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.policySet summary: Get the number of the resource operationId: deviceAppManagement.policySets.items.GetCount-ea85 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: policySet-id in: path description: The unique identifier of policySet required: true schema: type: string x-ms-docs-key-type: policySet '/deviceAppManagement/policySets/{policySet-id}/update': description: Provides operations to call the update method. post: tags: - deviceAppManagement.policySet summary: Invoke action update operationId: deviceAppManagement.policySets.policySet.update requestBody: description: Action parameters content: application/json: schema: type: object properties: addedPolicySetItems: type: array items: $ref: '#/components/schemas/microsoft.graph.policySetItem' updatedPolicySetItems: type: array items: $ref: '#/components/schemas/microsoft.graph.policySetItem' deletedPolicySetItems: type: array items: type: string nullable: true assignments: type: array items: $ref: '#/components/schemas/microsoft.graph.policySetAssignment' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: policySet-id in: path description: The unique identifier of policySet required: true schema: type: string x-ms-docs-key-type: policySet /deviceAppManagement/policySets/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.policySet summary: Get the number of the resource operationId: deviceAppManagement.policySets.GetCount-c61a 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' /deviceAppManagement/policySets/getPolicySets: description: Provides operations to call the getPolicySets method. post: tags: - deviceAppManagement.policySet summary: Invoke action getPolicySets operationId: deviceAppManagement.policySets.getPolicySets requestBody: description: Action parameters content: application/json: schema: type: object properties: policySetIds: type: array items: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: title: Collection of policySet type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.policySet' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceAppManagement/symantecCodeSigningCertificate: description: Provides operations to manage the symantecCodeSigningCertificate property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.symantecCodeSigningCertificate summary: Get symantecCodeSigningCertificate from deviceAppManagement description: The WinPhone Symantec Code Signing Certificate. operationId: deviceAppManagement.GetSymantecCodeSigningCertificate parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.symantecCodeSigningCertificate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.symantecCodeSigningCertificate summary: Update the navigation property symantecCodeSigningCertificate in deviceAppManagement operationId: deviceAppManagement.UpdateSymantecCodeSigningCertificate requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.symantecCodeSigningCertificate' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.symantecCodeSigningCertificate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.symantecCodeSigningCertificate summary: Delete navigation property symantecCodeSigningCertificate for deviceAppManagement operationId: deviceAppManagement.DeleteSymantecCodeSigningCertificate parameters: - 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 /deviceAppManagement/targetedManagedAppConfigurations: description: Provides operations to manage the targetedManagedAppConfigurations property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get targetedManagedAppConfigurations from deviceAppManagement description: Targeted managed app configurations. operationId: deviceAppManagement.ListTargetedManagedAppConfigurations 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.targetedManagedAppConfigurationCollectionResponse' 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: - deviceAppManagement.targetedManagedAppConfiguration summary: Create new navigation property to targetedManagedAppConfigurations for deviceAppManagement operationId: deviceAppManagement.CreateTargetedManagedAppConfigurations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppConfiguration' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}': description: Provides operations to manage the targetedManagedAppConfigurations property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get targetedManagedAppConfigurations from deviceAppManagement description: Targeted managed app configurations. operationId: deviceAppManagement.GetTargetedManagedAppConfigurations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Update the navigation property targetedManagedAppConfigurations in deviceAppManagement operationId: deviceAppManagement.UpdateTargetedManagedAppConfigurations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppConfiguration' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Delete navigation property targetedManagedAppConfigurations for deviceAppManagement operationId: deviceAppManagement.DeleteTargetedManagedAppConfigurations parameters: - 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: targetedManagedAppConfiguration-id in: path description: The unique identifier of targetedManagedAppConfiguration required: true schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps': description: Provides operations to manage the apps property of the microsoft.graph.targetedManagedAppConfiguration entity. get: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get apps from deviceAppManagement description: List of apps to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations.ListApps 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.managedMobileAppCollectionResponse' 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: - deviceAppManagement.targetedManagedAppConfiguration summary: Create new navigation property to apps for deviceAppManagement operationId: deviceAppManagement.targetedManagedAppConfigurations.CreateApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: targetedManagedAppConfiguration-id in: path description: The unique identifier of targetedManagedAppConfiguration required: true schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/{managedMobileApp-id}': description: Provides operations to manage the apps property of the microsoft.graph.targetedManagedAppConfiguration entity. get: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get apps from deviceAppManagement description: List of apps to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations.GetApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Update the navigation property apps in deviceAppManagement operationId: deviceAppManagement.targetedManagedAppConfigurations.UpdateApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Delete navigation property apps for deviceAppManagement operationId: deviceAppManagement.targetedManagedAppConfigurations.DeleteApps parameters: - 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: targetedManagedAppConfiguration-id in: path description: The unique identifier of targetedManagedAppConfiguration required: true schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration - name: managedMobileApp-id in: path description: The unique identifier of managedMobileApp required: true schema: type: string x-ms-docs-key-type: managedMobileApp '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get the number of the resource operationId: deviceAppManagement.targetedManagedAppConfigurations.apps.GetCount-0ba7 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: targetedManagedAppConfiguration-id in: path description: The unique identifier of targetedManagedAppConfiguration required: true schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.targetedManagedAppConfiguration entity. get: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get assignments from deviceAppManagement description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations.ListAssignments 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.targetedManagedAppPolicyAssignmentCollectionResponse' 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: - deviceAppManagement.targetedManagedAppConfiguration summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.targetedManagedAppConfigurations.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: targetedManagedAppConfiguration-id in: path description: The unique identifier of targetedManagedAppConfiguration required: true schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.targetedManagedAppConfiguration entity. get: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get assignments from deviceAppManagement description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.targetedManagedAppConfigurations.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.targetedManagedAppConfigurations.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.targetedManagedAppConfigurations.DeleteAssignments parameters: - 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: targetedManagedAppConfiguration-id in: path description: The unique identifier of targetedManagedAppConfiguration required: true schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration - name: targetedManagedAppPolicyAssignment-id in: path description: The unique identifier of targetedManagedAppPolicyAssignment required: true schema: type: string x-ms-docs-key-type: targetedManagedAppPolicyAssignment '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get the number of the resource operationId: deviceAppManagement.targetedManagedAppConfigurations.assignments.GetCount-5948 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: targetedManagedAppConfiguration-id in: path description: The unique identifier of targetedManagedAppConfiguration required: true schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary': description: Provides operations to manage the deploymentSummary property of the microsoft.graph.targetedManagedAppConfiguration entity. get: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get deploymentSummary from deviceAppManagement description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.targetedManagedAppConfigurations.GetDeploymentSummary parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Update the navigation property deploymentSummary in deviceAppManagement operationId: deviceAppManagement.targetedManagedAppConfigurations.UpdateDeploymentSummary requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Delete navigation property deploymentSummary for deviceAppManagement operationId: deviceAppManagement.targetedManagedAppConfigurations.DeleteDeploymentSummary parameters: - 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: targetedManagedAppConfiguration-id in: path description: The unique identifier of targetedManagedAppConfiguration required: true schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign': description: Provides operations to call the assign method. post: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Invoke action assign operationId: deviceAppManagement.targetedManagedAppConfigurations.targetedManagedAppConfiguration.assign requestBody: description: Action parameters content: application/json: schema: type: object properties: assignments: type: array items: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: targetedManagedAppConfiguration-id in: path description: The unique identifier of targetedManagedAppConfiguration required: true schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration x-ms-docs-grouped-path: - '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assign' - '/deviceAppManagement/managedEBooks/{managedEBook-id}/assign' - '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assign' - '/deviceAppManagement/mobileApps/{mobileApp-id}/assign' - '/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assign' - '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assign' '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/changeSettings': description: Provides operations to call the changeSettings method. post: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Invoke action changeSettings operationId: deviceAppManagement.targetedManagedAppConfigurations.targetedManagedAppConfiguration.changeSettings requestBody: description: Action parameters content: application/json: schema: type: object properties: settings: type: array items: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSetting' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: targetedManagedAppConfiguration-id in: path description: The unique identifier of targetedManagedAppConfiguration required: true schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/targetApps': description: Provides operations to call the targetApps method. post: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Invoke action targetApps operationId: deviceAppManagement.targetedManagedAppConfigurations.targetedManagedAppConfiguration.targetApps requestBody: description: Action parameters content: application/json: schema: type: object properties: apps: type: array items: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' appGroupType: anyOf: - $ref: '#/components/schemas/microsoft.graph.targetedManagedAppGroupType' - 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: targetedManagedAppConfiguration-id in: path description: The unique identifier of targetedManagedAppConfiguration required: true schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration x-ms-docs-grouped-path: - '/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps' - '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/targetApps' - '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/targetApps' - '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/targetApps' '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings': description: Provides operations to manage the settings property of the microsoft.graph.managedAppConfiguration entity. get: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get settings from deviceAppManagement description: List of settings contained in this App Configuration policy operationId: deviceAppManagement.targetedManagedAppConfigurations.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.deviceManagementConfigurationSettingCollectionResponse' 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: - deviceAppManagement.targetedManagedAppConfiguration summary: Create new navigation property to settings for deviceAppManagement operationId: deviceAppManagement.targetedManagedAppConfigurations.CreateSettings requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSetting' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: targetedManagedAppConfiguration-id in: path description: The unique identifier of targetedManagedAppConfiguration required: true schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}': description: Provides operations to manage the settings property of the microsoft.graph.managedAppConfiguration entity. get: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get settings from deviceAppManagement description: List of settings contained in this App Configuration policy operationId: deviceAppManagement.targetedManagedAppConfigurations.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.deviceManagementConfigurationSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Update the navigation property settings in deviceAppManagement operationId: deviceAppManagement.targetedManagedAppConfigurations.UpdateSettings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSetting' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Delete navigation property settings for deviceAppManagement operationId: deviceAppManagement.targetedManagedAppConfigurations.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: targetedManagedAppConfiguration-id in: path description: The unique identifier of targetedManagedAppConfiguration required: true schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration - name: deviceManagementConfigurationSetting-id in: path description: The unique identifier of deviceManagementConfigurationSetting required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions': description: Provides operations to manage the settingDefinitions property of the microsoft.graph.deviceManagementConfigurationSetting entity. get: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get settingDefinitions from deviceAppManagement description: List of related Setting Definitions. This property is read-only. operationId: deviceAppManagement.targetedManagedAppConfigurations.settings.ListSettingDefinitions 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.deviceManagementConfigurationSettingDefinitionCollectionResponse' 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: targetedManagedAppConfiguration-id in: path description: The unique identifier of targetedManagedAppConfiguration required: true schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration - name: deviceManagementConfigurationSetting-id in: path description: The unique identifier of deviceManagementConfigurationSetting required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}': description: Provides operations to manage the settingDefinitions property of the microsoft.graph.deviceManagementConfigurationSetting entity. get: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get settingDefinitions from deviceAppManagement description: List of related Setting Definitions. This property is read-only. operationId: deviceAppManagement.targetedManagedAppConfigurations.settings.GetSettingDefinitions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: targetedManagedAppConfiguration-id in: path description: The unique identifier of targetedManagedAppConfiguration required: true schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration - name: deviceManagementConfigurationSetting-id in: path description: The unique identifier of deviceManagementConfigurationSetting required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting - name: deviceManagementConfigurationSettingDefinition-id in: path description: The unique identifier of deviceManagementConfigurationSettingDefinition required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get the number of the resource operationId: deviceAppManagement.targetedManagedAppConfigurations.settings.settingDefinitions.GetCount-5fbd 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: targetedManagedAppConfiguration-id in: path description: The unique identifier of targetedManagedAppConfiguration required: true schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration - name: deviceManagementConfigurationSetting-id in: path description: The unique identifier of deviceManagementConfigurationSetting required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get the number of the resource operationId: deviceAppManagement.targetedManagedAppConfigurations.settings.GetCount-3de1 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: targetedManagedAppConfiguration-id in: path description: The unique identifier of targetedManagedAppConfiguration required: true schema: type: string x-ms-docs-key-type: targetedManagedAppConfiguration /deviceAppManagement/targetedManagedAppConfigurations/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Get the number of the resource operationId: deviceAppManagement.targetedManagedAppConfigurations.GetCount-8d50 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' /deviceAppManagement/targetedManagedAppConfigurations/hasPayloadLinks: description: Provides operations to call the hasPayloadLinks method. post: tags: - deviceAppManagement.targetedManagedAppConfiguration summary: Invoke action hasPayloadLinks operationId: deviceAppManagement.targetedManagedAppConfigurations.hasPayloadLinks requestBody: description: Action parameters content: application/json: schema: type: object properties: payloadIds: type: array items: type: string 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.hasPayloadLinkResultItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-grouped-path: - /deviceAppManagement/androidManagedAppProtections/hasPayloadLinks - /deviceAppManagement/iosLobAppProvisioningConfigurations/hasPayloadLinks - /deviceAppManagement/iosManagedAppProtections/hasPayloadLinks - /deviceAppManagement/mdmWindowsInformationProtectionPolicies/hasPayloadLinks - /deviceAppManagement/mobileApps/hasPayloadLinks /deviceAppManagement/vppTokens: description: Provides operations to manage the vppTokens property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.vppToken summary: Get vppTokens from deviceAppManagement description: List of Vpp tokens for this organization. operationId: deviceAppManagement.ListVppTokens 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.vppTokenCollectionResponse' 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: - deviceAppManagement.vppToken summary: Create new navigation property to vppTokens for deviceAppManagement operationId: deviceAppManagement.CreateVppTokens requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.vppToken' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.vppToken' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/vppTokens/{vppToken-id}': description: Provides operations to manage the vppTokens property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.vppToken summary: Get vppTokens from deviceAppManagement description: List of Vpp tokens for this organization. operationId: deviceAppManagement.GetVppTokens parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.vppToken' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.vppToken summary: Update the navigation property vppTokens in deviceAppManagement operationId: deviceAppManagement.UpdateVppTokens requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.vppToken' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.vppToken' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.vppToken summary: Delete navigation property vppTokens for deviceAppManagement operationId: deviceAppManagement.DeleteVppTokens parameters: - 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: vppToken-id in: path description: The unique identifier of vppToken required: true schema: type: string x-ms-docs-key-type: vppToken '/deviceAppManagement/vppTokens/{vppToken-id}/revokeLicenses': description: Provides operations to call the revokeLicenses method. post: tags: - deviceAppManagement.vppToken summary: Invoke action revokeLicenses description: Revoke licenses associated with a specific appleVolumePurchaseProgramToken operationId: deviceAppManagement.vppTokens.vppToken.revokeLicenses requestBody: description: Action parameters content: application/json: schema: type: object properties: notifyManagedDevices: type: boolean default: false revokeUntrackedLicenses: 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: vppToken-id in: path description: The unique identifier of vppToken required: true schema: type: string x-ms-docs-key-type: vppToken '/deviceAppManagement/vppTokens/{vppToken-id}/syncLicenses': description: Provides operations to call the syncLicenses method. post: tags: - deviceAppManagement.vppToken summary: Invoke action syncLicenses description: Syncs licenses associated with a specific appleVolumePurchaseProgramToken operationId: deviceAppManagement.vppTokens.vppToken.syncLicenses responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.vppToken' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: vppToken-id in: path description: The unique identifier of vppToken required: true schema: type: string x-ms-docs-key-type: vppToken /deviceAppManagement/vppTokens/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.vppToken summary: Get the number of the resource operationId: deviceAppManagement.vppTokens.GetCount-d643 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' '/deviceAppManagement/vppTokens/getLicensesForApp(bundleId=''{bundleId}'')': description: Provides operations to call the getLicensesForApp method. get: tags: - deviceAppManagement.vppToken summary: Invoke function getLicensesForApp operationId: deviceAppManagement.vppTokens.getLicensesForApp 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.vppTokenLicenseSummary' 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: bundleId in: path description: 'Usage: bundleId=''{bundleId}''' required: true schema: type: string nullable: true /deviceAppManagement/vppTokens/syncLicenseCounts: description: Provides operations to call the syncLicenseCounts method. post: tags: - deviceAppManagement.vppToken summary: Invoke action syncLicenseCounts operationId: deviceAppManagement.vppTokens.syncLicenseCounts responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /deviceAppManagement/wdacSupplementalPolicies: description: Provides operations to manage the wdacSupplementalPolicies property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get wdacSupplementalPolicies from deviceAppManagement description: The collection of Windows Defender Application Control Supplemental Policies. operationId: deviceAppManagement.ListWdacSupplementalPolicies 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.windowsDefenderApplicationControlSupplementalPolicyCollectionResponse' 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: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Create new navigation property to wdacSupplementalPolicies for deviceAppManagement operationId: deviceAppManagement.CreateWdacSupplementalPolicies requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicy' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}': description: Provides operations to manage the wdacSupplementalPolicies property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get wdacSupplementalPolicies from deviceAppManagement description: The collection of Windows Defender Application Control Supplemental Policies. operationId: deviceAppManagement.GetWdacSupplementalPolicies parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Update the navigation property wdacSupplementalPolicies in deviceAppManagement operationId: deviceAppManagement.UpdateWdacSupplementalPolicies requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicy' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Delete navigation property wdacSupplementalPolicies for deviceAppManagement operationId: deviceAppManagement.DeleteWdacSupplementalPolicies parameters: - 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: windowsDefenderApplicationControlSupplementalPolicy-id in: path description: The unique identifier of windowsDefenderApplicationControlSupplementalPolicy required: true schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy '/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.windowsDefenderApplicationControlSupplementalPolicy entity. get: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get assignments from deviceAppManagement description: The associated group assignments for the Windows Defender Application Control Supplemental Policy. operationId: deviceAppManagement.wdacSupplementalPolicies.ListAssignments 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.windowsDefenderApplicationControlSupplementalPolicyAssignmentCollectionResponse' 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: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.wdacSupplementalPolicies.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicyAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id in: path description: The unique identifier of windowsDefenderApplicationControlSupplementalPolicy required: true schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy '/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments/{windowsDefenderApplicationControlSupplementalPolicyAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.windowsDefenderApplicationControlSupplementalPolicy entity. get: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get assignments from deviceAppManagement description: The associated group assignments for the Windows Defender Application Control Supplemental Policy. operationId: deviceAppManagement.wdacSupplementalPolicies.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.wdacSupplementalPolicies.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicyAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.wdacSupplementalPolicies.DeleteAssignments parameters: - 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: windowsDefenderApplicationControlSupplementalPolicy-id in: path description: The unique identifier of windowsDefenderApplicationControlSupplementalPolicy required: true schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy - name: windowsDefenderApplicationControlSupplementalPolicyAssignment-id in: path description: The unique identifier of windowsDefenderApplicationControlSupplementalPolicyAssignment required: true schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicyAssignment '/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get the number of the resource operationId: deviceAppManagement.wdacSupplementalPolicies.assignments.GetCount-febb 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: windowsDefenderApplicationControlSupplementalPolicy-id in: path description: The unique identifier of windowsDefenderApplicationControlSupplementalPolicy required: true schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy '/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deploySummary': description: Provides operations to manage the deploySummary property of the microsoft.graph.windowsDefenderApplicationControlSupplementalPolicy entity. get: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get deploySummary from deviceAppManagement description: WindowsDefenderApplicationControl supplemental policy deployment summary. operationId: deviceAppManagement.wdacSupplementalPolicies.GetDeploySummary parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicyDeploymentSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Update the navigation property deploySummary in deviceAppManagement operationId: deviceAppManagement.wdacSupplementalPolicies.UpdateDeploySummary requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicyDeploymentSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicyDeploymentSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Delete navigation property deploySummary for deviceAppManagement operationId: deviceAppManagement.wdacSupplementalPolicies.DeleteDeploySummary parameters: - 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: windowsDefenderApplicationControlSupplementalPolicy-id in: path description: The unique identifier of windowsDefenderApplicationControlSupplementalPolicy required: true schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy '/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses': description: Provides operations to manage the deviceStatuses property of the microsoft.graph.windowsDefenderApplicationControlSupplementalPolicy entity. get: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get deviceStatuses from deviceAppManagement description: The list of device deployment states for this WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies.ListDeviceStatuses 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.windowsDefenderApplicationControlSupplementalPolicyDeploymentStatusCollectionResponse' 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: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Create new navigation property to deviceStatuses for deviceAppManagement operationId: deviceAppManagement.wdacSupplementalPolicies.CreateDeviceStatuses requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id in: path description: The unique identifier of windowsDefenderApplicationControlSupplementalPolicy required: true schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy '/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses/{windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id}': description: Provides operations to manage the deviceStatuses property of the microsoft.graph.windowsDefenderApplicationControlSupplementalPolicy entity. get: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get deviceStatuses from deviceAppManagement description: The list of device deployment states for this WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies.GetDeviceStatuses parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Update the navigation property deviceStatuses in deviceAppManagement operationId: deviceAppManagement.wdacSupplementalPolicies.UpdateDeviceStatuses requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Delete navigation property deviceStatuses for deviceAppManagement operationId: deviceAppManagement.wdacSupplementalPolicies.DeleteDeviceStatuses parameters: - 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: windowsDefenderApplicationControlSupplementalPolicy-id in: path description: The unique identifier of windowsDefenderApplicationControlSupplementalPolicy required: true schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy - name: windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id in: path description: The unique identifier of windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus required: true schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus '/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses/{windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id}/policy': description: Provides operations to manage the policy property of the microsoft.graph.windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus entity. get: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get policy from deviceAppManagement description: The navigation link to the WindowsDefenderApplicationControl supplemental policy. operationId: deviceAppManagement.wdacSupplementalPolicies.deviceStatuses.GetPolicy parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id in: path description: The unique identifier of windowsDefenderApplicationControlSupplementalPolicy required: true schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy - name: windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id in: path description: The unique identifier of windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus required: true schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus '/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get the number of the resource operationId: deviceAppManagement.wdacSupplementalPolicies.deviceStatuses.GetCount-c722 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: windowsDefenderApplicationControlSupplementalPolicy-id in: path description: The unique identifier of windowsDefenderApplicationControlSupplementalPolicy required: true schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy '/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assign': description: Provides operations to call the assign method. post: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Invoke action assign operationId: deviceAppManagement.wdacSupplementalPolicies.windowsDefenderApplicationControlSupplementalPolicy.assign requestBody: description: Action parameters content: application/json: schema: type: object properties: wdacPolicyAssignments: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsDefenderApplicationControlSupplementalPolicyAssignment' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: windowsDefenderApplicationControlSupplementalPolicy-id in: path description: The unique identifier of windowsDefenderApplicationControlSupplementalPolicy required: true schema: type: string x-ms-docs-key-type: windowsDefenderApplicationControlSupplementalPolicy x-ms-docs-grouped-path: - '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assign' - '/deviceAppManagement/managedEBooks/{managedEBook-id}/assign' - '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assign' - '/deviceAppManagement/mobileApps/{mobileApp-id}/assign' - '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign' - '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assign' /deviceAppManagement/wdacSupplementalPolicies/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.windowsDefenderApplicationControlSupplementalPolicy summary: Get the number of the resource operationId: deviceAppManagement.wdacSupplementalPolicies.GetCount-a20e 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' /deviceAppManagement/windowsInformationProtectionDeviceRegistrations: description: Provides operations to manage the windowsInformationProtectionDeviceRegistrations property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.windowsInformationProtectionDeviceRegistration summary: Get windowsInformationProtectionDeviceRegistrations from deviceAppManagement description: Windows information protection device registrations that are not MDM enrolled. operationId: deviceAppManagement.ListWindowsInformationProtectionDeviceRegistrations 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.windowsInformationProtectionDeviceRegistrationCollectionResponse' 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: - deviceAppManagement.windowsInformationProtectionDeviceRegistration summary: Create new navigation property to windowsInformationProtectionDeviceRegistrations for deviceAppManagement operationId: deviceAppManagement.CreateWindowsInformationProtectionDeviceRegistrations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionDeviceRegistration' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionDeviceRegistration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/{windowsInformationProtectionDeviceRegistration-id}': description: Provides operations to manage the windowsInformationProtectionDeviceRegistrations property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.windowsInformationProtectionDeviceRegistration summary: Get windowsInformationProtectionDeviceRegistrations from deviceAppManagement description: Windows information protection device registrations that are not MDM enrolled. operationId: deviceAppManagement.GetWindowsInformationProtectionDeviceRegistrations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionDeviceRegistration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.windowsInformationProtectionDeviceRegistration summary: Update the navigation property windowsInformationProtectionDeviceRegistrations in deviceAppManagement operationId: deviceAppManagement.UpdateWindowsInformationProtectionDeviceRegistrations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionDeviceRegistration' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionDeviceRegistration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.windowsInformationProtectionDeviceRegistration summary: Delete navigation property windowsInformationProtectionDeviceRegistrations for deviceAppManagement operationId: deviceAppManagement.DeleteWindowsInformationProtectionDeviceRegistrations parameters: - 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: windowsInformationProtectionDeviceRegistration-id in: path description: The unique identifier of windowsInformationProtectionDeviceRegistration required: true schema: type: string x-ms-docs-key-type: windowsInformationProtectionDeviceRegistration '/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/{windowsInformationProtectionDeviceRegistration-id}/wipe': description: Provides operations to call the wipe method. post: tags: - deviceAppManagement.windowsInformationProtectionDeviceRegistration summary: Invoke action wipe operationId: deviceAppManagement.windowsInformationProtectionDeviceRegistrations.windowsInformationProtectionDeviceRegistration.wipe responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: windowsInformationProtectionDeviceRegistration-id in: path description: The unique identifier of windowsInformationProtectionDeviceRegistration required: true schema: type: string x-ms-docs-key-type: windowsInformationProtectionDeviceRegistration /deviceAppManagement/windowsInformationProtectionDeviceRegistrations/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.windowsInformationProtectionDeviceRegistration summary: Get the number of the resource operationId: deviceAppManagement.windowsInformationProtectionDeviceRegistrations.GetCount-5302 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' /deviceAppManagement/windowsInformationProtectionPolicies: description: Provides operations to manage the windowsInformationProtectionPolicies property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Get windowsInformationProtectionPolicies from deviceAppManagement description: Windows information protection for apps running on devices which are not MDM enrolled. operationId: deviceAppManagement.ListWindowsInformationProtectionPolicies 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.windowsInformationProtectionPolicyCollectionResponse' 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: - deviceAppManagement.windowsInformationProtectionPolicy summary: Create new navigation property to windowsInformationProtectionPolicies for deviceAppManagement operationId: deviceAppManagement.CreateWindowsInformationProtectionPolicies requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionPolicy' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}': description: Provides operations to manage the windowsInformationProtectionPolicies property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Get windowsInformationProtectionPolicies from deviceAppManagement description: Windows information protection for apps running on devices which are not MDM enrolled. operationId: deviceAppManagement.GetWindowsInformationProtectionPolicies parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Update the navigation property windowsInformationProtectionPolicies in deviceAppManagement operationId: deviceAppManagement.UpdateWindowsInformationProtectionPolicies requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionPolicy' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Delete navigation property windowsInformationProtectionPolicies for deviceAppManagement operationId: deviceAppManagement.DeleteWindowsInformationProtectionPolicies parameters: - 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: windowsInformationProtectionPolicy-id in: path description: The unique identifier of windowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: windowsInformationProtectionPolicy '/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.windowsInformationProtection entity. get: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Get assignments from deviceAppManagement description: Navigation property to list of security groups targeted for policy. operationId: deviceAppManagement.windowsInformationProtectionPolicies.ListAssignments 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.targetedManagedAppPolicyAssignmentCollectionResponse' 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: - deviceAppManagement.windowsInformationProtectionPolicy summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.windowsInformationProtectionPolicies.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: windowsInformationProtectionPolicy-id in: path description: The unique identifier of windowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: windowsInformationProtectionPolicy x-ms-docs-grouped-path: - '/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments' '/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.windowsInformationProtection entity. get: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Get assignments from deviceAppManagement description: Navigation property to list of security groups targeted for policy. operationId: deviceAppManagement.windowsInformationProtectionPolicies.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.windowsInformationProtectionPolicies.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.windowsInformationProtectionPolicies.DeleteAssignments parameters: - 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: windowsInformationProtectionPolicy-id in: path description: The unique identifier of windowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: windowsInformationProtectionPolicy - name: targetedManagedAppPolicyAssignment-id in: path description: The unique identifier of targetedManagedAppPolicyAssignment required: true schema: type: string x-ms-docs-key-type: targetedManagedAppPolicyAssignment x-ms-docs-grouped-path: - '/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}' '/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Get the number of the resource operationId: deviceAppManagement.windowsInformationProtectionPolicies.assignments.GetCount-9869 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: windowsInformationProtectionPolicy-id in: path description: The unique identifier of windowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: windowsInformationProtectionPolicy '/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles': description: Provides operations to manage the exemptAppLockerFiles property of the microsoft.graph.windowsInformationProtection entity. get: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Get exemptAppLockerFiles from deviceAppManagement description: Another way to input exempt apps through xml files operationId: deviceAppManagement.windowsInformationProtectionPolicies.ListExemptAppLockerFiles 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.windowsInformationProtectionAppLockerFileCollectionResponse' 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: - deviceAppManagement.windowsInformationProtectionPolicy summary: Create new navigation property to exemptAppLockerFiles for deviceAppManagement operationId: deviceAppManagement.windowsInformationProtectionPolicies.CreateExemptAppLockerFiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: windowsInformationProtectionPolicy-id in: path description: The unique identifier of windowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: windowsInformationProtectionPolicy x-ms-docs-grouped-path: - '/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles' '/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}': description: Provides operations to manage the exemptAppLockerFiles property of the microsoft.graph.windowsInformationProtection entity. get: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Get exemptAppLockerFiles from deviceAppManagement description: Another way to input exempt apps through xml files operationId: deviceAppManagement.windowsInformationProtectionPolicies.GetExemptAppLockerFiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Update the navigation property exemptAppLockerFiles in deviceAppManagement operationId: deviceAppManagement.windowsInformationProtectionPolicies.UpdateExemptAppLockerFiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Delete navigation property exemptAppLockerFiles for deviceAppManagement operationId: deviceAppManagement.windowsInformationProtectionPolicies.DeleteExemptAppLockerFiles parameters: - 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: windowsInformationProtectionPolicy-id in: path description: The unique identifier of windowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: windowsInformationProtectionPolicy - name: windowsInformationProtectionAppLockerFile-id in: path description: The unique identifier of windowsInformationProtectionAppLockerFile required: true schema: type: string x-ms-docs-key-type: windowsInformationProtectionAppLockerFile x-ms-docs-grouped-path: - '/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}' '/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Get the number of the resource operationId: deviceAppManagement.windowsInformationProtectionPolicies.exemptAppLockerFiles.GetCount-65c6 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: windowsInformationProtectionPolicy-id in: path description: The unique identifier of windowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: windowsInformationProtectionPolicy '/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles': description: Provides operations to manage the protectedAppLockerFiles property of the microsoft.graph.windowsInformationProtection entity. get: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Get protectedAppLockerFiles from deviceAppManagement description: Another way to input protected apps through xml files operationId: deviceAppManagement.windowsInformationProtectionPolicies.ListProtectedAppLockerFiles 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.windowsInformationProtectionAppLockerFileCollectionResponse' 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: - deviceAppManagement.windowsInformationProtectionPolicy summary: Create new navigation property to protectedAppLockerFiles for deviceAppManagement operationId: deviceAppManagement.windowsInformationProtectionPolicies.CreateProtectedAppLockerFiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: windowsInformationProtectionPolicy-id in: path description: The unique identifier of windowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: windowsInformationProtectionPolicy x-ms-docs-grouped-path: - '/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles' '/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}': description: Provides operations to manage the protectedAppLockerFiles property of the microsoft.graph.windowsInformationProtection entity. get: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Get protectedAppLockerFiles from deviceAppManagement description: Another way to input protected apps through xml files operationId: deviceAppManagement.windowsInformationProtectionPolicies.GetProtectedAppLockerFiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Update the navigation property protectedAppLockerFiles in deviceAppManagement operationId: deviceAppManagement.windowsInformationProtectionPolicies.UpdateProtectedAppLockerFiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionAppLockerFile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Delete navigation property protectedAppLockerFiles for deviceAppManagement operationId: deviceAppManagement.windowsInformationProtectionPolicies.DeleteProtectedAppLockerFiles parameters: - 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: windowsInformationProtectionPolicy-id in: path description: The unique identifier of windowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: windowsInformationProtectionPolicy - name: windowsInformationProtectionAppLockerFile-id in: path description: The unique identifier of windowsInformationProtectionAppLockerFile required: true schema: type: string x-ms-docs-key-type: windowsInformationProtectionAppLockerFile x-ms-docs-grouped-path: - '/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}' '/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Get the number of the resource operationId: deviceAppManagement.windowsInformationProtectionPolicies.protectedAppLockerFiles.GetCount-fa50 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: windowsInformationProtectionPolicy-id in: path description: The unique identifier of windowsInformationProtectionPolicy required: true schema: type: string x-ms-docs-key-type: windowsInformationProtectionPolicy /deviceAppManagement/windowsInformationProtectionPolicies/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.windowsInformationProtectionPolicy summary: Get the number of the resource operationId: deviceAppManagement.windowsInformationProtectionPolicies.GetCount-b909 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' /deviceAppManagement/windowsInformationProtectionWipeActions: description: Provides operations to manage the windowsInformationProtectionWipeActions property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.windowsInformationProtectionWipeAction summary: Get windowsInformationProtectionWipeActions from deviceAppManagement description: Windows information protection wipe actions. operationId: deviceAppManagement.ListWindowsInformationProtectionWipeActions 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.windowsInformationProtectionWipeActionCollectionResponse' 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: - deviceAppManagement.windowsInformationProtectionWipeAction summary: Create new navigation property to windowsInformationProtectionWipeActions for deviceAppManagement operationId: deviceAppManagement.CreateWindowsInformationProtectionWipeActions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionWipeAction' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionWipeAction' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/windowsInformationProtectionWipeActions/{windowsInformationProtectionWipeAction-id}': description: Provides operations to manage the windowsInformationProtectionWipeActions property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.windowsInformationProtectionWipeAction summary: Get windowsInformationProtectionWipeActions from deviceAppManagement description: Windows information protection wipe actions. operationId: deviceAppManagement.GetWindowsInformationProtectionWipeActions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionWipeAction' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.windowsInformationProtectionWipeAction summary: Update the navigation property windowsInformationProtectionWipeActions in deviceAppManagement operationId: deviceAppManagement.UpdateWindowsInformationProtectionWipeActions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionWipeAction' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsInformationProtectionWipeAction' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.windowsInformationProtectionWipeAction summary: Delete navigation property windowsInformationProtectionWipeActions for deviceAppManagement operationId: deviceAppManagement.DeleteWindowsInformationProtectionWipeActions parameters: - 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: windowsInformationProtectionWipeAction-id in: path description: The unique identifier of windowsInformationProtectionWipeAction required: true schema: type: string x-ms-docs-key-type: windowsInformationProtectionWipeAction /deviceAppManagement/windowsInformationProtectionWipeActions/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.windowsInformationProtectionWipeAction summary: Get the number of the resource operationId: deviceAppManagement.windowsInformationProtectionWipeActions.GetCount-525e 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' /deviceAppManagement/windowsManagedAppProtections: description: Provides operations to manage the windowsManagedAppProtections property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.windowsManagedAppProtection summary: Get windowsManagedAppProtections from deviceAppManagement description: Windows managed app policies. operationId: deviceAppManagement.ListWindowsManagedAppProtections 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.windowsManagedAppProtectionCollectionResponse' 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: - deviceAppManagement.windowsManagedAppProtection summary: Create new navigation property to windowsManagedAppProtections for deviceAppManagement operationId: deviceAppManagement.CreateWindowsManagedAppProtections requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsManagedAppProtection' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsManagedAppProtection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}': description: Provides operations to manage the windowsManagedAppProtections property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.windowsManagedAppProtection summary: Get windowsManagedAppProtections from deviceAppManagement description: Windows managed app policies. operationId: deviceAppManagement.GetWindowsManagedAppProtections parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsManagedAppProtection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.windowsManagedAppProtection summary: Update the navigation property windowsManagedAppProtections in deviceAppManagement operationId: deviceAppManagement.UpdateWindowsManagedAppProtections requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsManagedAppProtection' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsManagedAppProtection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.windowsManagedAppProtection summary: Delete navigation property windowsManagedAppProtections for deviceAppManagement operationId: deviceAppManagement.DeleteWindowsManagedAppProtections parameters: - 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: windowsManagedAppProtection-id in: path description: The unique identifier of windowsManagedAppProtection required: true schema: type: string x-ms-docs-key-type: windowsManagedAppProtection '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps': description: Provides operations to manage the apps property of the microsoft.graph.windowsManagedAppProtection entity. get: tags: - deviceAppManagement.windowsManagedAppProtection summary: Get apps from deviceAppManagement description: List of apps to which the policy is deployed. operationId: deviceAppManagement.windowsManagedAppProtections.ListApps 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.managedMobileAppCollectionResponse' 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: - deviceAppManagement.windowsManagedAppProtection summary: Create new navigation property to apps for deviceAppManagement operationId: deviceAppManagement.windowsManagedAppProtections.CreateApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: windowsManagedAppProtection-id in: path description: The unique identifier of windowsManagedAppProtection required: true schema: type: string x-ms-docs-key-type: windowsManagedAppProtection '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps/{managedMobileApp-id}': description: Provides operations to manage the apps property of the microsoft.graph.windowsManagedAppProtection entity. get: tags: - deviceAppManagement.windowsManagedAppProtection summary: Get apps from deviceAppManagement description: List of apps to which the policy is deployed. operationId: deviceAppManagement.windowsManagedAppProtections.GetApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.windowsManagedAppProtection summary: Update the navigation property apps in deviceAppManagement operationId: deviceAppManagement.windowsManagedAppProtections.UpdateApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.windowsManagedAppProtection summary: Delete navigation property apps for deviceAppManagement operationId: deviceAppManagement.windowsManagedAppProtections.DeleteApps parameters: - 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: windowsManagedAppProtection-id in: path description: The unique identifier of windowsManagedAppProtection required: true schema: type: string x-ms-docs-key-type: windowsManagedAppProtection - name: managedMobileApp-id in: path description: The unique identifier of managedMobileApp required: true schema: type: string x-ms-docs-key-type: managedMobileApp '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.windowsManagedAppProtection summary: Get the number of the resource operationId: deviceAppManagement.windowsManagedAppProtections.apps.GetCount-db1a 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: windowsManagedAppProtection-id in: path description: The unique identifier of windowsManagedAppProtection required: true schema: type: string x-ms-docs-key-type: windowsManagedAppProtection '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.windowsManagedAppProtection entity. get: tags: - deviceAppManagement.windowsManagedAppProtection summary: Get assignments from deviceAppManagement description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.windowsManagedAppProtections.ListAssignments 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.targetedManagedAppPolicyAssignmentCollectionResponse' 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: - deviceAppManagement.windowsManagedAppProtection summary: Create new navigation property to assignments for deviceAppManagement operationId: deviceAppManagement.windowsManagedAppProtections.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: windowsManagedAppProtection-id in: path description: The unique identifier of windowsManagedAppProtection required: true schema: type: string x-ms-docs-key-type: windowsManagedAppProtection '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.windowsManagedAppProtection entity. get: tags: - deviceAppManagement.windowsManagedAppProtection summary: Get assignments from deviceAppManagement description: Navigation property to list of inclusion and exclusion groups to which the policy is deployed. operationId: deviceAppManagement.windowsManagedAppProtections.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.windowsManagedAppProtection summary: Update the navigation property assignments in deviceAppManagement operationId: deviceAppManagement.windowsManagedAppProtections.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.windowsManagedAppProtection summary: Delete navigation property assignments for deviceAppManagement operationId: deviceAppManagement.windowsManagedAppProtections.DeleteAssignments parameters: - 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: windowsManagedAppProtection-id in: path description: The unique identifier of windowsManagedAppProtection required: true schema: type: string x-ms-docs-key-type: windowsManagedAppProtection - name: targetedManagedAppPolicyAssignment-id in: path description: The unique identifier of targetedManagedAppPolicyAssignment required: true schema: type: string x-ms-docs-key-type: targetedManagedAppPolicyAssignment '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.windowsManagedAppProtection summary: Get the number of the resource operationId: deviceAppManagement.windowsManagedAppProtections.assignments.GetCount-799a 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: windowsManagedAppProtection-id in: path description: The unique identifier of windowsManagedAppProtection required: true schema: type: string x-ms-docs-key-type: windowsManagedAppProtection '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/deploymentSummary': description: Provides operations to manage the deploymentSummary property of the microsoft.graph.windowsManagedAppProtection entity. get: tags: - deviceAppManagement.windowsManagedAppProtection summary: Get deploymentSummary from deviceAppManagement description: Navigation property to deployment summary of the configuration. operationId: deviceAppManagement.windowsManagedAppProtections.GetDeploymentSummary parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceAppManagement.windowsManagedAppProtection summary: Update the navigation property deploymentSummary in deviceAppManagement operationId: deviceAppManagement.windowsManagedAppProtections.UpdateDeploymentSummary requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAppPolicyDeploymentSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceAppManagement.windowsManagedAppProtection summary: Delete navigation property deploymentSummary for deviceAppManagement operationId: deviceAppManagement.windowsManagedAppProtections.DeleteDeploymentSummary parameters: - 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: windowsManagedAppProtection-id in: path description: The unique identifier of windowsManagedAppProtection required: true schema: type: string x-ms-docs-key-type: windowsManagedAppProtection '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assign': description: Provides operations to call the assign method. post: tags: - deviceAppManagement.windowsManagedAppProtection summary: Invoke action assign operationId: deviceAppManagement.windowsManagedAppProtections.windowsManagedAppProtection.assign requestBody: description: Action parameters content: application/json: schema: type: object properties: assignments: type: array items: $ref: '#/components/schemas/microsoft.graph.targetedManagedAppPolicyAssignment' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: windowsManagedAppProtection-id in: path description: The unique identifier of windowsManagedAppProtection required: true schema: type: string x-ms-docs-key-type: windowsManagedAppProtection x-ms-docs-grouped-path: - '/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assign' - '/deviceAppManagement/managedEBooks/{managedEBook-id}/assign' - '/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assign' - '/deviceAppManagement/mobileApps/{mobileApp-id}/assign' - '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign' - '/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assign' '/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/targetApps': description: Provides operations to call the targetApps method. post: tags: - deviceAppManagement.windowsManagedAppProtection summary: Invoke action targetApps operationId: deviceAppManagement.windowsManagedAppProtections.windowsManagedAppProtection.targetApps requestBody: description: Action parameters content: application/json: schema: type: object properties: apps: type: array items: $ref: '#/components/schemas/microsoft.graph.managedMobileApp' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: windowsManagedAppProtection-id in: path description: The unique identifier of windowsManagedAppProtection required: true schema: type: string x-ms-docs-key-type: windowsManagedAppProtection x-ms-docs-grouped-path: - '/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps' - '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/targetApps' - '/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/targetApps' - '/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/targetApps' /deviceAppManagement/windowsManagedAppProtections/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceAppManagement.windowsManagedAppProtection summary: Get the number of the resource operationId: deviceAppManagement.windowsManagedAppProtections.GetCount-4728 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' /deviceAppManagement/windowsManagementApp: description: Provides operations to manage the windowsManagementApp property of the microsoft.graph.deviceAppManagement entity. get: tags: - deviceAppManagement.windowsManagementApp summary: Get windowsManagementApp from deviceAppManagement description: Windows management app. operationId: deviceAppManagement.GetWindowsManagementApp parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsManagementApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation /deviceManagement: description: Provides operations to manage the deviceManagement singleton. get: tags: - deviceManagement.deviceManagement summary: Get deviceManagement operationId: deviceManagement.deviceManagement.GetDeviceManagement parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - 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.deviceManagement' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagement summary: Update deviceManagement operationId: deviceManagement.deviceManagement.UpdateDeviceManagement requestBody: description: New property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagement' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagement' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation /deviceManagement/advancedThreatProtectionOnboardingStateSummary: description: Provides operations to manage the advancedThreatProtectionOnboardingStateSummary property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Get advancedThreatProtectionOnboardingStateSummary from deviceManagement description: The summary state of ATP onboarding state for this account. operationId: deviceManagement.GetAdvancedThreatProtectionOnboardingStateSummary parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.advancedThreatProtectionOnboardingStateSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Update the navigation property advancedThreatProtectionOnboardingStateSummary in deviceManagement operationId: deviceManagement.UpdateAdvancedThreatProtectionOnboardingStateSummary requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.advancedThreatProtectionOnboardingStateSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.advancedThreatProtectionOnboardingStateSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Delete navigation property advancedThreatProtectionOnboardingStateSummary for deviceManagement operationId: deviceManagement.DeleteAdvancedThreatProtectionOnboardingStateSummary parameters: - 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 /deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates: description: Provides operations to manage the advancedThreatProtectionOnboardingDeviceSettingStates property of the microsoft.graph.advancedThreatProtectionOnboardingStateSummary entity. get: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Get advancedThreatProtectionOnboardingDeviceSettingStates from deviceManagement operationId: deviceManagement.advancedThreatProtectionOnboardingStateSummary.ListAdvancedThreatProtectionOnboardingDeviceSettingStates 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.advancedThreatProtectionOnboardingDeviceSettingStateCollectionResponse' 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: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Create new navigation property to advancedThreatProtectionOnboardingDeviceSettingStates for deviceManagement operationId: deviceManagement.advancedThreatProtectionOnboardingStateSummary.CreateAdvancedThreatProtectionOnboardingDeviceSettingStates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.advancedThreatProtectionOnboardingDeviceSettingState' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.advancedThreatProtectionOnboardingDeviceSettingState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates/{advancedThreatProtectionOnboardingDeviceSettingState-id}': description: Provides operations to manage the advancedThreatProtectionOnboardingDeviceSettingStates property of the microsoft.graph.advancedThreatProtectionOnboardingStateSummary entity. get: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Get advancedThreatProtectionOnboardingDeviceSettingStates from deviceManagement operationId: deviceManagement.advancedThreatProtectionOnboardingStateSummary.GetAdvancedThreatProtectionOnboardingDeviceSettingStates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.advancedThreatProtectionOnboardingDeviceSettingState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Update the navigation property advancedThreatProtectionOnboardingDeviceSettingStates in deviceManagement operationId: deviceManagement.advancedThreatProtectionOnboardingStateSummary.UpdateAdvancedThreatProtectionOnboardingDeviceSettingStates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.advancedThreatProtectionOnboardingDeviceSettingState' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.advancedThreatProtectionOnboardingDeviceSettingState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Delete navigation property advancedThreatProtectionOnboardingDeviceSettingStates for deviceManagement operationId: deviceManagement.advancedThreatProtectionOnboardingStateSummary.DeleteAdvancedThreatProtectionOnboardingDeviceSettingStates parameters: - 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: advancedThreatProtectionOnboardingDeviceSettingState-id in: path description: The unique identifier of advancedThreatProtectionOnboardingDeviceSettingState required: true schema: type: string x-ms-docs-key-type: advancedThreatProtectionOnboardingDeviceSettingState /deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.advancedThreatProtectionOnboardingStateSummary summary: Get the number of the resource operationId: deviceManagement.advancedThreatProtectionOnboardingStateSummary.advancedThreatProtectionOnboardingDeviceSettingStates.GetCount-2cb7 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' /deviceManagement/androidDeviceOwnerEnrollmentProfiles: description: Provides operations to manage the androidDeviceOwnerEnrollmentProfiles property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.androidDeviceOwnerEnrollmentProfile summary: Get androidDeviceOwnerEnrollmentProfiles from deviceManagement description: Android device owner enrollment profile entities. operationId: deviceManagement.ListAndroidDeviceOwnerEnrollmentProfiles 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.androidDeviceOwnerEnrollmentProfileCollectionResponse' 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: - deviceManagement.androidDeviceOwnerEnrollmentProfile summary: Create new navigation property to androidDeviceOwnerEnrollmentProfiles for deviceManagement operationId: deviceManagement.CreateAndroidDeviceOwnerEnrollmentProfiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidDeviceOwnerEnrollmentProfile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidDeviceOwnerEnrollmentProfile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}': description: Provides operations to manage the androidDeviceOwnerEnrollmentProfiles property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.androidDeviceOwnerEnrollmentProfile summary: Get androidDeviceOwnerEnrollmentProfiles from deviceManagement description: Android device owner enrollment profile entities. operationId: deviceManagement.GetAndroidDeviceOwnerEnrollmentProfiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidDeviceOwnerEnrollmentProfile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.androidDeviceOwnerEnrollmentProfile summary: Update the navigation property androidDeviceOwnerEnrollmentProfiles in deviceManagement operationId: deviceManagement.UpdateAndroidDeviceOwnerEnrollmentProfiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidDeviceOwnerEnrollmentProfile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidDeviceOwnerEnrollmentProfile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.androidDeviceOwnerEnrollmentProfile summary: Delete navigation property androidDeviceOwnerEnrollmentProfiles for deviceManagement operationId: deviceManagement.DeleteAndroidDeviceOwnerEnrollmentProfiles parameters: - 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: androidDeviceOwnerEnrollmentProfile-id in: path description: The unique identifier of androidDeviceOwnerEnrollmentProfile required: true schema: type: string x-ms-docs-key-type: androidDeviceOwnerEnrollmentProfile '/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}/clearEnrollmentTimeDeviceMembershipTarget': description: Provides operations to call the clearEnrollmentTimeDeviceMembershipTarget method. post: tags: - deviceManagement.androidDeviceOwnerEnrollmentProfile summary: Invoke action clearEnrollmentTimeDeviceMembershipTarget operationId: deviceManagement.androidDeviceOwnerEnrollmentProfiles.androidDeviceOwnerEnrollmentProfile.clearEnrollmentTimeDeviceMembershipTarget responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: androidDeviceOwnerEnrollmentProfile-id in: path description: The unique identifier of androidDeviceOwnerEnrollmentProfile required: true schema: type: string x-ms-docs-key-type: androidDeviceOwnerEnrollmentProfile x-ms-docs-grouped-path: - '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/clearEnrollmentTimeDeviceMembershipTarget' - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/clearEnrollmentTimeDeviceMembershipTarget' '/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}/createToken': description: Provides operations to call the createToken method. post: tags: - deviceManagement.androidDeviceOwnerEnrollmentProfile summary: Invoke action createToken operationId: deviceManagement.androidDeviceOwnerEnrollmentProfiles.androidDeviceOwnerEnrollmentProfile.createToken requestBody: description: Action parameters content: application/json: schema: type: object properties: tokenValidityInSeconds: maximum: 2147483647 minimum: -2147483648 type: number format: int32 required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: androidDeviceOwnerEnrollmentProfile-id in: path description: The unique identifier of androidDeviceOwnerEnrollmentProfile required: true schema: type: string x-ms-docs-key-type: androidDeviceOwnerEnrollmentProfile x-ms-docs-grouped-path: - '/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}/createToken' '/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}/retrieveEnrollmentTimeDeviceMembershipTarget': description: Provides operations to call the retrieveEnrollmentTimeDeviceMembershipTarget method. post: tags: - deviceManagement.androidDeviceOwnerEnrollmentProfile summary: Invoke action retrieveEnrollmentTimeDeviceMembershipTarget operationId: deviceManagement.androidDeviceOwnerEnrollmentProfiles.androidDeviceOwnerEnrollmentProfile.retrieveEnrollmentTimeDeviceMembershipTarget responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.enrollmentTimeDeviceMembershipTargetResult' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: androidDeviceOwnerEnrollmentProfile-id in: path description: The unique identifier of androidDeviceOwnerEnrollmentProfile required: true schema: type: string x-ms-docs-key-type: androidDeviceOwnerEnrollmentProfile x-ms-docs-grouped-path: - '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveEnrollmentTimeDeviceMembershipTarget' - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveEnrollmentTimeDeviceMembershipTarget' '/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}/revokeToken': description: Provides operations to call the revokeToken method. post: tags: - deviceManagement.androidDeviceOwnerEnrollmentProfile summary: Invoke action revokeToken operationId: deviceManagement.androidDeviceOwnerEnrollmentProfiles.androidDeviceOwnerEnrollmentProfile.revokeToken responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: androidDeviceOwnerEnrollmentProfile-id in: path description: The unique identifier of androidDeviceOwnerEnrollmentProfile required: true schema: type: string x-ms-docs-key-type: androidDeviceOwnerEnrollmentProfile x-ms-docs-grouped-path: - '/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}/revokeToken' '/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}/setEnrollmentTimeDeviceMembershipTarget': description: Provides operations to call the setEnrollmentTimeDeviceMembershipTarget method. post: tags: - deviceManagement.androidDeviceOwnerEnrollmentProfile summary: Invoke action setEnrollmentTimeDeviceMembershipTarget operationId: deviceManagement.androidDeviceOwnerEnrollmentProfiles.androidDeviceOwnerEnrollmentProfile.setEnrollmentTimeDeviceMembershipTarget requestBody: description: Action parameters content: application/json: schema: type: object properties: enrollmentTimeDeviceMembershipTargets: type: array items: $ref: '#/components/schemas/microsoft.graph.enrollmentTimeDeviceMembershipTarget' required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.enrollmentTimeDeviceMembershipTargetResult' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: androidDeviceOwnerEnrollmentProfile-id in: path description: The unique identifier of androidDeviceOwnerEnrollmentProfile required: true schema: type: string x-ms-docs-key-type: androidDeviceOwnerEnrollmentProfile x-ms-docs-grouped-path: - '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/setEnrollmentTimeDeviceMembershipTarget' - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/setEnrollmentTimeDeviceMembershipTarget' /deviceManagement/androidDeviceOwnerEnrollmentProfiles/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.androidDeviceOwnerEnrollmentProfile summary: Get the number of the resource operationId: deviceManagement.androidDeviceOwnerEnrollmentProfiles.GetCount-8294 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' /deviceManagement/androidForWorkAppConfigurationSchemas: description: Provides operations to manage the androidForWorkAppConfigurationSchemas property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.androidForWorkAppConfigurationSchema summary: Get androidForWorkAppConfigurationSchemas from deviceManagement description: Android for Work app configuration schema entities. operationId: deviceManagement.ListAndroidForWorkAppConfigurationSchemas 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.androidForWorkAppConfigurationSchemaCollectionResponse' 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: - deviceManagement.androidForWorkAppConfigurationSchema summary: Create new navigation property to androidForWorkAppConfigurationSchemas for deviceManagement operationId: deviceManagement.CreateAndroidForWorkAppConfigurationSchemas requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidForWorkAppConfigurationSchema' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidForWorkAppConfigurationSchema' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/androidForWorkAppConfigurationSchemas/{androidForWorkAppConfigurationSchema-id}': description: Provides operations to manage the androidForWorkAppConfigurationSchemas property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.androidForWorkAppConfigurationSchema summary: Get androidForWorkAppConfigurationSchemas from deviceManagement description: Android for Work app configuration schema entities. operationId: deviceManagement.GetAndroidForWorkAppConfigurationSchemas parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidForWorkAppConfigurationSchema' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.androidForWorkAppConfigurationSchema summary: Update the navigation property androidForWorkAppConfigurationSchemas in deviceManagement operationId: deviceManagement.UpdateAndroidForWorkAppConfigurationSchemas requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidForWorkAppConfigurationSchema' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidForWorkAppConfigurationSchema' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.androidForWorkAppConfigurationSchema summary: Delete navigation property androidForWorkAppConfigurationSchemas for deviceManagement operationId: deviceManagement.DeleteAndroidForWorkAppConfigurationSchemas parameters: - 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: androidForWorkAppConfigurationSchema-id in: path description: The unique identifier of androidForWorkAppConfigurationSchema required: true schema: type: string x-ms-docs-key-type: androidForWorkAppConfigurationSchema /deviceManagement/androidForWorkAppConfigurationSchemas/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.androidForWorkAppConfigurationSchema summary: Get the number of the resource operationId: deviceManagement.androidForWorkAppConfigurationSchemas.GetCount-3fa6 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' /deviceManagement/androidForWorkEnrollmentProfiles: description: Provides operations to manage the androidForWorkEnrollmentProfiles property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.androidForWorkEnrollmentProfile summary: Get androidForWorkEnrollmentProfiles from deviceManagement description: Android for Work enrollment profile entities. operationId: deviceManagement.ListAndroidForWorkEnrollmentProfiles 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.androidForWorkEnrollmentProfileCollectionResponse' 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: - deviceManagement.androidForWorkEnrollmentProfile summary: Create new navigation property to androidForWorkEnrollmentProfiles for deviceManagement operationId: deviceManagement.CreateAndroidForWorkEnrollmentProfiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidForWorkEnrollmentProfile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidForWorkEnrollmentProfile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}': description: Provides operations to manage the androidForWorkEnrollmentProfiles property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.androidForWorkEnrollmentProfile summary: Get androidForWorkEnrollmentProfiles from deviceManagement description: Android for Work enrollment profile entities. operationId: deviceManagement.GetAndroidForWorkEnrollmentProfiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidForWorkEnrollmentProfile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.androidForWorkEnrollmentProfile summary: Update the navigation property androidForWorkEnrollmentProfiles in deviceManagement operationId: deviceManagement.UpdateAndroidForWorkEnrollmentProfiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidForWorkEnrollmentProfile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidForWorkEnrollmentProfile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.androidForWorkEnrollmentProfile summary: Delete navigation property androidForWorkEnrollmentProfiles for deviceManagement operationId: deviceManagement.DeleteAndroidForWorkEnrollmentProfiles parameters: - 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: androidForWorkEnrollmentProfile-id in: path description: The unique identifier of androidForWorkEnrollmentProfile required: true schema: type: string x-ms-docs-key-type: androidForWorkEnrollmentProfile '/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}/createToken': description: Provides operations to call the createToken method. post: tags: - deviceManagement.androidForWorkEnrollmentProfile summary: Invoke action createToken operationId: deviceManagement.androidForWorkEnrollmentProfiles.androidForWorkEnrollmentProfile.createToken requestBody: description: Action parameters content: application/json: schema: type: object properties: tokenValidityInSeconds: maximum: 2147483647 minimum: -2147483648 type: number format: int32 required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: androidForWorkEnrollmentProfile-id in: path description: The unique identifier of androidForWorkEnrollmentProfile required: true schema: type: string x-ms-docs-key-type: androidForWorkEnrollmentProfile x-ms-docs-grouped-path: - '/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}/createToken' '/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}/revokeToken': description: Provides operations to call the revokeToken method. post: tags: - deviceManagement.androidForWorkEnrollmentProfile summary: Invoke action revokeToken operationId: deviceManagement.androidForWorkEnrollmentProfiles.androidForWorkEnrollmentProfile.revokeToken responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: androidForWorkEnrollmentProfile-id in: path description: The unique identifier of androidForWorkEnrollmentProfile required: true schema: type: string x-ms-docs-key-type: androidForWorkEnrollmentProfile x-ms-docs-grouped-path: - '/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}/revokeToken' /deviceManagement/androidForWorkEnrollmentProfiles/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.androidForWorkEnrollmentProfile summary: Get the number of the resource operationId: deviceManagement.androidForWorkEnrollmentProfiles.GetCount-07c7 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' /deviceManagement/androidForWorkSettings: description: Provides operations to manage the androidForWorkSettings property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.androidForWorkSettings summary: Get androidForWorkSettings from deviceManagement description: The singleton Android for Work settings entity. operationId: deviceManagement.GetAndroidForWorkSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidForWorkSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.androidForWorkSettings summary: Update the navigation property androidForWorkSettings in deviceManagement operationId: deviceManagement.UpdateAndroidForWorkSettings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidForWorkSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidForWorkSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.androidForWorkSettings summary: Delete navigation property androidForWorkSettings for deviceManagement operationId: deviceManagement.DeleteAndroidForWorkSettings parameters: - 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 /deviceManagement/androidForWorkSettings/completeSignup: description: Provides operations to call the completeSignup method. post: tags: - deviceManagement.androidForWorkSettings summary: Invoke action completeSignup operationId: deviceManagement.androidForWorkSettings.completeSignup requestBody: description: Action parameters content: application/json: schema: type: object properties: enterpriseToken: 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 x-ms-docs-grouped-path: - /deviceManagement/androidManagedStoreAccountEnterpriseSettings/completeSignup /deviceManagement/androidForWorkSettings/requestSignupUrl: description: Provides operations to call the requestSignupUrl method. post: tags: - deviceManagement.androidForWorkSettings summary: Invoke action requestSignupUrl operationId: deviceManagement.androidForWorkSettings.requestSignupUrl requestBody: description: Action parameters content: application/json: schema: type: object properties: hostName: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-docs-grouped-path: - /deviceManagement/androidManagedStoreAccountEnterpriseSettings/requestSignupUrl /deviceManagement/androidForWorkSettings/syncApps: description: Provides operations to call the syncApps method. post: tags: - deviceManagement.androidForWorkSettings summary: Invoke action syncApps operationId: deviceManagement.androidForWorkSettings.syncApps 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: - /deviceManagement/androidManagedStoreAccountEnterpriseSettings/syncApps /deviceManagement/androidForWorkSettings/unbind: description: Provides operations to call the unbind method. post: tags: - deviceManagement.androidForWorkSettings summary: Invoke action unbind operationId: deviceManagement.androidForWorkSettings.unbind 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: - /deviceManagement/androidManagedStoreAccountEnterpriseSettings/unbind /deviceManagement/androidManagedStoreAccountEnterpriseSettings: description: Provides operations to manage the androidManagedStoreAccountEnterpriseSettings property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.androidManagedStoreAccountEnterpriseSettings summary: Get androidManagedStoreAccountEnterpriseSettings from deviceManagement description: The singleton Android managed store account enterprise settings entity. operationId: deviceManagement.GetAndroidManagedStoreAccountEnterpriseSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidManagedStoreAccountEnterpriseSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.androidManagedStoreAccountEnterpriseSettings summary: Update the navigation property androidManagedStoreAccountEnterpriseSettings in deviceManagement operationId: deviceManagement.UpdateAndroidManagedStoreAccountEnterpriseSettings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidManagedStoreAccountEnterpriseSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidManagedStoreAccountEnterpriseSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.androidManagedStoreAccountEnterpriseSettings summary: Delete navigation property androidManagedStoreAccountEnterpriseSettings for deviceManagement operationId: deviceManagement.DeleteAndroidManagedStoreAccountEnterpriseSettings parameters: - 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 /deviceManagement/androidManagedStoreAccountEnterpriseSettings/addApps: description: Provides operations to call the addApps method. post: tags: - deviceManagement.androidManagedStoreAccountEnterpriseSettings summary: Invoke action addApps operationId: deviceManagement.androidManagedStoreAccountEnterpriseSettings.addApps requestBody: description: Action parameters content: application/json: schema: type: object properties: productIds: type: array items: 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 /deviceManagement/androidManagedStoreAccountEnterpriseSettings/approveApps: description: Provides operations to call the approveApps method. post: tags: - deviceManagement.androidManagedStoreAccountEnterpriseSettings summary: Invoke action approveApps operationId: deviceManagement.androidManagedStoreAccountEnterpriseSettings.approveApps requestBody: description: Action parameters content: application/json: schema: type: object properties: packageIds: type: array items: type: string nullable: true approveAllPermissions: type: boolean default: false required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /deviceManagement/androidManagedStoreAccountEnterpriseSettings/completeSignup: description: Provides operations to call the completeSignup method. post: tags: - deviceManagement.androidManagedStoreAccountEnterpriseSettings summary: Invoke action completeSignup operationId: deviceManagement.androidManagedStoreAccountEnterpriseSettings.completeSignup requestBody: description: Action parameters content: application/json: schema: type: object properties: enterpriseToken: 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 x-ms-docs-grouped-path: - /deviceManagement/androidForWorkSettings/completeSignup /deviceManagement/androidManagedStoreAccountEnterpriseSettings/createGooglePlayWebToken: description: Provides operations to call the createGooglePlayWebToken method. post: tags: - deviceManagement.androidManagedStoreAccountEnterpriseSettings summary: Invoke action createGooglePlayWebToken description: Generates a web token that is used in an embeddable component. operationId: deviceManagement.androidManagedStoreAccountEnterpriseSettings.createGooglePlayWebToken requestBody: description: Action parameters content: application/json: schema: type: object properties: parentUri: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /deviceManagement/androidManagedStoreAccountEnterpriseSettings/requestSignupUrl: description: Provides operations to call the requestSignupUrl method. post: tags: - deviceManagement.androidManagedStoreAccountEnterpriseSettings summary: Invoke action requestSignupUrl operationId: deviceManagement.androidManagedStoreAccountEnterpriseSettings.requestSignupUrl requestBody: description: Action parameters content: application/json: schema: type: object properties: hostName: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-docs-grouped-path: - /deviceManagement/androidForWorkSettings/requestSignupUrl /deviceManagement/androidManagedStoreAccountEnterpriseSettings/setAndroidDeviceOwnerFullyManagedEnrollmentState: description: Provides operations to call the setAndroidDeviceOwnerFullyManagedEnrollmentState method. post: tags: - deviceManagement.androidManagedStoreAccountEnterpriseSettings summary: Invoke action setAndroidDeviceOwnerFullyManagedEnrollmentState description: Sets the AndroidManagedStoreAccountEnterpriseSettings AndroidDeviceOwnerFullyManagedEnrollmentEnabled to the given value. operationId: deviceManagement.androidManagedStoreAccountEnterpriseSettings.setAndroidDeviceOwnerFullyManagedEnrollmentState requestBody: description: Action parameters content: application/json: schema: type: object properties: enabled: type: boolean default: false required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /deviceManagement/androidManagedStoreAccountEnterpriseSettings/syncApps: description: Provides operations to call the syncApps method. post: tags: - deviceManagement.androidManagedStoreAccountEnterpriseSettings summary: Invoke action syncApps operationId: deviceManagement.androidManagedStoreAccountEnterpriseSettings.syncApps 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: - /deviceManagement/androidForWorkSettings/syncApps /deviceManagement/androidManagedStoreAccountEnterpriseSettings/unbind: description: Provides operations to call the unbind method. post: tags: - deviceManagement.androidManagedStoreAccountEnterpriseSettings summary: Invoke action unbind operationId: deviceManagement.androidManagedStoreAccountEnterpriseSettings.unbind 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: - /deviceManagement/androidForWorkSettings/unbind /deviceManagement/androidManagedStoreAppConfigurationSchemas: description: Provides operations to manage the androidManagedStoreAppConfigurationSchemas property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.androidManagedStoreAppConfigurationSchema summary: Get androidManagedStoreAppConfigurationSchemas from deviceManagement description: Android Enterprise app configuration schema entities. operationId: deviceManagement.ListAndroidManagedStoreAppConfigurationSchemas 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.androidManagedStoreAppConfigurationSchemaCollectionResponse' 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: - deviceManagement.androidManagedStoreAppConfigurationSchema summary: Create new navigation property to androidManagedStoreAppConfigurationSchemas for deviceManagement operationId: deviceManagement.CreateAndroidManagedStoreAppConfigurationSchemas requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidManagedStoreAppConfigurationSchema' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidManagedStoreAppConfigurationSchema' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/androidManagedStoreAppConfigurationSchemas/{androidManagedStoreAppConfigurationSchema-id}': description: Provides operations to manage the androidManagedStoreAppConfigurationSchemas property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.androidManagedStoreAppConfigurationSchema summary: Get androidManagedStoreAppConfigurationSchemas from deviceManagement description: Android Enterprise app configuration schema entities. operationId: deviceManagement.GetAndroidManagedStoreAppConfigurationSchemas parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidManagedStoreAppConfigurationSchema' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.androidManagedStoreAppConfigurationSchema summary: Update the navigation property androidManagedStoreAppConfigurationSchemas in deviceManagement operationId: deviceManagement.UpdateAndroidManagedStoreAppConfigurationSchemas requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidManagedStoreAppConfigurationSchema' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.androidManagedStoreAppConfigurationSchema' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.androidManagedStoreAppConfigurationSchema summary: Delete navigation property androidManagedStoreAppConfigurationSchemas for deviceManagement operationId: deviceManagement.DeleteAndroidManagedStoreAppConfigurationSchemas parameters: - 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: androidManagedStoreAppConfigurationSchema-id in: path description: The unique identifier of androidManagedStoreAppConfigurationSchema required: true schema: type: string x-ms-docs-key-type: androidManagedStoreAppConfigurationSchema /deviceManagement/androidManagedStoreAppConfigurationSchemas/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.androidManagedStoreAppConfigurationSchema summary: Get the number of the resource operationId: deviceManagement.androidManagedStoreAppConfigurationSchemas.GetCount-7b8b 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' /deviceManagement/applePushNotificationCertificate: description: Provides operations to manage the applePushNotificationCertificate property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.applePushNotificationCertificate summary: Get applePushNotificationCertificate from deviceManagement description: Apple push notification certificate. operationId: deviceManagement.GetApplePushNotificationCertificate parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.applePushNotificationCertificate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.applePushNotificationCertificate summary: Update the navigation property applePushNotificationCertificate in deviceManagement operationId: deviceManagement.UpdateApplePushNotificationCertificate requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.applePushNotificationCertificate' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.applePushNotificationCertificate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.applePushNotificationCertificate summary: Delete navigation property applePushNotificationCertificate for deviceManagement operationId: deviceManagement.DeleteApplePushNotificationCertificate parameters: - 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 /deviceManagement/applePushNotificationCertificate/downloadApplePushNotificationCertificateSigningRequest(): description: Provides operations to call the downloadApplePushNotificationCertificateSigningRequest method. get: tags: - deviceManagement.applePushNotificationCertificate summary: Invoke function downloadApplePushNotificationCertificateSigningRequest description: Download Apple push notification certificate signing request operationId: deviceManagement.applePushNotificationCertificate.downloadApplePushNotificationCertificateSigningRequest responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function /deviceManagement/applePushNotificationCertificate/generateApplePushNotificationCertificateSigningRequest: description: Provides operations to call the generateApplePushNotificationCertificateSigningRequest method. post: tags: - deviceManagement.applePushNotificationCertificate summary: Invoke action generateApplePushNotificationCertificateSigningRequest description: Download Apple push notification certificate signing request operationId: deviceManagement.applePushNotificationCertificate.generateApplePushNotificationCertificateSigningRequest responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /deviceManagement/appleUserInitiatedEnrollmentProfiles: description: Provides operations to manage the appleUserInitiatedEnrollmentProfiles property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Get appleUserInitiatedEnrollmentProfiles from deviceManagement description: Apple user initiated enrollment profiles operationId: deviceManagement.ListAppleUserInitiatedEnrollmentProfiles 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.appleUserInitiatedEnrollmentProfileCollectionResponse' 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: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Create new navigation property to appleUserInitiatedEnrollmentProfiles for deviceManagement operationId: deviceManagement.CreateAppleUserInitiatedEnrollmentProfiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.appleUserInitiatedEnrollmentProfile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.appleUserInitiatedEnrollmentProfile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}': description: Provides operations to manage the appleUserInitiatedEnrollmentProfiles property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Get appleUserInitiatedEnrollmentProfiles from deviceManagement description: Apple user initiated enrollment profiles operationId: deviceManagement.GetAppleUserInitiatedEnrollmentProfiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.appleUserInitiatedEnrollmentProfile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Update the navigation property appleUserInitiatedEnrollmentProfiles in deviceManagement operationId: deviceManagement.UpdateAppleUserInitiatedEnrollmentProfiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.appleUserInitiatedEnrollmentProfile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.appleUserInitiatedEnrollmentProfile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Delete navigation property appleUserInitiatedEnrollmentProfiles for deviceManagement operationId: deviceManagement.DeleteAppleUserInitiatedEnrollmentProfiles parameters: - 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: appleUserInitiatedEnrollmentProfile-id in: path description: The unique identifier of appleUserInitiatedEnrollmentProfile required: true schema: type: string x-ms-docs-key-type: appleUserInitiatedEnrollmentProfile '/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.appleUserInitiatedEnrollmentProfile entity. get: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Get assignments from deviceManagement description: The list of assignments for this profile. operationId: deviceManagement.appleUserInitiatedEnrollmentProfiles.ListAssignments 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.appleEnrollmentProfileAssignmentCollectionResponse' 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: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Create new navigation property to assignments for deviceManagement operationId: deviceManagement.appleUserInitiatedEnrollmentProfiles.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.appleEnrollmentProfileAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.appleEnrollmentProfileAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: appleUserInitiatedEnrollmentProfile-id in: path description: The unique identifier of appleUserInitiatedEnrollmentProfile required: true schema: type: string x-ms-docs-key-type: appleUserInitiatedEnrollmentProfile '/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments/{appleEnrollmentProfileAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.appleUserInitiatedEnrollmentProfile entity. get: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Get assignments from deviceManagement description: The list of assignments for this profile. operationId: deviceManagement.appleUserInitiatedEnrollmentProfiles.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.appleEnrollmentProfileAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Update the navigation property assignments in deviceManagement operationId: deviceManagement.appleUserInitiatedEnrollmentProfiles.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.appleEnrollmentProfileAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.appleEnrollmentProfileAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Delete navigation property assignments for deviceManagement operationId: deviceManagement.appleUserInitiatedEnrollmentProfiles.DeleteAssignments parameters: - 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: appleUserInitiatedEnrollmentProfile-id in: path description: The unique identifier of appleUserInitiatedEnrollmentProfile required: true schema: type: string x-ms-docs-key-type: appleUserInitiatedEnrollmentProfile - name: appleEnrollmentProfileAssignment-id in: path description: The unique identifier of appleEnrollmentProfileAssignment required: true schema: type: string x-ms-docs-key-type: appleEnrollmentProfileAssignment '/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Get the number of the resource operationId: deviceManagement.appleUserInitiatedEnrollmentProfiles.assignments.GetCount-1339 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: appleUserInitiatedEnrollmentProfile-id in: path description: The unique identifier of appleUserInitiatedEnrollmentProfile required: true schema: type: string x-ms-docs-key-type: appleUserInitiatedEnrollmentProfile '/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/setPriority': description: Provides operations to call the setPriority method. post: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Invoke action setPriority operationId: deviceManagement.appleUserInitiatedEnrollmentProfiles.appleUserInitiatedEnrollmentProfile.setPriority requestBody: description: Action parameters content: application/json: schema: type: object properties: priority: maximum: 2147483647 minimum: -2147483648 type: number format: int32 required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: appleUserInitiatedEnrollmentProfile-id in: path description: The unique identifier of appleUserInitiatedEnrollmentProfile required: true schema: type: string x-ms-docs-key-type: appleUserInitiatedEnrollmentProfile x-ms-docs-grouped-path: - '/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/setPriority' /deviceManagement/appleUserInitiatedEnrollmentProfiles/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.appleUserInitiatedEnrollmentProfile summary: Get the number of the resource operationId: deviceManagement.appleUserInitiatedEnrollmentProfiles.GetCount-53c5 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' /deviceManagement/assignmentFilters: description: Provides operations to manage the assignmentFilters property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceAndAppManagementAssignmentFilter summary: Get assignmentFilters from deviceManagement description: The list of assignment filters operationId: deviceManagement.ListAssignmentFilters 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.deviceAndAppManagementAssignmentFilterCollectionResponse' 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: - deviceManagement.deviceAndAppManagementAssignmentFilter summary: Create new navigation property to assignmentFilters for deviceManagement operationId: deviceManagement.CreateAssignmentFilters requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentFilter' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentFilter' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}': description: Provides operations to manage the assignmentFilters property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceAndAppManagementAssignmentFilter summary: Get assignmentFilters from deviceManagement description: The list of assignment filters operationId: deviceManagement.GetAssignmentFilters parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentFilter' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceAndAppManagementAssignmentFilter summary: Update the navigation property assignmentFilters in deviceManagement operationId: deviceManagement.UpdateAssignmentFilters requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentFilter' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentFilter' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceAndAppManagementAssignmentFilter summary: Delete navigation property assignmentFilters for deviceManagement operationId: deviceManagement.DeleteAssignmentFilters parameters: - 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: deviceAndAppManagementAssignmentFilter-id in: path description: The unique identifier of deviceAndAppManagementAssignmentFilter required: true schema: type: string x-ms-docs-key-type: deviceAndAppManagementAssignmentFilter '/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}/getSupportedProperties()': description: Provides operations to call the getSupportedProperties method. get: tags: - deviceManagement.deviceAndAppManagementAssignmentFilter summary: Invoke function getSupportedProperties operationId: deviceManagement.assignmentFilters.deviceAndAppManagementAssignmentFilter.getSupportedProperties 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.assignmentFilterSupportedProperty' 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: deviceAndAppManagementAssignmentFilter-id in: path description: The unique identifier of deviceAndAppManagementAssignmentFilter required: true schema: type: string x-ms-docs-key-type: deviceAndAppManagementAssignmentFilter /deviceManagement/assignmentFilters/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceAndAppManagementAssignmentFilter summary: Get the number of the resource operationId: deviceManagement.assignmentFilters.GetCount-1319 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' /deviceManagement/assignmentFilters/enable: description: Provides operations to call the enable method. post: tags: - deviceManagement.deviceAndAppManagementAssignmentFilter summary: Invoke action enable operationId: deviceManagement.assignmentFilters.enable requestBody: description: Action parameters content: application/json: schema: type: object properties: enable: type: boolean default: false 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: - /deviceManagement/tenantAttachRBAC/enable '/deviceManagement/assignmentFilters/getPlatformSupportedProperties(platform=''{platform}'')': description: Provides operations to call the getPlatformSupportedProperties method. get: tags: - deviceManagement.deviceAndAppManagementAssignmentFilter summary: Invoke function getPlatformSupportedProperties operationId: deviceManagement.assignmentFilters.getPlatformSupportedProperties 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.assignmentFilterSupportedProperty' 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: platform in: path description: 'Usage: platform=''{platform}''' required: true schema: $ref: '#/components/schemas/microsoft.graph.devicePlatformType' /deviceManagement/assignmentFilters/getState(): description: Provides operations to call the getState method. get: tags: - deviceManagement.deviceAndAppManagementAssignmentFilter summary: Invoke function getState operationId: deviceManagement.assignmentFilters.getState responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.assignmentFilterState' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-docs-grouped-path: - /deviceManagement/tenantAttachRBAC/getState() /deviceManagement/assignmentFilters/validateFilter: description: Provides operations to call the validateFilter method. post: tags: - deviceManagement.deviceAndAppManagementAssignmentFilter summary: Invoke action validateFilter operationId: deviceManagement.assignmentFilters.validateFilter requestBody: description: Action parameters content: application/json: schema: type: object properties: deviceAndAppManagementAssignmentFilter: anyOf: - $ref: '#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentFilter' - type: object nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.assignmentFilterValidationResult' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /deviceManagement/auditEvents: description: Provides operations to manage the auditEvents property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.auditEvent summary: Get auditEvents from deviceManagement description: The Audit Events operationId: deviceManagement.ListAuditEvents 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.auditEventCollectionResponse' 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: - deviceManagement.auditEvent summary: Create new navigation property to auditEvents for deviceManagement operationId: deviceManagement.CreateAuditEvents requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.auditEvent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.auditEvent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/auditEvents/{auditEvent-id}': description: Provides operations to manage the auditEvents property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.auditEvent summary: Get auditEvents from deviceManagement description: The Audit Events operationId: deviceManagement.GetAuditEvents parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.auditEvent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.auditEvent summary: Update the navigation property auditEvents in deviceManagement operationId: deviceManagement.UpdateAuditEvents requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.auditEvent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.auditEvent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.auditEvent summary: Delete navigation property auditEvents for deviceManagement operationId: deviceManagement.DeleteAuditEvents parameters: - 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: auditEvent-id in: path description: The unique identifier of auditEvent required: true schema: type: string x-ms-docs-key-type: auditEvent /deviceManagement/auditEvents/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.auditEvent summary: Get the number of the resource operationId: deviceManagement.auditEvents.GetCount-7cd0 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' '/deviceManagement/auditEvents/getAuditActivityTypes(category=''{category}'')': description: Provides operations to call the getAuditActivityTypes method. get: tags: - deviceManagement.auditEvent summary: Invoke function getAuditActivityTypes operationId: deviceManagement.auditEvents.getAuditActivityTypes 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: type: string nullable: true 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: category in: path description: 'Usage: category=''{category}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - /deviceManagement/virtualEndpoint/auditEvents/getAuditActivityTypes() /deviceManagement/auditEvents/getAuditCategories(): description: Provides operations to call the getAuditCategories method. get: tags: - deviceManagement.auditEvent summary: Invoke function getAuditCategories operationId: deviceManagement.auditEvents.getAuditCategories 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: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceManagement/autopilotEvents: description: Provides operations to manage the autopilotEvents property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Get autopilotEvents from deviceManagement description: The list of autopilot events for the tenant. operationId: deviceManagement.ListAutopilotEvents 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.deviceManagementAutopilotEventCollectionResponse' 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: - deviceManagement.deviceManagementAutopilotEvent summary: Create new navigation property to autopilotEvents for deviceManagement operationId: deviceManagement.CreateAutopilotEvents requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementAutopilotEvent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementAutopilotEvent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}': description: Provides operations to manage the autopilotEvents property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Get autopilotEvents from deviceManagement description: The list of autopilot events for the tenant. operationId: deviceManagement.GetAutopilotEvents parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementAutopilotEvent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Update the navigation property autopilotEvents in deviceManagement operationId: deviceManagement.UpdateAutopilotEvents requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementAutopilotEvent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementAutopilotEvent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Delete navigation property autopilotEvents for deviceManagement operationId: deviceManagement.DeleteAutopilotEvents parameters: - 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: deviceManagementAutopilotEvent-id in: path description: The unique identifier of deviceManagementAutopilotEvent required: true schema: type: string x-ms-docs-key-type: deviceManagementAutopilotEvent /deviceManagement/autopilotEvents/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementAutopilotEvent summary: Get the number of the resource operationId: deviceManagement.autopilotEvents.GetCount-48ac 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' /deviceManagement/cartToClassAssociations: description: Provides operations to manage the cartToClassAssociations property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.cartToClassAssociation summary: Get cartToClassAssociations from deviceManagement description: The Cart To Class Associations. operationId: deviceManagement.ListCartToClassAssociations 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.cartToClassAssociationCollectionResponse' 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: - deviceManagement.cartToClassAssociation summary: Create new navigation property to cartToClassAssociations for deviceManagement operationId: deviceManagement.CreateCartToClassAssociations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cartToClassAssociation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cartToClassAssociation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/cartToClassAssociations/{cartToClassAssociation-id}': description: Provides operations to manage the cartToClassAssociations property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.cartToClassAssociation summary: Get cartToClassAssociations from deviceManagement description: The Cart To Class Associations. operationId: deviceManagement.GetCartToClassAssociations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cartToClassAssociation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.cartToClassAssociation summary: Update the navigation property cartToClassAssociations in deviceManagement operationId: deviceManagement.UpdateCartToClassAssociations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cartToClassAssociation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cartToClassAssociation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.cartToClassAssociation summary: Delete navigation property cartToClassAssociations for deviceManagement operationId: deviceManagement.DeleteCartToClassAssociations parameters: - 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: cartToClassAssociation-id in: path description: The unique identifier of cartToClassAssociation required: true schema: type: string x-ms-docs-key-type: cartToClassAssociation /deviceManagement/cartToClassAssociations/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.cartToClassAssociation summary: Get the number of the resource operationId: deviceManagement.cartToClassAssociations.GetCount-69a2 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' /deviceManagement/categories: description: Provides operations to manage the categories property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementSettingCategory summary: Get categories from deviceManagement description: The available categories operationId: deviceManagement.ListCategories 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.deviceManagementSettingCategoryCollectionResponse' 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: - deviceManagement.deviceManagementSettingCategory summary: Create new navigation property to categories for deviceManagement operationId: deviceManagement.CreateCategories requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementSettingCategory' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementSettingCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/categories/{deviceManagementSettingCategory-id}': description: Provides operations to manage the categories property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementSettingCategory summary: Get categories from deviceManagement description: The available categories operationId: deviceManagement.GetCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementSettingCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementSettingCategory summary: Update the navigation property categories in deviceManagement operationId: deviceManagement.UpdateCategories requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementSettingCategory' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementSettingCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementSettingCategory summary: Delete navigation property categories for deviceManagement operationId: deviceManagement.DeleteCategories parameters: - 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: deviceManagementSettingCategory-id in: path description: The unique identifier of deviceManagementSettingCategory required: true schema: type: string x-ms-docs-key-type: deviceManagementSettingCategory '/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions': description: Provides operations to manage the settingDefinitions property of the microsoft.graph.deviceManagementSettingCategory entity. get: tags: - deviceManagement.deviceManagementSettingCategory summary: Get settingDefinitions from deviceManagement description: The setting definitions this category contains operationId: deviceManagement.categories.ListSettingDefinitions 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.deviceManagementSettingDefinitionCollectionResponse' 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: - deviceManagement.deviceManagementSettingCategory summary: Create new navigation property to settingDefinitions for deviceManagement operationId: deviceManagement.categories.CreateSettingDefinitions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementSettingDefinition' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementSettingDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceManagementSettingCategory-id in: path description: The unique identifier of deviceManagementSettingCategory required: true schema: type: string x-ms-docs-key-type: deviceManagementSettingCategory x-ms-docs-grouped-path: - '/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions' - '/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions' - '/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions' '/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}': description: Provides operations to manage the settingDefinitions property of the microsoft.graph.deviceManagementSettingCategory entity. get: tags: - deviceManagement.deviceManagementSettingCategory summary: Get settingDefinitions from deviceManagement description: The setting definitions this category contains operationId: deviceManagement.categories.GetSettingDefinitions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementSettingDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementSettingCategory summary: Update the navigation property settingDefinitions in deviceManagement operationId: deviceManagement.categories.UpdateSettingDefinitions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementSettingDefinition' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementSettingDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementSettingCategory summary: Delete navigation property settingDefinitions for deviceManagement operationId: deviceManagement.categories.DeleteSettingDefinitions parameters: - 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: deviceManagementSettingCategory-id in: path description: The unique identifier of deviceManagementSettingCategory required: true schema: type: string x-ms-docs-key-type: deviceManagementSettingCategory - name: deviceManagementSettingDefinition-id in: path description: The unique identifier of deviceManagementSettingDefinition required: true schema: type: string x-ms-docs-key-type: deviceManagementSettingDefinition x-ms-docs-grouped-path: - '/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}' - '/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}' - '/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}' '/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementSettingCategory summary: Get the number of the resource operationId: deviceManagement.categories.settingDefinitions.GetCount-fca5 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: deviceManagementSettingCategory-id in: path description: The unique identifier of deviceManagementSettingCategory required: true schema: type: string x-ms-docs-key-type: deviceManagementSettingCategory /deviceManagement/categories/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementSettingCategory summary: Get the number of the resource operationId: deviceManagement.categories.GetCount-7631 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' /deviceManagement/certificateConnectorDetails: description: Provides operations to manage the certificateConnectorDetails property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.certificateConnectorDetails summary: Get certificateConnectorDetails from deviceManagement description: 'Collection of certificate connector details, each associated with a corresponding Intune Certificate Connector.' operationId: deviceManagement.ListCertificateConnectorDetails 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.certificateConnectorDetailsCollectionResponse' 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: - deviceManagement.certificateConnectorDetails summary: Create new navigation property to certificateConnectorDetails for deviceManagement operationId: deviceManagement.CreateCertificateConnectorDetails requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateConnectorDetails' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateConnectorDetails' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/certificateConnectorDetails/{certificateConnectorDetails-id}': description: Provides operations to manage the certificateConnectorDetails property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.certificateConnectorDetails summary: Get certificateConnectorDetails from deviceManagement description: 'Collection of certificate connector details, each associated with a corresponding Intune Certificate Connector.' operationId: deviceManagement.GetCertificateConnectorDetails parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateConnectorDetails' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.certificateConnectorDetails summary: Update the navigation property certificateConnectorDetails in deviceManagement operationId: deviceManagement.UpdateCertificateConnectorDetails requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateConnectorDetails' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.certificateConnectorDetails' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.certificateConnectorDetails summary: Delete navigation property certificateConnectorDetails for deviceManagement operationId: deviceManagement.DeleteCertificateConnectorDetails parameters: - 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: certificateConnectorDetails-id in: path description: The unique identifier of certificateConnectorDetails required: true schema: type: string x-ms-docs-key-type: certificateConnectorDetails '/deviceManagement/certificateConnectorDetails/{certificateConnectorDetails-id}/getHealthMetrics': description: Provides operations to call the getHealthMetrics method. post: tags: - deviceManagement.certificateConnectorDetails summary: Invoke action getHealthMetrics operationId: deviceManagement.certificateConnectorDetails.certificateConnectorDetails.getHealthMetrics requestBody: description: Action parameters content: application/json: schema: type: object properties: metricNames: type: array items: type: string 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.keyLongValuePair' 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: certificateConnectorDetails-id in: path description: The unique identifier of certificateConnectorDetails required: true schema: type: string x-ms-docs-key-type: certificateConnectorDetails x-ms-docs-grouped-path: - '/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/getHealthMetrics' '/deviceManagement/certificateConnectorDetails/{certificateConnectorDetails-id}/getHealthMetricTimeSeries': description: Provides operations to call the getHealthMetricTimeSeries method. post: tags: - deviceManagement.certificateConnectorDetails summary: Invoke action getHealthMetricTimeSeries operationId: deviceManagement.certificateConnectorDetails.certificateConnectorDetails.getHealthMetricTimeSeries requestBody: description: Action parameters content: application/json: schema: type: object properties: timeSeries: anyOf: - $ref: '#/components/schemas/microsoft.graph.timeSeriesParameter' - type: object 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.certificateConnectorHealthMetricValue' 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: certificateConnectorDetails-id in: path description: The unique identifier of certificateConnectorDetails required: true schema: type: string x-ms-docs-key-type: certificateConnectorDetails x-ms-docs-grouped-path: - '/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/getHealthMetricTimeSeries' /deviceManagement/certificateConnectorDetails/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.certificateConnectorDetails summary: Get the number of the resource operationId: deviceManagement.certificateConnectorDetails.GetCount-341a 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' /deviceManagement/chromeOSOnboardingSettings: description: Provides operations to manage the chromeOSOnboardingSettings property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.chromeOSOnboardingSettings summary: Get chromeOSOnboardingSettings from deviceManagement description: Collection of ChromeOSOnboardingSettings settings associated with account. operationId: deviceManagement.ListChromeOSOnboardingSettings 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.chromeOSOnboardingSettingsCollectionResponse' 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: - deviceManagement.chromeOSOnboardingSettings summary: Create new navigation property to chromeOSOnboardingSettings for deviceManagement operationId: deviceManagement.CreateChromeOSOnboardingSettings requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chromeOSOnboardingSettings' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chromeOSOnboardingSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/chromeOSOnboardingSettings/{chromeOSOnboardingSettings-id}': description: Provides operations to manage the chromeOSOnboardingSettings property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.chromeOSOnboardingSettings summary: Get chromeOSOnboardingSettings from deviceManagement description: Collection of ChromeOSOnboardingSettings settings associated with account. operationId: deviceManagement.GetChromeOSOnboardingSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chromeOSOnboardingSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.chromeOSOnboardingSettings summary: Update the navigation property chromeOSOnboardingSettings in deviceManagement operationId: deviceManagement.UpdateChromeOSOnboardingSettings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chromeOSOnboardingSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chromeOSOnboardingSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.chromeOSOnboardingSettings summary: Delete navigation property chromeOSOnboardingSettings for deviceManagement operationId: deviceManagement.DeleteChromeOSOnboardingSettings parameters: - 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: chromeOSOnboardingSettings-id in: path description: The unique identifier of chromeOSOnboardingSettings required: true schema: type: string x-ms-docs-key-type: chromeOSOnboardingSettings /deviceManagement/chromeOSOnboardingSettings/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.chromeOSOnboardingSettings summary: Get the number of the resource operationId: deviceManagement.chromeOSOnboardingSettings.GetCount-1547 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' /deviceManagement/chromeOSOnboardingSettings/connect: description: Provides operations to call the connect method. post: tags: - deviceManagement.chromeOSOnboardingSettings summary: Invoke action connect operationId: deviceManagement.chromeOSOnboardingSettings.connect requestBody: description: Action parameters content: application/json: schema: type: object properties: ownerUserPrincipalName: type: string nullable: true ownerAccessToken: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chromeOSOnboardingStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-docs-grouped-path: - /deviceManagement/zebraFotaConnector/connect /deviceManagement/chromeOSOnboardingSettings/disconnect: description: Provides operations to call the disconnect method. post: tags: - deviceManagement.chromeOSOnboardingSettings summary: Invoke action disconnect operationId: deviceManagement.chromeOSOnboardingSettings.disconnect responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.chromeOSOnboardingStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-docs-grouped-path: - '/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/disconnect' - /deviceManagement/zebraFotaConnector/disconnect /deviceManagement/cloudCertificationAuthority: description: Provides operations to manage the cloudCertificationAuthority property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.cloudCertificationAuthority summary: Get cloudCertificationAuthority from deviceManagement description: Collection of CloudCertificationAuthority records associated with account. operationId: deviceManagement.ListCloudCertificationAuthority 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.cloudCertificationAuthorityCollectionResponse' 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: - deviceManagement.cloudCertificationAuthority summary: Create new navigation property to cloudCertificationAuthority for deviceManagement operationId: deviceManagement.CreateCloudCertificationAuthority requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthority' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthority' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/cloudCertificationAuthority/{cloudCertificationAuthority-id}': description: Provides operations to manage the cloudCertificationAuthority property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.cloudCertificationAuthority summary: Get cloudCertificationAuthority from deviceManagement description: Collection of CloudCertificationAuthority records associated with account. operationId: deviceManagement.GetCloudCertificationAuthority parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthority' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.cloudCertificationAuthority summary: Update the navigation property cloudCertificationAuthority in deviceManagement operationId: deviceManagement.UpdateCloudCertificationAuthority requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthority' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthority' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.cloudCertificationAuthority summary: Delete navigation property cloudCertificationAuthority for deviceManagement operationId: deviceManagement.DeleteCloudCertificationAuthority parameters: - 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: cloudCertificationAuthority-id in: path description: The unique identifier of cloudCertificationAuthority required: true schema: type: string x-ms-docs-key-type: cloudCertificationAuthority '/deviceManagement/cloudCertificationAuthority/{cloudCertificationAuthority-id}/cloudCertificationAuthorityLeafCertificate': description: Provides operations to manage the cloudCertificationAuthorityLeafCertificate property of the microsoft.graph.cloudCertificationAuthority entity. get: tags: - deviceManagement.cloudCertificationAuthority summary: Get cloudCertificationAuthorityLeafCertificate from deviceManagement description: Required OData property to expose leaf certificate API. operationId: deviceManagement.cloudCertificationAuthority.ListCloudCertificationAuthorityLeafCertificate 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.cloudCertificationAuthorityLeafCertificateCollectionResponse' 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: cloudCertificationAuthority-id in: path description: The unique identifier of cloudCertificationAuthority required: true schema: type: string x-ms-docs-key-type: cloudCertificationAuthority '/deviceManagement/cloudCertificationAuthority/{cloudCertificationAuthority-id}/cloudCertificationAuthorityLeafCertificate/{cloudCertificationAuthorityLeafCertificate-id}': description: Provides operations to manage the cloudCertificationAuthorityLeafCertificate property of the microsoft.graph.cloudCertificationAuthority entity. get: tags: - deviceManagement.cloudCertificationAuthority summary: Get cloudCertificationAuthorityLeafCertificate from deviceManagement description: Required OData property to expose leaf certificate API. operationId: deviceManagement.cloudCertificationAuthority.GetCloudCertificationAuthorityLeafCertificate parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthorityLeafCertificate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: cloudCertificationAuthority-id in: path description: The unique identifier of cloudCertificationAuthority required: true schema: type: string x-ms-docs-key-type: cloudCertificationAuthority - name: cloudCertificationAuthorityLeafCertificate-id in: path description: The unique identifier of cloudCertificationAuthorityLeafCertificate required: true schema: type: string x-ms-docs-key-type: cloudCertificationAuthorityLeafCertificate '/deviceManagement/cloudCertificationAuthority/{cloudCertificationAuthority-id}/cloudCertificationAuthorityLeafCertificate/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.cloudCertificationAuthority summary: Get the number of the resource operationId: deviceManagement.cloudCertificationAuthority.cloudCertificationAuthorityLeafCertificate.GetCount-8f71 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: cloudCertificationAuthority-id in: path description: The unique identifier of cloudCertificationAuthority required: true schema: type: string x-ms-docs-key-type: cloudCertificationAuthority '/deviceManagement/cloudCertificationAuthority/{cloudCertificationAuthority-id}/changeCloudCertificationAuthorityStatus': description: Provides operations to call the changeCloudCertificationAuthorityStatus method. post: tags: - deviceManagement.cloudCertificationAuthority summary: Invoke action changeCloudCertificationAuthorityStatus operationId: deviceManagement.cloudCertificationAuthority.cloudCertificationAuthority.changeCloudCertificationAuthorityStatus requestBody: description: Action parameters content: application/json: schema: type: object properties: certificationAuthorityStatus: $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthorityStatus' certificationAuthorityVersion: maximum: 2147483647 minimum: -2147483648 type: number format: int32 required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthority' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: cloudCertificationAuthority-id in: path description: The unique identifier of cloudCertificationAuthority required: true schema: type: string x-ms-docs-key-type: cloudCertificationAuthority '/deviceManagement/cloudCertificationAuthority/{cloudCertificationAuthority-id}/getAllCloudCertificationAuthority': description: Provides operations to call the getAllCloudCertificationAuthority method. post: tags: - deviceManagement.cloudCertificationAuthority summary: Invoke action getAllCloudCertificationAuthority operationId: deviceManagement.cloudCertificationAuthority.cloudCertificationAuthority.getAllCloudCertificationAuthority responses: 2XX: description: Success content: application/json: schema: title: Collection of cloudCertificationAuthority type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthority' 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: cloudCertificationAuthority-id in: path description: The unique identifier of cloudCertificationAuthority required: true schema: type: string x-ms-docs-key-type: cloudCertificationAuthority '/deviceManagement/cloudCertificationAuthority/{cloudCertificationAuthority-id}/getAllCloudCertificationAuthorityLeafCertificates': description: Provides operations to call the getAllCloudCertificationAuthorityLeafCertificates method. post: tags: - deviceManagement.cloudCertificationAuthority summary: Invoke action getAllCloudCertificationAuthorityLeafCertificates operationId: deviceManagement.cloudCertificationAuthority.cloudCertificationAuthority.getAllCloudCertificationAuthorityLeafCertificates responses: 2XX: description: Success content: application/json: schema: title: Collection of cloudCertificationAuthorityLeafCertificate type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthorityLeafCertificate' 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: cloudCertificationAuthority-id in: path description: The unique identifier of cloudCertificationAuthority required: true schema: type: string x-ms-docs-key-type: cloudCertificationAuthority '/deviceManagement/cloudCertificationAuthority/{cloudCertificationAuthority-id}/getCloudCertificationAuthority': description: Provides operations to call the getCloudCertificationAuthority method. post: tags: - deviceManagement.cloudCertificationAuthority summary: Invoke action getCloudCertificationAuthority operationId: deviceManagement.cloudCertificationAuthority.cloudCertificationAuthority.getCloudCertificationAuthority responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthority' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: cloudCertificationAuthority-id in: path description: The unique identifier of cloudCertificationAuthority required: true schema: type: string x-ms-docs-key-type: cloudCertificationAuthority '/deviceManagement/cloudCertificationAuthority/{cloudCertificationAuthority-id}/patchCloudCertificationAuthority': description: Provides operations to call the patchCloudCertificationAuthority method. post: tags: - deviceManagement.cloudCertificationAuthority summary: Invoke action patchCloudCertificationAuthority operationId: deviceManagement.cloudCertificationAuthority.cloudCertificationAuthority.patchCloudCertificationAuthority responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthority' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: cloudCertificationAuthority-id in: path description: The unique identifier of cloudCertificationAuthority required: true schema: type: string x-ms-docs-key-type: cloudCertificationAuthority '/deviceManagement/cloudCertificationAuthority/{cloudCertificationAuthority-id}/postCloudCertificationAuthority': description: Provides operations to call the postCloudCertificationAuthority method. post: tags: - deviceManagement.cloudCertificationAuthority summary: Invoke action postCloudCertificationAuthority operationId: deviceManagement.cloudCertificationAuthority.cloudCertificationAuthority.postCloudCertificationAuthority responses: 2XX: description: Success content: application/json: schema: title: Collection of cloudCertificationAuthority type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthority' 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: cloudCertificationAuthority-id in: path description: The unique identifier of cloudCertificationAuthority required: true schema: type: string x-ms-docs-key-type: cloudCertificationAuthority '/deviceManagement/cloudCertificationAuthority/{cloudCertificationAuthority-id}/revokeCloudCertificationAuthorityCertificate': description: Provides operations to call the revokeCloudCertificationAuthorityCertificate method. post: tags: - deviceManagement.cloudCertificationAuthority summary: Invoke action revokeCloudCertificationAuthorityCertificate operationId: deviceManagement.cloudCertificationAuthority.cloudCertificationAuthority.revokeCloudCertificationAuthorityCertificate requestBody: description: Action parameters content: application/json: schema: type: object properties: certificationAuthorityVersion: maximum: 2147483647 minimum: -2147483648 type: number format: int32 required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthority' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: cloudCertificationAuthority-id in: path description: The unique identifier of cloudCertificationAuthority required: true schema: type: string x-ms-docs-key-type: cloudCertificationAuthority '/deviceManagement/cloudCertificationAuthority/{cloudCertificationAuthority-id}/revokeLeafCertificate': description: Provides operations to call the revokeLeafCertificate method. post: tags: - deviceManagement.cloudCertificationAuthority summary: Invoke action revokeLeafCertificate operationId: deviceManagement.cloudCertificationAuthority.cloudCertificationAuthority.revokeLeafCertificate requestBody: description: Action parameters content: application/json: schema: type: object properties: leafCertificateId: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthorityLeafCertificate' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: cloudCertificationAuthority-id in: path description: The unique identifier of cloudCertificationAuthority required: true schema: type: string x-ms-docs-key-type: cloudCertificationAuthority '/deviceManagement/cloudCertificationAuthority/{cloudCertificationAuthority-id}/revokeLeafCertificateBySerialNumber': description: Provides operations to call the revokeLeafCertificateBySerialNumber method. post: tags: - deviceManagement.cloudCertificationAuthority summary: Invoke action revokeLeafCertificateBySerialNumber operationId: deviceManagement.cloudCertificationAuthority.cloudCertificationAuthority.revokeLeafCertificateBySerialNumber requestBody: description: Action parameters content: application/json: schema: type: object properties: certificateSerialNumber: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthorityLeafCertificate' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: cloudCertificationAuthority-id in: path description: The unique identifier of cloudCertificationAuthority required: true schema: type: string x-ms-docs-key-type: cloudCertificationAuthority '/deviceManagement/cloudCertificationAuthority/{cloudCertificationAuthority-id}/searchCloudCertificationAuthorityLeafCertificateBySerialNumber': description: Provides operations to call the searchCloudCertificationAuthorityLeafCertificateBySerialNumber method. post: tags: - deviceManagement.cloudCertificationAuthority summary: Invoke action searchCloudCertificationAuthorityLeafCertificateBySerialNumber operationId: deviceManagement.cloudCertificationAuthority.cloudCertificationAuthority.searchCloudCertificationAuthorityLeafCertificateBySerialNumber requestBody: description: Action parameters content: application/json: schema: type: object properties: certificateSerialNumber: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthorityLeafCertificate' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: cloudCertificationAuthority-id in: path description: The unique identifier of cloudCertificationAuthority required: true schema: type: string x-ms-docs-key-type: cloudCertificationAuthority '/deviceManagement/cloudCertificationAuthority/{cloudCertificationAuthority-id}/uploadExternallySignedCertificationAuthorityCertificate': description: Provides operations to call the uploadExternallySignedCertificationAuthorityCertificate method. post: tags: - deviceManagement.cloudCertificationAuthority summary: Invoke action uploadExternallySignedCertificationAuthorityCertificate operationId: deviceManagement.cloudCertificationAuthority.cloudCertificationAuthority.uploadExternallySignedCertificationAuthorityCertificate requestBody: description: Action parameters content: application/json: schema: type: object properties: signedCertificate: type: string nullable: true trustChainCertificates: type: array items: $ref: '#/components/schemas/microsoft.graph.trustChainCertificate' certificationAuthorityVersion: maximum: 2147483647 minimum: -2147483648 type: number format: int32 required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthority' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: cloudCertificationAuthority-id in: path description: The unique identifier of cloudCertificationAuthority required: true schema: type: string x-ms-docs-key-type: cloudCertificationAuthority /deviceManagement/cloudCertificationAuthority/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.cloudCertificationAuthority summary: Get the number of the resource operationId: deviceManagement.cloudCertificationAuthority.GetCount-88a3 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' /deviceManagement/cloudCertificationAuthorityLeafCertificate: description: Provides operations to manage the cloudCertificationAuthorityLeafCertificate property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.cloudCertificationAuthorityLeafCertificate summary: Get cloudCertificationAuthorityLeafCertificate from deviceManagement description: Collection of CloudCertificationAuthorityLeafCertificate records associated with account. operationId: deviceManagement.ListCloudCertificationAuthorityLeafCertificate 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.cloudCertificationAuthorityLeafCertificateCollectionResponse' 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: - deviceManagement.cloudCertificationAuthorityLeafCertificate summary: Create new navigation property to cloudCertificationAuthorityLeafCertificate for deviceManagement operationId: deviceManagement.CreateCloudCertificationAuthorityLeafCertificate requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthorityLeafCertificate' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthorityLeafCertificate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/cloudCertificationAuthorityLeafCertificate/{cloudCertificationAuthorityLeafCertificate-id}': description: Provides operations to manage the cloudCertificationAuthorityLeafCertificate property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.cloudCertificationAuthorityLeafCertificate summary: Get cloudCertificationAuthorityLeafCertificate from deviceManagement description: Collection of CloudCertificationAuthorityLeafCertificate records associated with account. operationId: deviceManagement.GetCloudCertificationAuthorityLeafCertificate parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthorityLeafCertificate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.cloudCertificationAuthorityLeafCertificate summary: Update the navigation property cloudCertificationAuthorityLeafCertificate in deviceManagement operationId: deviceManagement.UpdateCloudCertificationAuthorityLeafCertificate requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthorityLeafCertificate' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cloudCertificationAuthorityLeafCertificate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.cloudCertificationAuthorityLeafCertificate summary: Delete navigation property cloudCertificationAuthorityLeafCertificate for deviceManagement operationId: deviceManagement.DeleteCloudCertificationAuthorityLeafCertificate parameters: - 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: cloudCertificationAuthorityLeafCertificate-id in: path description: The unique identifier of cloudCertificationAuthorityLeafCertificate required: true schema: type: string x-ms-docs-key-type: cloudCertificationAuthorityLeafCertificate /deviceManagement/cloudCertificationAuthorityLeafCertificate/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.cloudCertificationAuthorityLeafCertificate summary: Get the number of the resource operationId: deviceManagement.cloudCertificationAuthorityLeafCertificate.GetCount-5d16 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' /deviceManagement/cloudPCConnectivityIssues: description: Provides operations to manage the cloudPCConnectivityIssues property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.cloudPCConnectivityIssue summary: Get cloudPCConnectivityIssues from deviceManagement description: The list of CloudPC Connectivity Issue. operationId: deviceManagement.ListCloudPCConnectivityIssues 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.cloudPCConnectivityIssueCollectionResponse' 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: - deviceManagement.cloudPCConnectivityIssue summary: Create new navigation property to cloudPCConnectivityIssues for deviceManagement operationId: deviceManagement.CreateCloudPCConnectivityIssues requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cloudPCConnectivityIssue' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cloudPCConnectivityIssue' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/cloudPCConnectivityIssues/{cloudPCConnectivityIssue-id}': description: Provides operations to manage the cloudPCConnectivityIssues property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.cloudPCConnectivityIssue summary: Get cloudPCConnectivityIssues from deviceManagement description: The list of CloudPC Connectivity Issue. operationId: deviceManagement.GetCloudPCConnectivityIssues parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cloudPCConnectivityIssue' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.cloudPCConnectivityIssue summary: Update the navigation property cloudPCConnectivityIssues in deviceManagement operationId: deviceManagement.UpdateCloudPCConnectivityIssues requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cloudPCConnectivityIssue' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.cloudPCConnectivityIssue' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.cloudPCConnectivityIssue summary: Delete navigation property cloudPCConnectivityIssues for deviceManagement operationId: deviceManagement.DeleteCloudPCConnectivityIssues parameters: - 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: cloudPCConnectivityIssue-id in: path description: The unique identifier of cloudPCConnectivityIssue required: true schema: type: string x-ms-docs-key-type: cloudPCConnectivityIssue /deviceManagement/cloudPCConnectivityIssues/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.cloudPCConnectivityIssue summary: Get the number of the resource operationId: deviceManagement.cloudPCConnectivityIssues.GetCount-1f72 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' /deviceManagement/comanagedDevices: description: Provides operations to manage the comanagedDevices property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.managedDevice summary: Get comanagedDevices from deviceManagement description: The list of co-managed devices report operationId: deviceManagement.ListComanagedDevices 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.managedDeviceCollectionResponse' 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: - deviceManagement.managedDevice summary: Create new navigation property to comanagedDevices for deviceManagement operationId: deviceManagement.CreateComanagedDevices requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDevice' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDevice' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/comanagedDevices/{managedDevice-id}': description: Provides operations to manage the comanagedDevices property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.managedDevice summary: Get comanagedDevices from deviceManagement description: The list of co-managed devices report operationId: deviceManagement.GetComanagedDevices parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDevice' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.managedDevice summary: Update the navigation property comanagedDevices in deviceManagement operationId: deviceManagement.UpdateComanagedDevices requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDevice' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDevice' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.managedDevice summary: Delete navigation property comanagedDevices for deviceManagement operationId: deviceManagement.DeleteComanagedDevices parameters: - 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice '/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails': description: Provides operations to manage the assignmentFilterEvaluationStatusDetails property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get assignmentFilterEvaluationStatusDetails from deviceManagement description: Managed device mobile app configuration states for this device. operationId: deviceManagement.comanagedDevices.ListAssignmentFilterEvaluationStatusDetails 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.assignmentFilterEvaluationStatusDetailsCollectionResponse' 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: - deviceManagement.managedDevice summary: Create new navigation property to assignmentFilterEvaluationStatusDetails for deviceManagement operationId: deviceManagement.comanagedDevices.CreateAssignmentFilterEvaluationStatusDetails requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails' '/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}': description: Provides operations to manage the assignmentFilterEvaluationStatusDetails property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get assignmentFilterEvaluationStatusDetails from deviceManagement description: Managed device mobile app configuration states for this device. operationId: deviceManagement.comanagedDevices.GetAssignmentFilterEvaluationStatusDetails parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.managedDevice summary: Update the navigation property assignmentFilterEvaluationStatusDetails in deviceManagement operationId: deviceManagement.comanagedDevices.UpdateAssignmentFilterEvaluationStatusDetails requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.managedDevice summary: Delete navigation property assignmentFilterEvaluationStatusDetails for deviceManagement operationId: deviceManagement.comanagedDevices.DeleteAssignmentFilterEvaluationStatusDetails parameters: - 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice - name: assignmentFilterEvaluationStatusDetails-id in: path description: The unique identifier of assignmentFilterEvaluationStatusDetails required: true schema: type: string x-ms-docs-key-type: assignmentFilterEvaluationStatusDetails x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}' '/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.managedDevice summary: Get the number of the resource operationId: deviceManagement.comanagedDevices.assignmentFilterEvaluationStatusDetails.GetCount-187a 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice '/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps': description: Provides operations to manage the detectedApps property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get detectedApps from deviceManagement description: All applications currently installed on the device operationId: deviceManagement.comanagedDevices.ListDetectedApps 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.detectedAppCollectionResponse' 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/detectedApps' '/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps/{detectedApp-id}': description: Provides operations to manage the detectedApps property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get detectedApps from deviceManagement description: All applications currently installed on the device operationId: deviceManagement.comanagedDevices.GetDetectedApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.detectedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice - name: detectedApp-id in: path description: The unique identifier of detectedApp required: true schema: type: string x-ms-docs-key-type: detectedApp x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/detectedApps/{detectedApp-id}' '/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.managedDevice summary: Get the number of the resource operationId: deviceManagement.comanagedDevices.detectedApps.GetCount-1d36 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice '/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCategory': description: Provides operations to manage the deviceCategory property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get deviceCategory from deviceManagement description: Device category operationId: deviceManagement.comanagedDevices.GetDeviceCategory parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.managedDevice summary: Update the navigation property deviceCategory in deviceManagement operationId: deviceManagement.comanagedDevices.UpdateDeviceCategory requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCategory' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.managedDevice summary: Delete navigation property deviceCategory for deviceManagement operationId: deviceManagement.comanagedDevices.DeleteDeviceCategory parameters: - 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory' '/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCategory/$ref': description: Provides operations to manage the collection of deviceManagement entities. get: tags: - deviceManagement.managedDevice summary: Get ref of deviceCategory from deviceManagement description: Device category operationId: deviceManagement.comanagedDevices.GetRefDeviceCategory responses: 2XX: description: Retrieved navigation property link content: application/json: schema: type: string 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation put: tags: - deviceManagement.managedDevice summary: Update the ref of navigation property deviceCategory in deviceManagement operationId: deviceManagement.comanagedDevices.UpdateRefDeviceCategory requestBody: $ref: '#/components/requestBodies/refPutBody' responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.managedDevice summary: Delete ref of navigation property deviceCategory for deviceManagement operationId: deviceManagement.comanagedDevices.DeleteRefDeviceCategory parameters: - 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice '/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates': description: Provides operations to manage the deviceCompliancePolicyStates property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get deviceCompliancePolicyStates from deviceManagement description: Device compliance policy states for this device. operationId: deviceManagement.comanagedDevices.ListDeviceCompliancePolicyStates 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.deviceCompliancePolicyStateCollectionResponse' 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: - deviceManagement.managedDevice summary: Create new navigation property to deviceCompliancePolicyStates for deviceManagement operationId: deviceManagement.comanagedDevices.CreateDeviceCompliancePolicyStates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates' '/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}': description: Provides operations to manage the deviceCompliancePolicyStates property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get deviceCompliancePolicyStates from deviceManagement description: Device compliance policy states for this device. operationId: deviceManagement.comanagedDevices.GetDeviceCompliancePolicyStates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.managedDevice summary: Update the navigation property deviceCompliancePolicyStates in deviceManagement operationId: deviceManagement.comanagedDevices.UpdateDeviceCompliancePolicyStates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.managedDevice summary: Delete navigation property deviceCompliancePolicyStates for deviceManagement operationId: deviceManagement.comanagedDevices.DeleteDeviceCompliancePolicyStates parameters: - 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice - name: deviceCompliancePolicyState-id in: path description: The unique identifier of deviceCompliancePolicyState required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicyState x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}' '/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.managedDevice summary: Get the number of the resource operationId: deviceManagement.comanagedDevices.deviceCompliancePolicyStates.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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice '/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates': description: Provides operations to manage the deviceConfigurationStates property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get deviceConfigurationStates from deviceManagement description: Device configuration states for this device. operationId: deviceManagement.comanagedDevices.ListDeviceConfigurationStates 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.deviceConfigurationStateCollectionResponse' 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: - deviceManagement.managedDevice summary: Create new navigation property to deviceConfigurationStates for deviceManagement operationId: deviceManagement.comanagedDevices.CreateDeviceConfigurationStates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationState' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates' '/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}': description: Provides operations to manage the deviceConfigurationStates property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get deviceConfigurationStates from deviceManagement description: Device configuration states for this device. operationId: deviceManagement.comanagedDevices.GetDeviceConfigurationStates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.managedDevice summary: Update the navigation property deviceConfigurationStates in deviceManagement operationId: deviceManagement.comanagedDevices.UpdateDeviceConfigurationStates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationState' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.managedDevice summary: Delete navigation property deviceConfigurationStates for deviceManagement operationId: deviceManagement.comanagedDevices.DeleteDeviceConfigurationStates parameters: - 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice - name: deviceConfigurationState-id in: path description: The unique identifier of deviceConfigurationState required: true schema: type: string x-ms-docs-key-type: deviceConfigurationState x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}' '/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.managedDevice summary: Get the number of the resource operationId: deviceManagement.comanagedDevices.deviceConfigurationStates.GetCount-b226 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice '/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates': description: Provides operations to manage the deviceHealthScriptStates property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get deviceHealthScriptStates from deviceManagement description: Results of device health scripts that ran for this device. Default is empty list. This property is read-only. operationId: deviceManagement.comanagedDevices.ListDeviceHealthScriptStates 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.deviceHealthScriptPolicyStateCollectionResponse' 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: - deviceManagement.managedDevice summary: Create new navigation property to deviceHealthScriptStates for deviceManagement operationId: deviceManagement.comanagedDevices.CreateDeviceHealthScriptStates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceHealthScriptPolicyState' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceHealthScriptPolicyState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates' '/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates/id=''{id}'',policyId=''{policyId}'',deviceId=''{deviceId}''': description: Provides operations to manage the deviceHealthScriptStates property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get deviceHealthScriptStates from deviceManagement description: Results of device health scripts that ran for this device. Default is empty list. This property is read-only. operationId: deviceManagement.comanagedDevices.GetDeviceHealthScriptStates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceHealthScriptPolicyState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.managedDevice summary: Update the navigation property deviceHealthScriptStates in deviceManagement operationId: deviceManagement.comanagedDevices.UpdateDeviceHealthScriptStates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceHealthScriptPolicyState' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceHealthScriptPolicyState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.managedDevice summary: Delete navigation property deviceHealthScriptStates for deviceManagement operationId: deviceManagement.comanagedDevices.DeleteDeviceHealthScriptStates parameters: - 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice - name: id in: path description: Property in multi-part unique identifier of deviceHealthScriptPolicyState required: true schema: type: string x-ms-docs-key-type: deviceHealthScriptPolicyState - name: policyId in: path description: Property in multi-part unique identifier of deviceHealthScriptPolicyState required: true schema: type: string x-ms-docs-key-type: deviceHealthScriptPolicyState - name: deviceId in: path description: Property in multi-part unique identifier of deviceHealthScriptPolicyState required: true schema: type: string x-ms-docs-key-type: deviceHealthScriptPolicyState x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates/id=''{id}'',policyId=''{policyId}'',deviceId=''{deviceId}''' '/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.managedDevice summary: Get the number of the resource operationId: deviceManagement.comanagedDevices.deviceHealthScriptStates.GetCount-537b 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice '/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests': description: Provides operations to manage the logCollectionRequests property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get logCollectionRequests from deviceManagement description: List of log collection requests operationId: deviceManagement.comanagedDevices.ListLogCollectionRequests 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.deviceLogCollectionResponseCollectionResponse' 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: - deviceManagement.managedDevice summary: Create new navigation property to logCollectionRequests for deviceManagement operationId: deviceManagement.comanagedDevices.CreateLogCollectionRequests requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceLogCollectionResponse' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceLogCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests' '/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}': description: Provides operations to manage the logCollectionRequests property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get logCollectionRequests from deviceManagement description: List of log collection requests operationId: deviceManagement.comanagedDevices.GetLogCollectionRequests parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceLogCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.managedDevice summary: Update the navigation property logCollectionRequests in deviceManagement operationId: deviceManagement.comanagedDevices.UpdateLogCollectionRequests requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceLogCollectionResponse' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceLogCollectionResponse' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.managedDevice summary: Delete navigation property logCollectionRequests for deviceManagement operationId: deviceManagement.comanagedDevices.DeleteLogCollectionRequests parameters: - 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice - name: deviceLogCollectionResponse-id in: path description: The unique identifier of deviceLogCollectionResponse required: true schema: type: string x-ms-docs-key-type: deviceLogCollectionResponse x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}' '/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/createDownloadUrl': description: Provides operations to call the createDownloadUrl method. post: tags: - deviceManagement.managedDevice summary: Invoke action createDownloadUrl operationId: deviceManagement.comanagedDevices.managedDevice.logCollectionRequests.deviceLogCollectionResponse.createDownloadUrl responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice - name: deviceLogCollectionResponse-id in: path description: The unique identifier of deviceLogCollectionResponse required: true schema: type: string x-ms-docs-key-type: deviceLogCollectionResponse x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/createDownloadUrl' - '/deviceManagement/microsoftTunnelServerLogCollectionResponses/{microsoftTunnelServerLogCollectionResponse-id}/createDownloadUrl' - '/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}/createDownloadUrl' '/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.managedDevice summary: Get the number of the resource operationId: deviceManagement.comanagedDevices.logCollectionRequests.GetCount-278d 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice '/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates': description: Provides operations to manage the managedDeviceMobileAppConfigurationStates property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get managedDeviceMobileAppConfigurationStates from deviceManagement description: Managed device mobile app configuration states for this device. operationId: deviceManagement.comanagedDevices.ListManagedDeviceMobileAppConfigurationStates 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.managedDeviceMobileAppConfigurationStateCollectionResponse' 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: - deviceManagement.managedDevice summary: Create new navigation property to managedDeviceMobileAppConfigurationStates for deviceManagement operationId: deviceManagement.comanagedDevices.CreateManagedDeviceMobileAppConfigurationStates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationState' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates' '/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}': description: Provides operations to manage the managedDeviceMobileAppConfigurationStates property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get managedDeviceMobileAppConfigurationStates from deviceManagement description: Managed device mobile app configuration states for this device. operationId: deviceManagement.comanagedDevices.GetManagedDeviceMobileAppConfigurationStates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.managedDevice summary: Update the navigation property managedDeviceMobileAppConfigurationStates in deviceManagement operationId: deviceManagement.comanagedDevices.UpdateManagedDeviceMobileAppConfigurationStates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationState' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDeviceMobileAppConfigurationState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.managedDevice summary: Delete navigation property managedDeviceMobileAppConfigurationStates for deviceManagement operationId: deviceManagement.comanagedDevices.DeleteManagedDeviceMobileAppConfigurationStates parameters: - 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice - name: managedDeviceMobileAppConfigurationState-id in: path description: The unique identifier of managedDeviceMobileAppConfigurationState required: true schema: type: string x-ms-docs-key-type: managedDeviceMobileAppConfigurationState x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}' '/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.managedDevice summary: Get the number of the resource operationId: deviceManagement.comanagedDevices.managedDeviceMobileAppConfigurationStates.GetCount-7a3d 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice '/deviceManagement/comanagedDevices/{managedDevice-id}/activateDeviceEsim': description: Provides operations to call the activateDeviceEsim method. post: tags: - deviceManagement.managedDevice summary: Invoke action activateDeviceEsim description: Activate eSIM on the device. operationId: deviceManagement.comanagedDevices.managedDevice.activateDeviceEsim requestBody: description: Action parameters content: application/json: schema: type: object properties: carrierUrl: 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/activateDeviceEsim' '/deviceManagement/comanagedDevices/{managedDevice-id}/bypassActivationLock': description: Provides operations to call the bypassActivationLock method. post: tags: - deviceManagement.managedDevice summary: Invoke action bypassActivationLock description: Bypass activation lock operationId: deviceManagement.comanagedDevices.managedDevice.bypassActivationLock responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/bypassActivationLock' '/deviceManagement/comanagedDevices/{managedDevice-id}/changeAssignments': description: Provides operations to call the changeAssignments method. post: tags: - deviceManagement.managedDevice summary: Invoke action changeAssignments operationId: deviceManagement.comanagedDevices.managedDevice.changeAssignments requestBody: description: Action parameters content: application/json: schema: type: object properties: deviceAssignmentItems: type: array items: $ref: '#/components/schemas/microsoft.graph.deviceAssignmentItem' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/changeAssignments' '/deviceManagement/comanagedDevices/{managedDevice-id}/cleanWindowsDevice': description: Provides operations to call the cleanWindowsDevice method. post: tags: - deviceManagement.managedDevice summary: Invoke action cleanWindowsDevice description: Clean Windows device operationId: deviceManagement.comanagedDevices.managedDevice.cleanWindowsDevice requestBody: description: Action parameters content: application/json: schema: type: object properties: keepUserData: type: boolean default: false required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/cleanWindowsDevice' '/deviceManagement/comanagedDevices/{managedDevice-id}/createDeviceLogCollectionRequest': description: Provides operations to call the createDeviceLogCollectionRequest method. post: tags: - deviceManagement.managedDevice summary: Invoke action createDeviceLogCollectionRequest operationId: deviceManagement.comanagedDevices.managedDevice.createDeviceLogCollectionRequest requestBody: description: Action parameters content: application/json: schema: type: object properties: templateType: anyOf: - $ref: '#/components/schemas/microsoft.graph.deviceLogCollectionRequest' - type: object nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.deviceLogCollectionResponse' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/createDeviceLogCollectionRequest' '/deviceManagement/comanagedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice': description: Provides operations to call the deleteUserFromSharedAppleDevice method. post: tags: - deviceManagement.managedDevice summary: Invoke action deleteUserFromSharedAppleDevice description: Delete user from shared Apple device operationId: deviceManagement.comanagedDevices.managedDevice.deleteUserFromSharedAppleDevice requestBody: description: Action parameters content: application/json: schema: type: object properties: userPrincipalName: 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice' '/deviceManagement/comanagedDevices/{managedDevice-id}/deprovision': description: Provides operations to call the deprovision method. post: tags: - deviceManagement.managedDevice summary: Invoke action deprovision operationId: deviceManagement.comanagedDevices.managedDevice.deprovision requestBody: description: Action parameters content: application/json: schema: type: object properties: deprovisionReason: type: string required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/deprovision' '/deviceManagement/comanagedDevices/{managedDevice-id}/disable': description: Provides operations to call the disable method. post: tags: - deviceManagement.managedDevice summary: Invoke action disable operationId: deviceManagement.comanagedDevices.managedDevice.disable responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/disable' '/deviceManagement/comanagedDevices/{managedDevice-id}/disableLostMode': description: Provides operations to call the disableLostMode method. post: tags: - deviceManagement.managedDevice summary: Invoke action disableLostMode description: Disable lost mode operationId: deviceManagement.comanagedDevices.managedDevice.disableLostMode responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/disableLostMode' '/deviceManagement/comanagedDevices/{managedDevice-id}/enableLostMode': description: Provides operations to call the enableLostMode method. post: tags: - deviceManagement.managedDevice summary: Invoke action enableLostMode description: Enable lost mode operationId: deviceManagement.comanagedDevices.managedDevice.enableLostMode requestBody: description: Action parameters content: application/json: schema: type: object properties: message: type: string nullable: true phoneNumber: type: string nullable: true footer: 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/enableLostMode' '/deviceManagement/comanagedDevices/{managedDevice-id}/enrollNowAction': description: Provides operations to call the enrollNowAction method. post: tags: - deviceManagement.managedDevice summary: Invoke action enrollNowAction description: Trigger comanagement enrollment action on ConfigurationManager client operationId: deviceManagement.comanagedDevices.managedDevice.enrollNowAction responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/enrollNowAction' '/deviceManagement/comanagedDevices/{managedDevice-id}/getFileVaultKey()': description: Provides operations to call the getFileVaultKey method. get: tags: - deviceManagement.managedDevice summary: Invoke function getFileVaultKey operationId: deviceManagement.comanagedDevices.managedDevice.getFileVaultKey responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/getFileVaultKey()' '/deviceManagement/comanagedDevices/{managedDevice-id}/getNonCompliantSettings()': description: Provides operations to call the getNonCompliantSettings method. get: tags: - deviceManagement.managedDevice summary: Invoke function getNonCompliantSettings operationId: deviceManagement.comanagedDevices.managedDevice.getNonCompliantSettings 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.deviceCompliancePolicySettingState' 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/getNonCompliantSettings()' '/deviceManagement/comanagedDevices/{managedDevice-id}/initiateDeviceAttestation': description: Provides operations to call the initiateDeviceAttestation method. post: tags: - deviceManagement.managedDevice summary: Invoke action initiateDeviceAttestation description: Perform Device Attestation operationId: deviceManagement.comanagedDevices.managedDevice.initiateDeviceAttestation responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/initiateDeviceAttestation' '/deviceManagement/comanagedDevices/{managedDevice-id}/initiateMobileDeviceManagementKeyRecovery': description: Provides operations to call the initiateMobileDeviceManagementKeyRecovery method. post: tags: - deviceManagement.managedDevice summary: Invoke action initiateMobileDeviceManagementKeyRecovery description: Perform MDM key recovery and TPM attestation operationId: deviceManagement.comanagedDevices.managedDevice.initiateMobileDeviceManagementKeyRecovery responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/initiateMobileDeviceManagementKeyRecovery' '/deviceManagement/comanagedDevices/{managedDevice-id}/initiateOnDemandProactiveRemediation': description: Provides operations to call the initiateOnDemandProactiveRemediation method. post: tags: - deviceManagement.managedDevice summary: Invoke action initiateOnDemandProactiveRemediation description: Perform On Demand Proactive Remediation operationId: deviceManagement.comanagedDevices.managedDevice.initiateOnDemandProactiveRemediation requestBody: description: Action parameters content: application/json: schema: type: object properties: scriptPolicyId: type: string required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/initiateOnDemandProactiveRemediation' '/deviceManagement/comanagedDevices/{managedDevice-id}/locateDevice': description: Provides operations to call the locateDevice method. post: tags: - deviceManagement.managedDevice summary: Invoke action locateDevice description: Locate a device operationId: deviceManagement.comanagedDevices.managedDevice.locateDevice responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/locateDevice' '/deviceManagement/comanagedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser': description: Provides operations to call the logoutSharedAppleDeviceActiveUser method. post: tags: - deviceManagement.managedDevice summary: Invoke action logoutSharedAppleDeviceActiveUser description: Logout shared Apple device active user operationId: deviceManagement.comanagedDevices.managedDevice.logoutSharedAppleDeviceActiveUser responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser' '/deviceManagement/comanagedDevices/{managedDevice-id}/overrideComplianceState': description: Provides operations to call the overrideComplianceState method. post: tags: - deviceManagement.managedDevice summary: Invoke action overrideComplianceState operationId: deviceManagement.comanagedDevices.managedDevice.overrideComplianceState requestBody: description: Action parameters content: application/json: schema: type: object properties: complianceState: $ref: '#/components/schemas/microsoft.graph.administratorConfiguredDeviceComplianceState' remediationUrl: 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/overrideComplianceState' '/deviceManagement/comanagedDevices/{managedDevice-id}/pauseConfigurationRefresh': description: Provides operations to call the pauseConfigurationRefresh method. post: tags: - deviceManagement.managedDevice summary: Invoke action pauseConfigurationRefresh description: Initiates a command to pause config refresh for the device. operationId: deviceManagement.comanagedDevices.managedDevice.pauseConfigurationRefresh requestBody: description: Action parameters content: application/json: schema: type: object properties: pauseTimePeriodInMinutes: maximum: 2147483647 minimum: -2147483648 type: number format: int32 required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/pauseConfigurationRefresh' '/deviceManagement/comanagedDevices/{managedDevice-id}/playLostModeSound': description: Provides operations to call the playLostModeSound method. post: tags: - deviceManagement.managedDevice summary: Invoke action playLostModeSound description: Play lost mode sound operationId: deviceManagement.comanagedDevices.managedDevice.playLostModeSound requestBody: description: Action parameters content: application/json: schema: type: object properties: durationInMinutes: 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/playLostModeSound' '/deviceManagement/comanagedDevices/{managedDevice-id}/rebootNow': description: Provides operations to call the rebootNow method. post: tags: - deviceManagement.managedDevice summary: Invoke action rebootNow description: Reboot device operationId: deviceManagement.comanagedDevices.managedDevice.rebootNow responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/rebootNow' '/deviceManagement/comanagedDevices/{managedDevice-id}/recoverPasscode': description: Provides operations to call the recoverPasscode method. post: tags: - deviceManagement.managedDevice summary: Invoke action recoverPasscode description: Recover passcode operationId: deviceManagement.comanagedDevices.managedDevice.recoverPasscode responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/recoverPasscode' '/deviceManagement/comanagedDevices/{managedDevice-id}/reenable': description: Provides operations to call the reenable method. post: tags: - deviceManagement.managedDevice summary: Invoke action reenable operationId: deviceManagement.comanagedDevices.managedDevice.reenable responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/reenable' '/deviceManagement/comanagedDevices/{managedDevice-id}/remoteLock': description: Provides operations to call the remoteLock method. post: tags: - deviceManagement.managedDevice summary: Invoke action remoteLock description: Remote lock operationId: deviceManagement.comanagedDevices.managedDevice.remoteLock responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/remoteLock' '/deviceManagement/comanagedDevices/{managedDevice-id}/removeDeviceFirmwareConfigurationInterfaceManagement': description: Provides operations to call the removeDeviceFirmwareConfigurationInterfaceManagement method. post: tags: - deviceManagement.managedDevice summary: Invoke action removeDeviceFirmwareConfigurationInterfaceManagement description: Remove device from Device Firmware Configuration Interface management operationId: deviceManagement.comanagedDevices.managedDevice.removeDeviceFirmwareConfigurationInterfaceManagement responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/removeDeviceFirmwareConfigurationInterfaceManagement' '/deviceManagement/comanagedDevices/{managedDevice-id}/requestRemoteAssistance': description: Provides operations to call the requestRemoteAssistance method. post: tags: - deviceManagement.managedDevice summary: Invoke action requestRemoteAssistance description: Request remote assistance operationId: deviceManagement.comanagedDevices.managedDevice.requestRemoteAssistance responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/requestRemoteAssistance' '/deviceManagement/comanagedDevices/{managedDevice-id}/resetPasscode': description: Provides operations to call the resetPasscode method. post: tags: - deviceManagement.managedDevice summary: Invoke action resetPasscode description: Reset passcode operationId: deviceManagement.comanagedDevices.managedDevice.resetPasscode responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/resetPasscode' '/deviceManagement/comanagedDevices/{managedDevice-id}/retire': description: Provides operations to call the retire method. post: tags: - deviceManagement.managedDevice summary: Invoke action retire description: Retire a device operationId: deviceManagement.comanagedDevices.managedDevice.retire responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/retire' '/deviceManagement/comanagedDevices/{managedDevice-id}/revokeAppleVppLicenses': description: Provides operations to call the revokeAppleVppLicenses method. post: tags: - deviceManagement.managedDevice summary: Invoke action revokeAppleVppLicenses description: Revoke all Apple Vpp licenses for a device operationId: deviceManagement.comanagedDevices.managedDevice.revokeAppleVppLicenses responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/revokeAppleVppLicenses' '/deviceManagement/comanagedDevices/{managedDevice-id}/rotateBitLockerKeys': description: Provides operations to call the rotateBitLockerKeys method. post: tags: - deviceManagement.managedDevice summary: Invoke action rotateBitLockerKeys description: Rotate BitLockerKeys operationId: deviceManagement.comanagedDevices.managedDevice.rotateBitLockerKeys responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/rotateBitLockerKeys' '/deviceManagement/comanagedDevices/{managedDevice-id}/rotateFileVaultKey': description: Provides operations to call the rotateFileVaultKey method. post: tags: - deviceManagement.managedDevice summary: Invoke action rotateFileVaultKey operationId: deviceManagement.comanagedDevices.managedDevice.rotateFileVaultKey responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/rotateFileVaultKey' '/deviceManagement/comanagedDevices/{managedDevice-id}/rotateLocalAdminPassword': description: Provides operations to call the rotateLocalAdminPassword method. post: tags: - deviceManagement.managedDevice summary: Invoke action rotateLocalAdminPassword description: Initiates a manual rotation for the local admin password on the device operationId: deviceManagement.comanagedDevices.managedDevice.rotateLocalAdminPassword responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/rotateLocalAdminPassword' '/deviceManagement/comanagedDevices/{managedDevice-id}/sendCustomNotificationToCompanyPortal': description: Provides operations to call the sendCustomNotificationToCompanyPortal method. post: tags: - deviceManagement.managedDevice summary: Invoke action sendCustomNotificationToCompanyPortal operationId: deviceManagement.comanagedDevices.managedDevice.sendCustomNotificationToCompanyPortal requestBody: description: Action parameters content: application/json: schema: type: object properties: notificationTitle: type: string notificationBody: type: string required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/sendCustomNotificationToCompanyPortal' - /deviceManagement/sendCustomNotificationToCompanyPortal '/deviceManagement/comanagedDevices/{managedDevice-id}/setDeviceName': description: Provides operations to call the setDeviceName method. post: tags: - deviceManagement.managedDevice summary: Invoke action setDeviceName description: Set device name of the device. operationId: deviceManagement.comanagedDevices.managedDevice.setDeviceName requestBody: description: Action parameters content: application/json: schema: type: object properties: deviceName: 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/setDeviceName' '/deviceManagement/comanagedDevices/{managedDevice-id}/shutDown': description: Provides operations to call the shutDown method. post: tags: - deviceManagement.managedDevice summary: Invoke action shutDown description: Shut down device operationId: deviceManagement.comanagedDevices.managedDevice.shutDown responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/shutDown' '/deviceManagement/comanagedDevices/{managedDevice-id}/syncDevice': description: Provides operations to call the syncDevice method. post: tags: - deviceManagement.managedDevice summary: Invoke action syncDevice operationId: deviceManagement.comanagedDevices.managedDevice.syncDevice responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/syncDevice' '/deviceManagement/comanagedDevices/{managedDevice-id}/triggerConfigurationManagerAction': description: Provides operations to call the triggerConfigurationManagerAction method. post: tags: - deviceManagement.managedDevice summary: Invoke action triggerConfigurationManagerAction description: Trigger action on ConfigurationManager client operationId: deviceManagement.comanagedDevices.managedDevice.triggerConfigurationManagerAction requestBody: description: Action parameters content: application/json: schema: type: object properties: configurationManagerAction: $ref: '#/components/schemas/microsoft.graph.configurationManagerAction' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/triggerConfigurationManagerAction' '/deviceManagement/comanagedDevices/{managedDevice-id}/updateWindowsDeviceAccount': description: Provides operations to call the updateWindowsDeviceAccount method. post: tags: - deviceManagement.managedDevice summary: Invoke action updateWindowsDeviceAccount operationId: deviceManagement.comanagedDevices.managedDevice.updateWindowsDeviceAccount requestBody: description: Action parameters content: application/json: schema: type: object properties: updateWindowsDeviceAccountActionParameter: anyOf: - $ref: '#/components/schemas/microsoft.graph.updateWindowsDeviceAccountActionParameter' - 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/updateWindowsDeviceAccount' '/deviceManagement/comanagedDevices/{managedDevice-id}/windowsDefenderScan': description: Provides operations to call the windowsDefenderScan method. post: tags: - deviceManagement.managedDevice summary: Invoke action windowsDefenderScan operationId: deviceManagement.comanagedDevices.managedDevice.windowsDefenderScan requestBody: description: Action parameters content: application/json: schema: type: object properties: quickScan: type: boolean default: false required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/windowsDefenderScan' '/deviceManagement/comanagedDevices/{managedDevice-id}/windowsDefenderUpdateSignatures': description: Provides operations to call the windowsDefenderUpdateSignatures method. post: tags: - deviceManagement.managedDevice summary: Invoke action windowsDefenderUpdateSignatures operationId: deviceManagement.comanagedDevices.managedDevice.windowsDefenderUpdateSignatures responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/windowsDefenderUpdateSignatures' '/deviceManagement/comanagedDevices/{managedDevice-id}/wipe': description: Provides operations to call the wipe method. post: tags: - deviceManagement.managedDevice summary: Invoke action wipe description: Wipe a device operationId: deviceManagement.comanagedDevices.managedDevice.wipe requestBody: description: Action parameters content: application/json: schema: type: object properties: keepEnrollmentData: type: boolean default: false nullable: true keepUserData: type: boolean default: false nullable: true macOsUnlockCode: type: string nullable: true obliterationBehavior: anyOf: - $ref: '#/components/schemas/microsoft.graph.obliterationBehavior' - type: object nullable: true persistEsimDataPlan: type: boolean default: false nullable: true useProtectedWipe: 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/wipe' '/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates': description: Provides operations to manage the securityBaselineStates property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get securityBaselineStates from deviceManagement description: Security baseline states for this device. operationId: deviceManagement.comanagedDevices.ListSecurityBaselineStates 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.securityBaselineStateCollectionResponse' 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: - deviceManagement.managedDevice summary: Create new navigation property to securityBaselineStates for deviceManagement operationId: deviceManagement.comanagedDevices.CreateSecurityBaselineStates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.securityBaselineState' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.securityBaselineState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates' '/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}': description: Provides operations to manage the securityBaselineStates property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get securityBaselineStates from deviceManagement description: Security baseline states for this device. operationId: deviceManagement.comanagedDevices.GetSecurityBaselineStates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.securityBaselineState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.managedDevice summary: Update the navigation property securityBaselineStates in deviceManagement operationId: deviceManagement.comanagedDevices.UpdateSecurityBaselineStates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.securityBaselineState' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.securityBaselineState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.managedDevice summary: Delete navigation property securityBaselineStates for deviceManagement operationId: deviceManagement.comanagedDevices.DeleteSecurityBaselineStates parameters: - 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice - name: securityBaselineState-id in: path description: The unique identifier of securityBaselineState required: true schema: type: string x-ms-docs-key-type: securityBaselineState x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}' '/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates': description: Provides operations to manage the settingStates property of the microsoft.graph.securityBaselineState entity. get: tags: - deviceManagement.managedDevice summary: Get settingStates from deviceManagement description: The security baseline state for different settings for a device operationId: deviceManagement.comanagedDevices.securityBaselineStates.ListSettingStates 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.securityBaselineSettingStateCollectionResponse' 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: - deviceManagement.managedDevice summary: Create new navigation property to settingStates for deviceManagement operationId: deviceManagement.comanagedDevices.securityBaselineStates.CreateSettingStates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.securityBaselineSettingState' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.securityBaselineSettingState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice - name: securityBaselineState-id in: path description: The unique identifier of securityBaselineState required: true schema: type: string x-ms-docs-key-type: securityBaselineState x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates' '/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}': description: Provides operations to manage the settingStates property of the microsoft.graph.securityBaselineState entity. get: tags: - deviceManagement.managedDevice summary: Get settingStates from deviceManagement description: The security baseline state for different settings for a device operationId: deviceManagement.comanagedDevices.securityBaselineStates.GetSettingStates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.securityBaselineSettingState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.managedDevice summary: Update the navigation property settingStates in deviceManagement operationId: deviceManagement.comanagedDevices.securityBaselineStates.UpdateSettingStates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.securityBaselineSettingState' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.securityBaselineSettingState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.managedDevice summary: Delete navigation property settingStates for deviceManagement operationId: deviceManagement.comanagedDevices.securityBaselineStates.DeleteSettingStates parameters: - 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice - name: securityBaselineState-id in: path description: The unique identifier of securityBaselineState required: true schema: type: string x-ms-docs-key-type: securityBaselineState - name: securityBaselineSettingState-id in: path description: The unique identifier of securityBaselineSettingState required: true schema: type: string x-ms-docs-key-type: securityBaselineSettingState x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}' '/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.managedDevice summary: Get the number of the resource operationId: deviceManagement.comanagedDevices.securityBaselineStates.settingStates.GetCount-c036 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice - name: securityBaselineState-id in: path description: The unique identifier of securityBaselineState required: true schema: type: string x-ms-docs-key-type: securityBaselineState '/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.managedDevice summary: Get the number of the resource operationId: deviceManagement.comanagedDevices.securityBaselineStates.GetCount-20ae 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice '/deviceManagement/comanagedDevices/{managedDevice-id}/users': description: Provides operations to manage the users property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get users from deviceManagement description: The primary users associated with the managed device. operationId: deviceManagement.comanagedDevices.ListUsers 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.userCollectionResponse' 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/users' '/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState': description: Provides operations to manage the windowsProtectionState property of the microsoft.graph.managedDevice entity. get: tags: - deviceManagement.managedDevice summary: Get windowsProtectionState from deviceManagement description: The device protection status. This property is read-only. operationId: deviceManagement.comanagedDevices.GetWindowsProtectionState parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsProtectionState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.managedDevice summary: Update the navigation property windowsProtectionState in deviceManagement operationId: deviceManagement.comanagedDevices.UpdateWindowsProtectionState requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsProtectionState' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsProtectionState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.managedDevice summary: Delete navigation property windowsProtectionState for deviceManagement operationId: deviceManagement.comanagedDevices.DeleteWindowsProtectionState parameters: - 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState' '/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState': description: Provides operations to manage the detectedMalwareState property of the microsoft.graph.windowsProtectionState entity. get: tags: - deviceManagement.managedDevice summary: Get detectedMalwareState from deviceManagement description: Device malware list operationId: deviceManagement.comanagedDevices.windowsProtectionState.ListDetectedMalwareState 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.windowsDeviceMalwareStateCollectionResponse' 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: - deviceManagement.managedDevice summary: Create new navigation property to detectedMalwareState for deviceManagement operationId: deviceManagement.comanagedDevices.windowsProtectionState.CreateDetectedMalwareState requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDeviceMalwareState' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDeviceMalwareState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState' '/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}': description: Provides operations to manage the detectedMalwareState property of the microsoft.graph.windowsProtectionState entity. get: tags: - deviceManagement.managedDevice summary: Get detectedMalwareState from deviceManagement description: Device malware list operationId: deviceManagement.comanagedDevices.windowsProtectionState.GetDetectedMalwareState parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDeviceMalwareState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.managedDevice summary: Update the navigation property detectedMalwareState in deviceManagement operationId: deviceManagement.comanagedDevices.windowsProtectionState.UpdateDetectedMalwareState requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDeviceMalwareState' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.windowsDeviceMalwareState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.managedDevice summary: Delete navigation property detectedMalwareState for deviceManagement operationId: deviceManagement.comanagedDevices.windowsProtectionState.DeleteDetectedMalwareState parameters: - 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice - name: windowsDeviceMalwareState-id in: path description: The unique identifier of windowsDeviceMalwareState required: true schema: type: string x-ms-docs-key-type: windowsDeviceMalwareState x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}' '/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.managedDevice summary: Get the number of the resource operationId: deviceManagement.comanagedDevices.windowsProtectionState.detectedMalwareState.GetCount-150b 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: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice /deviceManagement/comanagedDevices/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.managedDevice summary: Get the number of the resource operationId: deviceManagement.comanagedDevices.GetCount-ef06 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' '/deviceManagement/comanagedDevices/appDiagnostics(upn=''{upn}'')': description: Provides operations to call the appDiagnostics method. get: tags: - deviceManagement.managedDevice summary: Invoke function appDiagnostics operationId: deviceManagement.comanagedDevices.appDiagnostics 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.powerliftIncidentMetadata' 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: upn in: path description: 'Usage: upn=''{upn}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/appDiagnostics(upn=''{upn}'')' /deviceManagement/comanagedDevices/downloadAppDiagnostics: description: Provides operations to call the downloadAppDiagnostics method. post: tags: - deviceManagement.managedDevice summary: Invoke action downloadAppDiagnostics operationId: deviceManagement.comanagedDevices.downloadAppDiagnostics requestBody: description: Action parameters content: application/json: schema: type: object properties: request: anyOf: - $ref: '#/components/schemas/microsoft.graph.powerliftDownloadRequest' - type: object nullable: true required: true responses: 2XX: description: Success content: application/octet-stream: schema: type: object properties: value: type: string format: base64url nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-docs-grouped-path: - /deviceManagement/managedDevices/downloadAppDiagnostics /deviceManagement/comanagedDevices/downloadPowerliftAppDiagnostic: description: Provides operations to call the downloadPowerliftAppDiagnostic method. post: tags: - deviceManagement.managedDevice summary: Invoke action downloadPowerliftAppDiagnostic operationId: deviceManagement.comanagedDevices.downloadPowerliftAppDiagnostic requestBody: description: Action parameters content: application/json: schema: type: object properties: request: anyOf: - $ref: '#/components/schemas/microsoft.graph.powerliftAppDiagnosticDownloadRequest' - type: object nullable: true required: true responses: 2XX: description: Success content: application/octet-stream: schema: type: object properties: value: type: string format: base64url nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-docs-grouped-path: - /deviceManagement/managedDevices/downloadPowerliftAppDiagnostic /deviceManagement/comanagedDevices/executeAction: description: Provides operations to call the executeAction method. post: tags: - deviceManagement.managedDevice summary: Invoke action executeAction operationId: deviceManagement.comanagedDevices.executeAction requestBody: description: Action parameters content: application/json: schema: type: object properties: actionName: $ref: '#/components/schemas/microsoft.graph.managedDeviceRemoteAction' keepEnrollmentData: type: boolean default: false nullable: true keepUserData: type: boolean default: false nullable: true persistEsimDataPlan: type: boolean default: false nullable: true deviceIds: type: array items: type: string nullable: true notificationTitle: type: string nullable: true notificationBody: type: string nullable: true deviceName: type: string nullable: true carrierUrl: type: string nullable: true deprovisionReason: type: string nullable: true organizationalUnitPath: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.bulkManagedDeviceActionResult' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-docs-grouped-path: - /deviceManagement/managedDevices/executeAction - '/deviceManagement/windowsDriverUpdateProfiles/{windowsDriverUpdateProfile-id}/executeAction' /deviceManagement/comanagedDevices/moveDevicesToOU: description: Provides operations to call the moveDevicesToOU method. post: tags: - deviceManagement.managedDevice summary: Invoke action moveDevicesToOU operationId: deviceManagement.comanagedDevices.moveDevicesToOU requestBody: description: Action parameters content: application/json: schema: type: object properties: deviceIds: 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 organizationalUnitPath: 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 x-ms-docs-grouped-path: - /deviceManagement/managedDevices/moveDevicesToOU '/deviceManagement/comanagedDevices/retrievePowerliftAppDiagnosticsDetails(userPrincipalName=''{userPrincipalName}'')': description: Provides operations to call the retrievePowerliftAppDiagnosticsDetails method. get: tags: - deviceManagement.managedDevice summary: Invoke function retrievePowerliftAppDiagnosticsDetails operationId: deviceManagement.comanagedDevices.retrievePowerliftAppDiagnosticsDetails 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.powerliftIncidentDetail' 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: userPrincipalName in: path description: 'Usage: userPrincipalName=''{userPrincipalName}''' required: true schema: type: string nullable: true x-ms-docs-grouped-path: - '/deviceManagement/managedDevices/retrievePowerliftAppDiagnosticsDetails(userPrincipalName=''{userPrincipalName}'')' /deviceManagement/comanagementEligibleDevices: description: Provides operations to manage the comanagementEligibleDevices property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.comanagementEligibleDevice summary: Get comanagementEligibleDevices from deviceManagement description: The list of co-management eligible devices report operationId: deviceManagement.ListComanagementEligibleDevices 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.comanagementEligibleDeviceCollectionResponse' 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: - deviceManagement.comanagementEligibleDevice summary: Create new navigation property to comanagementEligibleDevices for deviceManagement operationId: deviceManagement.CreateComanagementEligibleDevices requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.comanagementEligibleDevice' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.comanagementEligibleDevice' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/comanagementEligibleDevices/{comanagementEligibleDevice-id}': description: Provides operations to manage the comanagementEligibleDevices property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.comanagementEligibleDevice summary: Get comanagementEligibleDevices from deviceManagement description: The list of co-management eligible devices report operationId: deviceManagement.GetComanagementEligibleDevices parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.comanagementEligibleDevice' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.comanagementEligibleDevice summary: Update the navigation property comanagementEligibleDevices in deviceManagement operationId: deviceManagement.UpdateComanagementEligibleDevices requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.comanagementEligibleDevice' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.comanagementEligibleDevice' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.comanagementEligibleDevice summary: Delete navigation property comanagementEligibleDevices for deviceManagement operationId: deviceManagement.DeleteComanagementEligibleDevices parameters: - 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: comanagementEligibleDevice-id in: path description: The unique identifier of comanagementEligibleDevice required: true schema: type: string x-ms-docs-key-type: comanagementEligibleDevice /deviceManagement/comanagementEligibleDevices/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.comanagementEligibleDevice summary: Get the number of the resource operationId: deviceManagement.comanagementEligibleDevices.GetCount-4cda 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' /deviceManagement/complianceCategories: description: Provides operations to manage the complianceCategories property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementConfigurationCategory summary: Get complianceCategories from deviceManagement description: List of all compliance categories operationId: deviceManagement.ListComplianceCategories 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.deviceManagementConfigurationCategoryCollectionResponse' 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: - deviceManagement.deviceManagementConfigurationCategory summary: Create new navigation property to complianceCategories for deviceManagement operationId: deviceManagement.CreateComplianceCategories requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationCategory' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/complianceCategories/{deviceManagementConfigurationCategory-id}': description: Provides operations to manage the complianceCategories property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementConfigurationCategory summary: Get complianceCategories from deviceManagement description: List of all compliance categories operationId: deviceManagement.GetComplianceCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementConfigurationCategory summary: Update the navigation property complianceCategories in deviceManagement operationId: deviceManagement.UpdateComplianceCategories requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationCategory' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementConfigurationCategory summary: Delete navigation property complianceCategories for deviceManagement operationId: deviceManagement.DeleteComplianceCategories parameters: - 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: deviceManagementConfigurationCategory-id in: path description: The unique identifier of deviceManagementConfigurationCategory required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationCategory /deviceManagement/complianceCategories/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementConfigurationCategory summary: Get the number of the resource operationId: deviceManagement.complianceCategories.GetCount-109a 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' /deviceManagement/complianceManagementPartners: description: Provides operations to manage the complianceManagementPartners property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.complianceManagementPartner summary: Get complianceManagementPartners from deviceManagement description: The list of Compliance Management Partners configured by the tenant. operationId: deviceManagement.ListComplianceManagementPartners 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.complianceManagementPartnerCollectionResponse' 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: - deviceManagement.complianceManagementPartner summary: Create new navigation property to complianceManagementPartners for deviceManagement operationId: deviceManagement.CreateComplianceManagementPartners requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.complianceManagementPartner' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.complianceManagementPartner' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}': description: Provides operations to manage the complianceManagementPartners property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.complianceManagementPartner summary: Get complianceManagementPartners from deviceManagement description: The list of Compliance Management Partners configured by the tenant. operationId: deviceManagement.GetComplianceManagementPartners parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.complianceManagementPartner' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.complianceManagementPartner summary: Update the navigation property complianceManagementPartners in deviceManagement operationId: deviceManagement.UpdateComplianceManagementPartners requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.complianceManagementPartner' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.complianceManagementPartner' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.complianceManagementPartner summary: Delete navigation property complianceManagementPartners for deviceManagement operationId: deviceManagement.DeleteComplianceManagementPartners parameters: - 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: complianceManagementPartner-id in: path description: The unique identifier of complianceManagementPartner required: true schema: type: string x-ms-docs-key-type: complianceManagementPartner /deviceManagement/complianceManagementPartners/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.complianceManagementPartner summary: Get the number of the resource operationId: deviceManagement.complianceManagementPartners.GetCount-eeb1 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' /deviceManagement/compliancePolicies: description: Provides operations to manage the compliancePolicies property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get compliancePolicies from deviceManagement description: List of all compliance policies operationId: deviceManagement.ListCompliancePolicies 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.deviceManagementCompliancePolicyCollectionResponse' 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: - deviceManagement.deviceManagementCompliancePolicy summary: Create new navigation property to compliancePolicies for deviceManagement operationId: deviceManagement.CreateCompliancePolicies requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementCompliancePolicy' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementCompliancePolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}': description: Provides operations to manage the compliancePolicies property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get compliancePolicies from deviceManagement description: List of all compliance policies operationId: deviceManagement.GetCompliancePolicies parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementCompliancePolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Update the navigation property compliancePolicies in deviceManagement operationId: deviceManagement.UpdateCompliancePolicies requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementCompliancePolicy' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementCompliancePolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Delete navigation property compliancePolicies for deviceManagement operationId: deviceManagement.DeleteCompliancePolicies parameters: - 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: deviceManagementCompliancePolicy-id in: path description: The unique identifier of deviceManagementCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.deviceManagementCompliancePolicy entity. get: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get assignments from deviceManagement description: Policy assignments operationId: deviceManagement.compliancePolicies.ListAssignments 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.deviceManagementConfigurationPolicyAssignmentCollectionResponse' 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: - deviceManagement.deviceManagementCompliancePolicy summary: Create new navigation property to assignments for deviceManagement operationId: deviceManagement.compliancePolicies.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceManagementCompliancePolicy-id in: path description: The unique identifier of deviceManagementCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments/{deviceManagementConfigurationPolicyAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.deviceManagementCompliancePolicy entity. get: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get assignments from deviceManagement description: Policy assignments operationId: deviceManagement.compliancePolicies.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Update the navigation property assignments in deviceManagement operationId: deviceManagement.compliancePolicies.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Delete navigation property assignments for deviceManagement operationId: deviceManagement.compliancePolicies.DeleteAssignments parameters: - 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: deviceManagementCompliancePolicy-id in: path description: The unique identifier of deviceManagementCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy - name: deviceManagementConfigurationPolicyAssignment-id in: path description: The unique identifier of deviceManagementConfigurationPolicyAssignment required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyAssignment '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get the number of the resource operationId: deviceManagement.compliancePolicies.assignments.GetCount-9d1b 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: deviceManagementCompliancePolicy-id in: path description: The unique identifier of deviceManagementCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assign': description: Provides operations to call the assign method. post: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Invoke action assign operationId: deviceManagement.compliancePolicies.deviceManagementCompliancePolicy.assign requestBody: description: Action parameters content: application/json: schema: type: object properties: assignments: type: array items: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyAssignment' required: true responses: 2XX: description: Success content: application/json: schema: title: Collection of deviceManagementConfigurationPolicyAssignment type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyAssignment' 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: deviceManagementCompliancePolicy-id in: path description: The unique identifier of deviceManagementCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy x-ms-docs-grouped-path: - '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assign' - '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assign' - '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/assign' - '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assign' - '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/assign' - '/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assign' - '/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assign' - '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assign' - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assign' - '/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assign' - '/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assign' - '/deviceManagement/hardwareConfigurations/{hardwareConfiguration-id}/assign' - '/deviceManagement/intents/{deviceManagementIntent-id}/assign' - '/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assign' - '/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assign' - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/assign' - '/deviceManagement/roleScopeTags/{roleScopeTag-id}/assign' - '/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assign' - '/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assign' - '/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assign' - '/deviceManagement/windowsDriverUpdateProfiles/{windowsDriverUpdateProfile-id}/assign' - '/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assign' - '/deviceManagement/windowsQualityUpdatePolicies/{windowsQualityUpdatePolicy-id}/assign' - '/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assign' '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/setScheduledActions': description: Provides operations to call the setScheduledActions method. post: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Invoke action setScheduledActions operationId: deviceManagement.compliancePolicies.deviceManagementCompliancePolicy.setScheduledActions requestBody: description: Action parameters content: application/json: schema: type: object properties: scheduledActions: type: array items: $ref: '#/components/schemas/microsoft.graph.deviceManagementComplianceScheduledActionForRule' required: true responses: 2XX: description: Success content: application/json: schema: title: Collection of deviceManagementComplianceScheduledActionForRule type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.deviceManagementComplianceScheduledActionForRule' 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: deviceManagementCompliancePolicy-id in: path description: The unique identifier of deviceManagementCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule': description: Provides operations to manage the scheduledActionsForRule property of the microsoft.graph.deviceManagementCompliancePolicy entity. get: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get scheduledActionsForRule from deviceManagement description: The list of scheduled action for this rule operationId: deviceManagement.compliancePolicies.ListScheduledActionsForRule 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.deviceManagementComplianceScheduledActionForRuleCollectionResponse' 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: - deviceManagement.deviceManagementCompliancePolicy summary: Create new navigation property to scheduledActionsForRule for deviceManagement operationId: deviceManagement.compliancePolicies.CreateScheduledActionsForRule requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementComplianceScheduledActionForRule' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementComplianceScheduledActionForRule' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceManagementCompliancePolicy-id in: path description: The unique identifier of deviceManagementCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}': description: Provides operations to manage the scheduledActionsForRule property of the microsoft.graph.deviceManagementCompliancePolicy entity. get: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get scheduledActionsForRule from deviceManagement description: The list of scheduled action for this rule operationId: deviceManagement.compliancePolicies.GetScheduledActionsForRule parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementComplianceScheduledActionForRule' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Update the navigation property scheduledActionsForRule in deviceManagement operationId: deviceManagement.compliancePolicies.UpdateScheduledActionsForRule requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementComplianceScheduledActionForRule' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementComplianceScheduledActionForRule' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Delete navigation property scheduledActionsForRule for deviceManagement operationId: deviceManagement.compliancePolicies.DeleteScheduledActionsForRule parameters: - 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: deviceManagementCompliancePolicy-id in: path description: The unique identifier of deviceManagementCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy - name: deviceManagementComplianceScheduledActionForRule-id in: path description: The unique identifier of deviceManagementComplianceScheduledActionForRule required: true schema: type: string x-ms-docs-key-type: deviceManagementComplianceScheduledActionForRule '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations': description: Provides operations to manage the scheduledActionConfigurations property of the microsoft.graph.deviceManagementComplianceScheduledActionForRule entity. get: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get scheduledActionConfigurations from deviceManagement description: The list of scheduled action configurations for this compliance policy. This collection can contain a maximum of 100 elements. operationId: deviceManagement.compliancePolicies.scheduledActionsForRule.ListScheduledActionConfigurations 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.deviceManagementComplianceActionItemCollectionResponse' 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: - deviceManagement.deviceManagementCompliancePolicy summary: Create new navigation property to scheduledActionConfigurations for deviceManagement operationId: deviceManagement.compliancePolicies.scheduledActionsForRule.CreateScheduledActionConfigurations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementComplianceActionItem' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementComplianceActionItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceManagementCompliancePolicy-id in: path description: The unique identifier of deviceManagementCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy - name: deviceManagementComplianceScheduledActionForRule-id in: path description: The unique identifier of deviceManagementComplianceScheduledActionForRule required: true schema: type: string x-ms-docs-key-type: deviceManagementComplianceScheduledActionForRule '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceManagementComplianceActionItem-id}': description: Provides operations to manage the scheduledActionConfigurations property of the microsoft.graph.deviceManagementComplianceScheduledActionForRule entity. get: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get scheduledActionConfigurations from deviceManagement description: The list of scheduled action configurations for this compliance policy. This collection can contain a maximum of 100 elements. operationId: deviceManagement.compliancePolicies.scheduledActionsForRule.GetScheduledActionConfigurations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementComplianceActionItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Update the navigation property scheduledActionConfigurations in deviceManagement operationId: deviceManagement.compliancePolicies.scheduledActionsForRule.UpdateScheduledActionConfigurations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementComplianceActionItem' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementComplianceActionItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Delete navigation property scheduledActionConfigurations for deviceManagement operationId: deviceManagement.compliancePolicies.scheduledActionsForRule.DeleteScheduledActionConfigurations parameters: - 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: deviceManagementCompliancePolicy-id in: path description: The unique identifier of deviceManagementCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy - name: deviceManagementComplianceScheduledActionForRule-id in: path description: The unique identifier of deviceManagementComplianceScheduledActionForRule required: true schema: type: string x-ms-docs-key-type: deviceManagementComplianceScheduledActionForRule - name: deviceManagementComplianceActionItem-id in: path description: The unique identifier of deviceManagementComplianceActionItem required: true schema: type: string x-ms-docs-key-type: deviceManagementComplianceActionItem '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get the number of the resource operationId: deviceManagement.compliancePolicies.scheduledActionsForRule.scheduledActionConfigurations.GetCount-1ad3 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: deviceManagementCompliancePolicy-id in: path description: The unique identifier of deviceManagementCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy - name: deviceManagementComplianceScheduledActionForRule-id in: path description: The unique identifier of deviceManagementComplianceScheduledActionForRule required: true schema: type: string x-ms-docs-key-type: deviceManagementComplianceScheduledActionForRule '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get the number of the resource operationId: deviceManagement.compliancePolicies.scheduledActionsForRule.GetCount-c94d 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: deviceManagementCompliancePolicy-id in: path description: The unique identifier of deviceManagementCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings': description: Provides operations to manage the settings property of the microsoft.graph.deviceManagementCompliancePolicy entity. get: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get settings from deviceManagement description: Policy settings operationId: deviceManagement.compliancePolicies.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.deviceManagementConfigurationSettingCollectionResponse' 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: - deviceManagement.deviceManagementCompliancePolicy summary: Create new navigation property to settings for deviceManagement operationId: deviceManagement.compliancePolicies.CreateSettings requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSetting' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceManagementCompliancePolicy-id in: path description: The unique identifier of deviceManagementCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}': description: Provides operations to manage the settings property of the microsoft.graph.deviceManagementCompliancePolicy entity. get: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get settings from deviceManagement description: Policy settings operationId: deviceManagement.compliancePolicies.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.deviceManagementConfigurationSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Update the navigation property settings in deviceManagement operationId: deviceManagement.compliancePolicies.UpdateSettings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSetting' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Delete navigation property settings for deviceManagement operationId: deviceManagement.compliancePolicies.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: deviceManagementCompliancePolicy-id in: path description: The unique identifier of deviceManagementCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy - name: deviceManagementConfigurationSetting-id in: path description: The unique identifier of deviceManagementConfigurationSetting required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions': description: Provides operations to manage the settingDefinitions property of the microsoft.graph.deviceManagementConfigurationSetting entity. get: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get settingDefinitions from deviceManagement description: List of related Setting Definitions. This property is read-only. operationId: deviceManagement.compliancePolicies.settings.ListSettingDefinitions 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.deviceManagementConfigurationSettingDefinitionCollectionResponse' 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: deviceManagementCompliancePolicy-id in: path description: The unique identifier of deviceManagementCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy - name: deviceManagementConfigurationSetting-id in: path description: The unique identifier of deviceManagementConfigurationSetting required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting x-ms-docs-grouped-path: - '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions' - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions' '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}': description: Provides operations to manage the settingDefinitions property of the microsoft.graph.deviceManagementConfigurationSetting entity. get: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get settingDefinitions from deviceManagement description: List of related Setting Definitions. This property is read-only. operationId: deviceManagement.compliancePolicies.settings.GetSettingDefinitions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceManagementCompliancePolicy-id in: path description: The unique identifier of deviceManagementCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy - name: deviceManagementConfigurationSetting-id in: path description: The unique identifier of deviceManagementConfigurationSetting required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting - name: deviceManagementConfigurationSettingDefinition-id in: path description: The unique identifier of deviceManagementConfigurationSettingDefinition required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition x-ms-docs-grouped-path: - '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}' - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}' '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get the number of the resource operationId: deviceManagement.compliancePolicies.settings.settingDefinitions.GetCount-4be7 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: deviceManagementCompliancePolicy-id in: path description: The unique identifier of deviceManagementCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy - name: deviceManagementConfigurationSetting-id in: path description: The unique identifier of deviceManagementConfigurationSetting required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get the number of the resource operationId: deviceManagement.compliancePolicies.settings.GetCount-4101 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: deviceManagementCompliancePolicy-id in: path description: The unique identifier of deviceManagementCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementCompliancePolicy /deviceManagement/compliancePolicies/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementCompliancePolicy summary: Get the number of the resource operationId: deviceManagement.compliancePolicies.GetCount-1651 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' /deviceManagement/complianceSettings: description: Provides operations to manage the complianceSettings property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementConfigurationSettingDefinition summary: Get complianceSettings from deviceManagement description: List of all ComplianceSettings operationId: deviceManagement.ListComplianceSettings 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.deviceManagementConfigurationSettingDefinitionCollectionResponse' 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: - deviceManagement.deviceManagementConfigurationSettingDefinition summary: Create new navigation property to complianceSettings for deviceManagement operationId: deviceManagement.CreateComplianceSettings requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/complianceSettings/{deviceManagementConfigurationSettingDefinition-id}': description: Provides operations to manage the complianceSettings property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementConfigurationSettingDefinition summary: Get complianceSettings from deviceManagement description: List of all ComplianceSettings operationId: deviceManagement.GetComplianceSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementConfigurationSettingDefinition summary: Update the navigation property complianceSettings in deviceManagement operationId: deviceManagement.UpdateComplianceSettings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementConfigurationSettingDefinition summary: Delete navigation property complianceSettings for deviceManagement operationId: deviceManagement.DeleteComplianceSettings parameters: - 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: deviceManagementConfigurationSettingDefinition-id in: path description: The unique identifier of deviceManagementConfigurationSettingDefinition required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition /deviceManagement/complianceSettings/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementConfigurationSettingDefinition summary: Get the number of the resource operationId: deviceManagement.complianceSettings.GetCount-ac5d 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' /deviceManagement/conditionalAccessSettings: description: Provides operations to manage the conditionalAccessSettings property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.onPremisesConditionalAccessSettings summary: Get conditionalAccessSettings from deviceManagement description: The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access operationId: deviceManagement.GetConditionalAccessSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onPremisesConditionalAccessSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.onPremisesConditionalAccessSettings summary: Update the navigation property conditionalAccessSettings in deviceManagement operationId: deviceManagement.UpdateConditionalAccessSettings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onPremisesConditionalAccessSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.onPremisesConditionalAccessSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.onPremisesConditionalAccessSettings summary: Delete navigation property conditionalAccessSettings for deviceManagement operationId: deviceManagement.DeleteConditionalAccessSettings parameters: - 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 /deviceManagement/configManagerCollections: description: Provides operations to manage the configManagerCollections property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.configManagerCollection summary: Get configManagerCollections from deviceManagement description: A list of ConfigManagerCollection operationId: deviceManagement.ListConfigManagerCollections 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.configManagerCollectionCollectionResponse' 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: - deviceManagement.configManagerCollection summary: Create new navigation property to configManagerCollections for deviceManagement operationId: deviceManagement.CreateConfigManagerCollections requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.configManagerCollection' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.configManagerCollection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/configManagerCollections/{configManagerCollection-id}': description: Provides operations to manage the configManagerCollections property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.configManagerCollection summary: Get configManagerCollections from deviceManagement description: A list of ConfigManagerCollection operationId: deviceManagement.GetConfigManagerCollections parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.configManagerCollection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.configManagerCollection summary: Update the navigation property configManagerCollections in deviceManagement operationId: deviceManagement.UpdateConfigManagerCollections requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.configManagerCollection' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.configManagerCollection' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.configManagerCollection summary: Delete navigation property configManagerCollections for deviceManagement operationId: deviceManagement.DeleteConfigManagerCollections parameters: - 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: configManagerCollection-id in: path description: The unique identifier of configManagerCollection required: true schema: type: string x-ms-docs-key-type: configManagerCollection /deviceManagement/configManagerCollections/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.configManagerCollection summary: Get the number of the resource operationId: deviceManagement.configManagerCollections.GetCount-2a5b 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' '/deviceManagement/configManagerCollections/getPolicySummary(policyId=''{policyId}'')': description: Provides operations to call the getPolicySummary method. get: tags: - deviceManagement.configManagerCollection summary: Invoke function getPolicySummary operationId: deviceManagement.configManagerCollections.getPolicySummary responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.configManagerPolicySummary' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: policyId in: path description: 'Usage: policyId=''{policyId}''' required: true schema: type: string nullable: true /deviceManagement/configurationCategories: description: Provides operations to manage the configurationCategories property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementConfigurationCategory summary: Get configurationCategories from deviceManagement description: List of all Configuration Categories operationId: deviceManagement.ListConfigurationCategories 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.deviceManagementConfigurationCategoryCollectionResponse' 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: - deviceManagement.deviceManagementConfigurationCategory summary: Create new navigation property to configurationCategories for deviceManagement operationId: deviceManagement.CreateConfigurationCategories requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationCategory' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/configurationCategories/{deviceManagementConfigurationCategory-id}': description: Provides operations to manage the configurationCategories property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementConfigurationCategory summary: Get configurationCategories from deviceManagement description: List of all Configuration Categories operationId: deviceManagement.GetConfigurationCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementConfigurationCategory summary: Update the navigation property configurationCategories in deviceManagement operationId: deviceManagement.UpdateConfigurationCategories requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationCategory' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementConfigurationCategory summary: Delete navigation property configurationCategories for deviceManagement operationId: deviceManagement.DeleteConfigurationCategories parameters: - 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: deviceManagementConfigurationCategory-id in: path description: The unique identifier of deviceManagementConfigurationCategory required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationCategory /deviceManagement/configurationCategories/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementConfigurationCategory summary: Get the number of the resource operationId: deviceManagement.configurationCategories.GetCount-8202 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' /deviceManagement/configurationPolicies: description: Provides operations to manage the configurationPolicies property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get configurationPolicies from deviceManagement description: List of all Configuration policies operationId: deviceManagement.ListConfigurationPolicies 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.deviceManagementConfigurationPolicyCollectionResponse' 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: - deviceManagement.deviceManagementConfigurationPolicy summary: Create new navigation property to configurationPolicies for deviceManagement operationId: deviceManagement.CreateConfigurationPolicies requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicy' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}': description: Provides operations to manage the configurationPolicies property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get configurationPolicies from deviceManagement description: List of all Configuration policies operationId: deviceManagement.GetConfigurationPolicies parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Update the navigation property configurationPolicies in deviceManagement operationId: deviceManagement.UpdateConfigurationPolicies requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicy' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Delete navigation property configurationPolicies for deviceManagement operationId: deviceManagement.DeleteConfigurationPolicies parameters: - 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: deviceManagementConfigurationPolicy-id in: path description: The unique identifier of deviceManagementConfigurationPolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.deviceManagementConfigurationPolicy entity. get: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get assignments from deviceManagement description: Policy assignments operationId: deviceManagement.configurationPolicies.ListAssignments 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.deviceManagementConfigurationPolicyAssignmentCollectionResponse' 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: - deviceManagement.deviceManagementConfigurationPolicy summary: Create new navigation property to assignments for deviceManagement operationId: deviceManagement.configurationPolicies.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceManagementConfigurationPolicy-id in: path description: The unique identifier of deviceManagementConfigurationPolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy x-ms-docs-grouped-path: - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments' '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments/{deviceManagementConfigurationPolicyAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.deviceManagementConfigurationPolicy entity. get: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get assignments from deviceManagement description: Policy assignments operationId: deviceManagement.configurationPolicies.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Update the navigation property assignments in deviceManagement operationId: deviceManagement.configurationPolicies.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Delete navigation property assignments for deviceManagement operationId: deviceManagement.configurationPolicies.DeleteAssignments parameters: - 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: deviceManagementConfigurationPolicy-id in: path description: The unique identifier of deviceManagementConfigurationPolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy - name: deviceManagementConfigurationPolicyAssignment-id in: path description: The unique identifier of deviceManagementConfigurationPolicyAssignment required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyAssignment x-ms-docs-grouped-path: - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments/{deviceManagementConfigurationPolicyAssignment-id}' '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get the number of the resource operationId: deviceManagement.configurationPolicies.assignments.GetCount-5bf5 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: deviceManagementConfigurationPolicy-id in: path description: The unique identifier of deviceManagementConfigurationPolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assign': description: Provides operations to call the assign method. post: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Invoke action assign operationId: deviceManagement.configurationPolicies.deviceManagementConfigurationPolicy.assign requestBody: description: Action parameters content: application/json: schema: type: object properties: assignments: type: array items: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyAssignment' required: true responses: 2XX: description: Success content: application/json: schema: title: Collection of deviceManagementConfigurationPolicyAssignment type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyAssignment' 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: deviceManagementConfigurationPolicy-id in: path description: The unique identifier of deviceManagementConfigurationPolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy x-ms-docs-grouped-path: - '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assign' - '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assign' - '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/assign' - '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assign' - '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/assign' - '/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assign' - '/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assign' - '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assign' - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assign' - '/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assign' - '/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assign' - '/deviceManagement/hardwareConfigurations/{hardwareConfiguration-id}/assign' - '/deviceManagement/intents/{deviceManagementIntent-id}/assign' - '/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assign' - '/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assign' - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/assign' - '/deviceManagement/roleScopeTags/{roleScopeTag-id}/assign' - '/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assign' - '/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assign' - '/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assign' - '/deviceManagement/windowsDriverUpdateProfiles/{windowsDriverUpdateProfile-id}/assign' - '/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assign' - '/deviceManagement/windowsQualityUpdatePolicies/{windowsQualityUpdatePolicy-id}/assign' - '/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assign' '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/clearEnrollmentTimeDeviceMembershipTarget': description: Provides operations to call the clearEnrollmentTimeDeviceMembershipTarget method. post: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Invoke action clearEnrollmentTimeDeviceMembershipTarget operationId: deviceManagement.configurationPolicies.deviceManagementConfigurationPolicy.clearEnrollmentTimeDeviceMembershipTarget 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: deviceManagementConfigurationPolicy-id in: path description: The unique identifier of deviceManagementConfigurationPolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy x-ms-docs-grouped-path: - '/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}/clearEnrollmentTimeDeviceMembershipTarget' - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/clearEnrollmentTimeDeviceMembershipTarget' '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/createCopy': description: Provides operations to call the createCopy method. post: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Invoke action createCopy operationId: deviceManagement.configurationPolicies.deviceManagementConfigurationPolicy.createCopy requestBody: description: Action parameters content: application/json: schema: type: object properties: displayName: type: string nullable: true description: type: string nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicy' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deviceManagementConfigurationPolicy-id in: path description: The unique identifier of deviceManagementConfigurationPolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy x-ms-docs-grouped-path: - '/deviceManagement/intents/{deviceManagementIntent-id}/createCopy' - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/createCopy' '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/reorder': description: Provides operations to call the reorder method. post: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Invoke action reorder operationId: deviceManagement.configurationPolicies.deviceManagementConfigurationPolicy.reorder requestBody: description: Action parameters content: application/json: schema: type: object properties: priority: maximum: 2147483647 minimum: -2147483648 type: number format: int32 required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deviceManagementConfigurationPolicy-id in: path description: The unique identifier of deviceManagementConfigurationPolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy x-ms-docs-grouped-path: - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/reorder' '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveEnrollmentTimeDeviceMembershipTarget': description: Provides operations to call the retrieveEnrollmentTimeDeviceMembershipTarget method. post: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Invoke action retrieveEnrollmentTimeDeviceMembershipTarget operationId: deviceManagement.configurationPolicies.deviceManagementConfigurationPolicy.retrieveEnrollmentTimeDeviceMembershipTarget responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.enrollmentTimeDeviceMembershipTargetResult' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deviceManagementConfigurationPolicy-id in: path description: The unique identifier of deviceManagementConfigurationPolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy x-ms-docs-grouped-path: - '/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}/retrieveEnrollmentTimeDeviceMembershipTarget' - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveEnrollmentTimeDeviceMembershipTarget' '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveLatestUpgradeDefaultBaselinePolicy()': description: Provides operations to call the retrieveLatestUpgradeDefaultBaselinePolicy method. get: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Invoke function retrieveLatestUpgradeDefaultBaselinePolicy operationId: deviceManagement.configurationPolicies.deviceManagementConfigurationPolicy.retrieveLatestUpgradeDefaultBaselinePolicy responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicy' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: deviceManagementConfigurationPolicy-id in: path description: The unique identifier of deviceManagementConfigurationPolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy x-ms-docs-grouped-path: - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveLatestUpgradeDefaultBaselinePolicy()' '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/setEnrollmentTimeDeviceMembershipTarget': description: Provides operations to call the setEnrollmentTimeDeviceMembershipTarget method. post: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Invoke action setEnrollmentTimeDeviceMembershipTarget operationId: deviceManagement.configurationPolicies.deviceManagementConfigurationPolicy.setEnrollmentTimeDeviceMembershipTarget requestBody: description: Action parameters content: application/json: schema: type: object properties: enrollmentTimeDeviceMembershipTargets: type: array items: $ref: '#/components/schemas/microsoft.graph.enrollmentTimeDeviceMembershipTarget' required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.enrollmentTimeDeviceMembershipTargetResult' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deviceManagementConfigurationPolicy-id in: path description: The unique identifier of deviceManagementConfigurationPolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy x-ms-docs-grouped-path: - '/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}/setEnrollmentTimeDeviceMembershipTarget' - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/setEnrollmentTimeDeviceMembershipTarget' '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings': description: Provides operations to manage the settings property of the microsoft.graph.deviceManagementConfigurationPolicy entity. get: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get settings from deviceManagement description: Policy settings operationId: deviceManagement.configurationPolicies.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.deviceManagementConfigurationSettingCollectionResponse' 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: - deviceManagement.deviceManagementConfigurationPolicy summary: Create new navigation property to settings for deviceManagement operationId: deviceManagement.configurationPolicies.CreateSettings requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSetting' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceManagementConfigurationPolicy-id in: path description: The unique identifier of deviceManagementConfigurationPolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy x-ms-docs-grouped-path: - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/settings' '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}': description: Provides operations to manage the settings property of the microsoft.graph.deviceManagementConfigurationPolicy entity. get: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get settings from deviceManagement description: Policy settings operationId: deviceManagement.configurationPolicies.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.deviceManagementConfigurationSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Update the navigation property settings in deviceManagement operationId: deviceManagement.configurationPolicies.UpdateSettings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSetting' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Delete navigation property settings for deviceManagement operationId: deviceManagement.configurationPolicies.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: deviceManagementConfigurationPolicy-id in: path description: The unique identifier of deviceManagementConfigurationPolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy - name: deviceManagementConfigurationSetting-id in: path description: The unique identifier of deviceManagementConfigurationSetting required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting x-ms-docs-grouped-path: - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}' '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions': description: Provides operations to manage the settingDefinitions property of the microsoft.graph.deviceManagementConfigurationSetting entity. get: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get settingDefinitions from deviceManagement description: List of related Setting Definitions. This property is read-only. operationId: deviceManagement.configurationPolicies.settings.ListSettingDefinitions 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.deviceManagementConfigurationSettingDefinitionCollectionResponse' 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: deviceManagementConfigurationPolicy-id in: path description: The unique identifier of deviceManagementConfigurationPolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy - name: deviceManagementConfigurationSetting-id in: path description: The unique identifier of deviceManagementConfigurationSetting required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting x-ms-docs-grouped-path: - '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions' - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions' '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}': description: Provides operations to manage the settingDefinitions property of the microsoft.graph.deviceManagementConfigurationSetting entity. get: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get settingDefinitions from deviceManagement description: List of related Setting Definitions. This property is read-only. operationId: deviceManagement.configurationPolicies.settings.GetSettingDefinitions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceManagementConfigurationPolicy-id in: path description: The unique identifier of deviceManagementConfigurationPolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy - name: deviceManagementConfigurationSetting-id in: path description: The unique identifier of deviceManagementConfigurationSetting required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting - name: deviceManagementConfigurationSettingDefinition-id in: path description: The unique identifier of deviceManagementConfigurationSettingDefinition required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition x-ms-docs-grouped-path: - '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}' - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}' '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get the number of the resource operationId: deviceManagement.configurationPolicies.settings.settingDefinitions.GetCount-3419 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: deviceManagementConfigurationPolicy-id in: path description: The unique identifier of deviceManagementConfigurationPolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy - name: deviceManagementConfigurationSetting-id in: path description: The unique identifier of deviceManagementConfigurationSetting required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSetting '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get the number of the resource operationId: deviceManagement.configurationPolicies.settings.GetCount-7804 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: deviceManagementConfigurationPolicy-id in: path description: The unique identifier of deviceManagementConfigurationPolicy required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicy /deviceManagement/configurationPolicies/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementConfigurationPolicy summary: Get the number of the resource operationId: deviceManagement.configurationPolicies.GetCount-aa25 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' /deviceManagement/configurationPolicyTemplates: description: Provides operations to manage the configurationPolicyTemplates property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Get configurationPolicyTemplates from deviceManagement description: List of all templates operationId: deviceManagement.ListConfigurationPolicyTemplates 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.deviceManagementConfigurationPolicyTemplateCollectionResponse' 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: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Create new navigation property to configurationPolicyTemplates for deviceManagement operationId: deviceManagement.CreateConfigurationPolicyTemplates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyTemplate' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyTemplate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}': description: Provides operations to manage the configurationPolicyTemplates property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Get configurationPolicyTemplates from deviceManagement description: List of all templates operationId: deviceManagement.GetConfigurationPolicyTemplates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyTemplate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Update the navigation property configurationPolicyTemplates in deviceManagement operationId: deviceManagement.UpdateConfigurationPolicyTemplates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyTemplate' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyTemplate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Delete navigation property configurationPolicyTemplates for deviceManagement operationId: deviceManagement.DeleteConfigurationPolicyTemplates parameters: - 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: deviceManagementConfigurationPolicyTemplate-id in: path description: The unique identifier of deviceManagementConfigurationPolicyTemplate required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate '/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates': description: Provides operations to manage the settingTemplates property of the microsoft.graph.deviceManagementConfigurationPolicyTemplate entity. get: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Get settingTemplates from deviceManagement description: Setting templates operationId: deviceManagement.configurationPolicyTemplates.ListSettingTemplates 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.deviceManagementConfigurationSettingTemplateCollectionResponse' 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: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Create new navigation property to settingTemplates for deviceManagement operationId: deviceManagement.configurationPolicyTemplates.CreateSettingTemplates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingTemplate' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingTemplate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceManagementConfigurationPolicyTemplate-id in: path description: The unique identifier of deviceManagementConfigurationPolicyTemplate required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate '/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}': description: Provides operations to manage the settingTemplates property of the microsoft.graph.deviceManagementConfigurationPolicyTemplate entity. get: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Get settingTemplates from deviceManagement description: Setting templates operationId: deviceManagement.configurationPolicyTemplates.GetSettingTemplates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingTemplate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Update the navigation property settingTemplates in deviceManagement operationId: deviceManagement.configurationPolicyTemplates.UpdateSettingTemplates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingTemplate' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingTemplate' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Delete navigation property settingTemplates for deviceManagement operationId: deviceManagement.configurationPolicyTemplates.DeleteSettingTemplates parameters: - 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: deviceManagementConfigurationPolicyTemplate-id in: path description: The unique identifier of deviceManagementConfigurationPolicyTemplate required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate - name: deviceManagementConfigurationSettingTemplate-id in: path description: The unique identifier of deviceManagementConfigurationSettingTemplate required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingTemplate '/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions': description: Provides operations to manage the settingDefinitions property of the microsoft.graph.deviceManagementConfigurationSettingTemplate entity. get: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Get settingDefinitions from deviceManagement description: List of related Setting Definitions operationId: deviceManagement.configurationPolicyTemplates.settingTemplates.ListSettingDefinitions 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.deviceManagementConfigurationSettingDefinitionCollectionResponse' 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: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Create new navigation property to settingDefinitions for deviceManagement operationId: deviceManagement.configurationPolicyTemplates.settingTemplates.CreateSettingDefinitions requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceManagementConfigurationPolicyTemplate-id in: path description: The unique identifier of deviceManagementConfigurationPolicyTemplate required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate - name: deviceManagementConfigurationSettingTemplate-id in: path description: The unique identifier of deviceManagementConfigurationSettingTemplate required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingTemplate x-ms-docs-grouped-path: - '/deviceManagement/templateSettings/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions' '/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}': description: Provides operations to manage the settingDefinitions property of the microsoft.graph.deviceManagementConfigurationSettingTemplate entity. get: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Get settingDefinitions from deviceManagement description: List of related Setting Definitions operationId: deviceManagement.configurationPolicyTemplates.settingTemplates.GetSettingDefinitions parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Update the navigation property settingDefinitions in deviceManagement operationId: deviceManagement.configurationPolicyTemplates.settingTemplates.UpdateSettingDefinitions requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Delete navigation property settingDefinitions for deviceManagement operationId: deviceManagement.configurationPolicyTemplates.settingTemplates.DeleteSettingDefinitions parameters: - 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: deviceManagementConfigurationPolicyTemplate-id in: path description: The unique identifier of deviceManagementConfigurationPolicyTemplate required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate - name: deviceManagementConfigurationSettingTemplate-id in: path description: The unique identifier of deviceManagementConfigurationSettingTemplate required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingTemplate - name: deviceManagementConfigurationSettingDefinition-id in: path description: The unique identifier of deviceManagementConfigurationSettingDefinition required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition x-ms-docs-grouped-path: - '/deviceManagement/templateSettings/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}' '/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Get the number of the resource operationId: deviceManagement.configurationPolicyTemplates.settingTemplates.settingDefinitions.GetCount-4a24 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: deviceManagementConfigurationPolicyTemplate-id in: path description: The unique identifier of deviceManagementConfigurationPolicyTemplate required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate - name: deviceManagementConfigurationSettingTemplate-id in: path description: The unique identifier of deviceManagementConfigurationSettingTemplate required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingTemplate '/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Get the number of the resource operationId: deviceManagement.configurationPolicyTemplates.settingTemplates.GetCount-abad 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: deviceManagementConfigurationPolicyTemplate-id in: path description: The unique identifier of deviceManagementConfigurationPolicyTemplate required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationPolicyTemplate /deviceManagement/configurationPolicyTemplates/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementConfigurationPolicyTemplate summary: Get the number of the resource operationId: deviceManagement.configurationPolicyTemplates.GetCount-3262 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' /deviceManagement/configurationSettings: description: Provides operations to manage the configurationSettings property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementConfigurationSettingDefinition summary: Get configurationSettings from deviceManagement description: List of all ConfigurationSettings operationId: deviceManagement.ListConfigurationSettings 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.deviceManagementConfigurationSettingDefinitionCollectionResponse' 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: - deviceManagement.deviceManagementConfigurationSettingDefinition summary: Create new navigation property to configurationSettings for deviceManagement operationId: deviceManagement.CreateConfigurationSettings requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/configurationSettings/{deviceManagementConfigurationSettingDefinition-id}': description: Provides operations to manage the configurationSettings property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementConfigurationSettingDefinition summary: Get configurationSettings from deviceManagement description: List of all ConfigurationSettings operationId: deviceManagement.GetConfigurationSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementConfigurationSettingDefinition summary: Update the navigation property configurationSettings in deviceManagement operationId: deviceManagement.UpdateConfigurationSettings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementConfigurationSettingDefinition summary: Delete navigation property configurationSettings for deviceManagement operationId: deviceManagement.DeleteConfigurationSettings parameters: - 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: deviceManagementConfigurationSettingDefinition-id in: path description: The unique identifier of deviceManagementConfigurationSettingDefinition required: true schema: type: string x-ms-docs-key-type: deviceManagementConfigurationSettingDefinition /deviceManagement/configurationSettings/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementConfigurationSettingDefinition summary: Get the number of the resource operationId: deviceManagement.configurationSettings.GetCount-e8e0 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' /deviceManagement/dataSharingConsents: description: Provides operations to manage the dataSharingConsents property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.dataSharingConsent summary: Get dataSharingConsents from deviceManagement description: Data sharing consents. operationId: deviceManagement.ListDataSharingConsents 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.dataSharingConsentCollectionResponse' 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: - deviceManagement.dataSharingConsent summary: Create new navigation property to dataSharingConsents for deviceManagement operationId: deviceManagement.CreateDataSharingConsents requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.dataSharingConsent' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.dataSharingConsent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/dataSharingConsents/{dataSharingConsent-id}': description: Provides operations to manage the dataSharingConsents property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.dataSharingConsent summary: Get dataSharingConsents from deviceManagement description: Data sharing consents. operationId: deviceManagement.GetDataSharingConsents parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.dataSharingConsent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.dataSharingConsent summary: Update the navigation property dataSharingConsents in deviceManagement operationId: deviceManagement.UpdateDataSharingConsents requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.dataSharingConsent' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.dataSharingConsent' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.dataSharingConsent summary: Delete navigation property dataSharingConsents for deviceManagement operationId: deviceManagement.DeleteDataSharingConsents parameters: - 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: dataSharingConsent-id in: path description: The unique identifier of dataSharingConsent required: true schema: type: string x-ms-docs-key-type: dataSharingConsent '/deviceManagement/dataSharingConsents/{dataSharingConsent-id}/consentToDataSharing': description: Provides operations to call the consentToDataSharing method. post: tags: - deviceManagement.dataSharingConsent summary: Invoke action consentToDataSharing operationId: deviceManagement.dataSharingConsents.dataSharingConsent.consentToDataSharing responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.dataSharingConsent' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: dataSharingConsent-id in: path description: The unique identifier of dataSharingConsent required: true schema: type: string x-ms-docs-key-type: dataSharingConsent /deviceManagement/dataSharingConsents/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.dataSharingConsent summary: Get the number of the resource operationId: deviceManagement.dataSharingConsents.GetCount-1897 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' /deviceManagement/depOnboardingSettings: description: Provides operations to manage the depOnboardingSettings property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.depOnboardingSetting summary: Get depOnboardingSettings from deviceManagement description: This collections of multiple DEP tokens per-tenant. operationId: deviceManagement.ListDepOnboardingSettings 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.depOnboardingSettingCollectionResponse' 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: - deviceManagement.depOnboardingSetting summary: Create new navigation property to depOnboardingSettings for deviceManagement operationId: deviceManagement.CreateDepOnboardingSettings requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.depOnboardingSetting' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.depOnboardingSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}': description: Provides operations to manage the depOnboardingSettings property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.depOnboardingSetting summary: Get depOnboardingSettings from deviceManagement description: This collections of multiple DEP tokens per-tenant. operationId: deviceManagement.GetDepOnboardingSettings parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.depOnboardingSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.depOnboardingSetting summary: Update the navigation property depOnboardingSettings in deviceManagement operationId: deviceManagement.UpdateDepOnboardingSettings requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.depOnboardingSetting' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.depOnboardingSetting' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.depOnboardingSetting summary: Delete navigation property depOnboardingSettings for deviceManagement operationId: deviceManagement.DeleteDepOnboardingSettings parameters: - 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: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultIosEnrollmentProfile': description: Provides operations to manage the defaultIosEnrollmentProfile property of the microsoft.graph.depOnboardingSetting entity. get: tags: - deviceManagement.depOnboardingSetting summary: Get defaultIosEnrollmentProfile from deviceManagement description: Default iOS Enrollment Profile operationId: deviceManagement.depOnboardingSettings.GetDefaultIosEnrollmentProfile parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.depIOSEnrollmentProfile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultMacOsEnrollmentProfile': description: Provides operations to manage the defaultMacOsEnrollmentProfile property of the microsoft.graph.depOnboardingSetting entity. get: tags: - deviceManagement.depOnboardingSetting summary: Get defaultMacOsEnrollmentProfile from deviceManagement description: Default MacOs Enrollment Profile operationId: deviceManagement.depOnboardingSettings.GetDefaultMacOsEnrollmentProfile parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.depMacOSEnrollmentProfile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultTvOSEnrollmentProfile': description: Provides operations to manage the defaultTvOSEnrollmentProfile property of the microsoft.graph.depOnboardingSetting entity. get: tags: - deviceManagement.depOnboardingSetting summary: Get defaultTvOSEnrollmentProfile from deviceManagement description: Default TvOS Enrollment Profile operationId: deviceManagement.depOnboardingSettings.GetDefaultTvOSEnrollmentProfile parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.depTvOSEnrollmentProfile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultVisionOSEnrollmentProfile': description: Provides operations to manage the defaultVisionOSEnrollmentProfile property of the microsoft.graph.depOnboardingSetting entity. get: tags: - deviceManagement.depOnboardingSetting summary: Get defaultVisionOSEnrollmentProfile from deviceManagement description: Default VisionOS Enrollment Profile operationId: deviceManagement.depOnboardingSettings.GetDefaultVisionOSEnrollmentProfile parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.depVisionOSEnrollmentProfile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles': description: Provides operations to manage the enrollmentProfiles property of the microsoft.graph.depOnboardingSetting entity. get: tags: - deviceManagement.depOnboardingSetting summary: Get enrollmentProfiles from deviceManagement description: The enrollment profiles. operationId: deviceManagement.depOnboardingSettings.ListEnrollmentProfiles 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.enrollmentProfileCollectionResponse' 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: - deviceManagement.depOnboardingSetting summary: Create new navigation property to enrollmentProfiles for deviceManagement operationId: deviceManagement.depOnboardingSettings.CreateEnrollmentProfiles requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.enrollmentProfile' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.enrollmentProfile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}': description: Provides operations to manage the enrollmentProfiles property of the microsoft.graph.depOnboardingSetting entity. get: tags: - deviceManagement.depOnboardingSetting summary: Get enrollmentProfiles from deviceManagement description: The enrollment profiles. operationId: deviceManagement.depOnboardingSettings.GetEnrollmentProfiles parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.enrollmentProfile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.depOnboardingSetting summary: Update the navigation property enrollmentProfiles in deviceManagement operationId: deviceManagement.depOnboardingSettings.UpdateEnrollmentProfiles requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.enrollmentProfile' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.enrollmentProfile' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.depOnboardingSetting summary: Delete navigation property enrollmentProfiles for deviceManagement operationId: deviceManagement.depOnboardingSettings.DeleteEnrollmentProfiles parameters: - 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: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting - name: enrollmentProfile-id in: path description: The unique identifier of enrollmentProfile required: true schema: type: string x-ms-docs-key-type: enrollmentProfile '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}/exportMobileConfig()': description: Provides operations to call the exportMobileConfig method. get: tags: - deviceManagement.depOnboardingSetting summary: Invoke function exportMobileConfig description: Exports the mobile configuration operationId: deviceManagement.depOnboardingSettings.depOnboardingSetting.enrollmentProfiles.enrollmentProfile.exportMobileConfig responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting - name: enrollmentProfile-id in: path description: The unique identifier of enrollmentProfile required: true schema: type: string x-ms-docs-key-type: enrollmentProfile '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}/setDefaultProfile': description: Provides operations to call the setDefaultProfile method. post: tags: - deviceManagement.depOnboardingSetting summary: Invoke action setDefaultProfile operationId: deviceManagement.depOnboardingSettings.depOnboardingSetting.enrollmentProfiles.enrollmentProfile.setDefaultProfile responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting - name: enrollmentProfile-id in: path description: The unique identifier of enrollmentProfile required: true schema: type: string x-ms-docs-key-type: enrollmentProfile '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}/updateDeviceProfileAssignment': description: Provides operations to call the updateDeviceProfileAssignment method. post: tags: - deviceManagement.depOnboardingSetting summary: Invoke action updateDeviceProfileAssignment operationId: deviceManagement.depOnboardingSettings.depOnboardingSetting.enrollmentProfiles.enrollmentProfile.updateDeviceProfileAssignment requestBody: description: Action parameters content: application/json: schema: type: object properties: deviceIds: type: array items: 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: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting - name: enrollmentProfile-id in: path description: The unique identifier of enrollmentProfile required: true schema: type: string x-ms-docs-key-type: enrollmentProfile '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.depOnboardingSetting summary: Get the number of the resource operationId: deviceManagement.depOnboardingSettings.enrollmentProfiles.GetCount-0710 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: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities': description: Provides operations to manage the importedAppleDeviceIdentities property of the microsoft.graph.depOnboardingSetting entity. get: tags: - deviceManagement.depOnboardingSetting summary: Get importedAppleDeviceIdentities from deviceManagement description: The imported Apple device identities. operationId: deviceManagement.depOnboardingSettings.ListImportedAppleDeviceIdentities 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.importedAppleDeviceIdentityCollectionResponse' 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: - deviceManagement.depOnboardingSetting summary: Create new navigation property to importedAppleDeviceIdentities for deviceManagement operationId: deviceManagement.depOnboardingSettings.CreateImportedAppleDeviceIdentities requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.importedAppleDeviceIdentity' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.importedAppleDeviceIdentity' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/{importedAppleDeviceIdentity-id}': description: Provides operations to manage the importedAppleDeviceIdentities property of the microsoft.graph.depOnboardingSetting entity. get: tags: - deviceManagement.depOnboardingSetting summary: Get importedAppleDeviceIdentities from deviceManagement description: The imported Apple device identities. operationId: deviceManagement.depOnboardingSettings.GetImportedAppleDeviceIdentities parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.importedAppleDeviceIdentity' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.depOnboardingSetting summary: Update the navigation property importedAppleDeviceIdentities in deviceManagement operationId: deviceManagement.depOnboardingSettings.UpdateImportedAppleDeviceIdentities requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.importedAppleDeviceIdentity' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.importedAppleDeviceIdentity' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.depOnboardingSetting summary: Delete navigation property importedAppleDeviceIdentities for deviceManagement operationId: deviceManagement.depOnboardingSettings.DeleteImportedAppleDeviceIdentities parameters: - 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: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting - name: importedAppleDeviceIdentity-id in: path description: The unique identifier of importedAppleDeviceIdentity required: true schema: type: string x-ms-docs-key-type: importedAppleDeviceIdentity '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.depOnboardingSetting summary: Get the number of the resource operationId: deviceManagement.depOnboardingSettings.importedAppleDeviceIdentities.GetCount-1a85 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: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/importAppleDeviceIdentityList': description: Provides operations to call the importAppleDeviceIdentityList method. post: tags: - deviceManagement.depOnboardingSetting summary: Invoke action importAppleDeviceIdentityList operationId: deviceManagement.depOnboardingSettings.depOnboardingSetting.importedAppleDeviceIdentities.importAppleDeviceIdentityList requestBody: description: Action parameters content: application/json: schema: type: object properties: importedAppleDeviceIdentities: type: array items: $ref: '#/components/schemas/microsoft.graph.importedAppleDeviceIdentity' overwriteImportedDeviceIdentities: type: boolean default: false required: true responses: 2XX: description: Success content: application/json: schema: title: Collection of importedAppleDeviceIdentityResult type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.importedAppleDeviceIdentityResult' 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: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/generateEncryptionPublicKey': description: Provides operations to call the generateEncryptionPublicKey method. post: tags: - deviceManagement.depOnboardingSetting summary: Invoke action generateEncryptionPublicKey description: Generate a public key to use to encrypt the Apple device enrollment program token operationId: deviceManagement.depOnboardingSettings.depOnboardingSetting.generateEncryptionPublicKey responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/getEncryptionPublicKey()': description: Provides operations to call the getEncryptionPublicKey method. get: tags: - deviceManagement.depOnboardingSetting summary: Invoke function getEncryptionPublicKey description: Get a public key to use to encrypt the Apple device enrollment program token operationId: deviceManagement.depOnboardingSettings.depOnboardingSetting.getEncryptionPublicKey responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/shareForSchoolDataSyncService': description: Provides operations to call the shareForSchoolDataSyncService method. post: tags: - deviceManagement.depOnboardingSetting summary: Invoke action shareForSchoolDataSyncService operationId: deviceManagement.depOnboardingSettings.depOnboardingSetting.shareForSchoolDataSyncService responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/syncWithAppleDeviceEnrollmentProgram': description: Provides operations to call the syncWithAppleDeviceEnrollmentProgram method. post: tags: - deviceManagement.depOnboardingSetting summary: Invoke action syncWithAppleDeviceEnrollmentProgram description: Synchronizes between Apple Device Enrollment Program and Intune operationId: deviceManagement.depOnboardingSettings.depOnboardingSetting.syncWithAppleDeviceEnrollmentProgram responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/unshareForSchoolDataSyncService': description: Provides operations to call the unshareForSchoolDataSyncService method. post: tags: - deviceManagement.depOnboardingSetting summary: Invoke action unshareForSchoolDataSyncService operationId: deviceManagement.depOnboardingSettings.depOnboardingSetting.unshareForSchoolDataSyncService responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting '/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/uploadDepToken': description: Provides operations to call the uploadDepToken method. post: tags: - deviceManagement.depOnboardingSetting summary: Invoke action uploadDepToken description: Uploads a new Device Enrollment Program token operationId: deviceManagement.depOnboardingSettings.depOnboardingSetting.uploadDepToken requestBody: description: Action parameters content: application/json: schema: type: object properties: appleId: type: string nullable: true depToken: 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: depOnboardingSetting-id in: path description: The unique identifier of depOnboardingSetting required: true schema: type: string x-ms-docs-key-type: depOnboardingSetting /deviceManagement/depOnboardingSettings/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.depOnboardingSetting summary: Get the number of the resource operationId: deviceManagement.depOnboardingSettings.GetCount-7c8b 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' '/deviceManagement/depOnboardingSettings/getExpiringVppTokenCount(expiringBeforeDateTime=''{expiringBeforeDateTime}'')': description: Provides operations to call the getExpiringVppTokenCount method. get: tags: - deviceManagement.depOnboardingSetting summary: Invoke function getExpiringVppTokenCount operationId: deviceManagement.depOnboardingSettings.getExpiringVppTokenCount responses: 2XX: description: Success content: application/json: schema: type: object properties: value: maximum: 2147483647 minimum: -2147483648 type: number format: int32 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: expiringBeforeDateTime in: path description: 'Usage: expiringBeforeDateTime=''{expiringBeforeDateTime}''' required: true schema: type: string nullable: true /deviceManagement/derivedCredentials: description: Provides operations to manage the derivedCredentials property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementDerivedCredentialSettings summary: Get derivedCredentials from deviceManagement description: Collection of Derived credential settings associated with account. operationId: deviceManagement.ListDerivedCredentials 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.deviceManagementDerivedCredentialSettingsCollectionResponse' 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: - deviceManagement.deviceManagementDerivedCredentialSettings summary: Create new navigation property to derivedCredentials for deviceManagement operationId: deviceManagement.CreateDerivedCredentials requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementDerivedCredentialSettings' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementDerivedCredentialSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/derivedCredentials/{deviceManagementDerivedCredentialSettings-id}': description: Provides operations to manage the derivedCredentials property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceManagementDerivedCredentialSettings summary: Get derivedCredentials from deviceManagement description: Collection of Derived credential settings associated with account. operationId: deviceManagement.GetDerivedCredentials parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementDerivedCredentialSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceManagementDerivedCredentialSettings summary: Update the navigation property derivedCredentials in deviceManagement operationId: deviceManagement.UpdateDerivedCredentials requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementDerivedCredentialSettings' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementDerivedCredentialSettings' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceManagementDerivedCredentialSettings summary: Delete navigation property derivedCredentials for deviceManagement operationId: deviceManagement.DeleteDerivedCredentials parameters: - 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: deviceManagementDerivedCredentialSettings-id in: path description: The unique identifier of deviceManagementDerivedCredentialSettings required: true schema: type: string x-ms-docs-key-type: deviceManagementDerivedCredentialSettings /deviceManagement/derivedCredentials/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceManagementDerivedCredentialSettings summary: Get the number of the resource operationId: deviceManagement.derivedCredentials.GetCount-31bc 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' /deviceManagement/detectedApps: description: Provides operations to manage the detectedApps property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.detectedApp summary: Get detectedApps from deviceManagement description: The list of detected apps associated with a device. operationId: deviceManagement.ListDetectedApps 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.detectedAppCollectionResponse' 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: - deviceManagement.detectedApp summary: Create new navigation property to detectedApps for deviceManagement operationId: deviceManagement.CreateDetectedApps requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.detectedApp' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.detectedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/detectedApps/{detectedApp-id}': description: Provides operations to manage the detectedApps property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.detectedApp summary: Get detectedApps from deviceManagement description: The list of detected apps associated with a device. operationId: deviceManagement.GetDetectedApps parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.detectedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.detectedApp summary: Update the navigation property detectedApps in deviceManagement operationId: deviceManagement.UpdateDetectedApps requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.detectedApp' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.detectedApp' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.detectedApp summary: Delete navigation property detectedApps for deviceManagement operationId: deviceManagement.DeleteDetectedApps parameters: - 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: detectedApp-id in: path description: The unique identifier of detectedApp required: true schema: type: string x-ms-docs-key-type: detectedApp '/deviceManagement/detectedApps/{detectedApp-id}/managedDevices': description: Provides operations to manage the managedDevices property of the microsoft.graph.detectedApp entity. get: tags: - deviceManagement.detectedApp summary: Get managedDevices from deviceManagement description: The devices that have the discovered application installed operationId: deviceManagement.detectedApps.ListManagedDevices 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.managedDeviceCollectionResponse' 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: detectedApp-id in: path description: The unique identifier of detectedApp required: true schema: type: string x-ms-docs-key-type: detectedApp '/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/{managedDevice-id}': description: Provides operations to manage the managedDevices property of the microsoft.graph.detectedApp entity. get: tags: - deviceManagement.detectedApp summary: Get managedDevices from deviceManagement description: The devices that have the discovered application installed operationId: deviceManagement.detectedApps.GetManagedDevices parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDevice' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: detectedApp-id in: path description: The unique identifier of detectedApp required: true schema: type: string x-ms-docs-key-type: detectedApp - name: managedDevice-id in: path description: The unique identifier of managedDevice required: true schema: type: string x-ms-docs-key-type: managedDevice '/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.detectedApp summary: Get the number of the resource operationId: deviceManagement.detectedApps.managedDevices.GetCount-d78c 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: detectedApp-id in: path description: The unique identifier of detectedApp required: true schema: type: string x-ms-docs-key-type: detectedApp /deviceManagement/detectedApps/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.detectedApp summary: Get the number of the resource operationId: deviceManagement.detectedApps.GetCount-0228 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' /deviceManagement/deviceCategories: description: Provides operations to manage the deviceCategories property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceCategory summary: Get deviceCategories from deviceManagement description: The list of device categories with the tenant. operationId: deviceManagement.ListDeviceCategories 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.deviceCategoryCollectionResponse' 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: - deviceManagement.deviceCategory summary: Create new navigation property to deviceCategories for deviceManagement operationId: deviceManagement.CreateDeviceCategories requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCategory' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/deviceCategories/{deviceCategory-id}': description: Provides operations to manage the deviceCategories property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceCategory summary: Get deviceCategories from deviceManagement description: The list of device categories with the tenant. operationId: deviceManagement.GetDeviceCategories parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCategory summary: Update the navigation property deviceCategories in deviceManagement operationId: deviceManagement.UpdateDeviceCategories requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCategory' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCategory' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCategory summary: Delete navigation property deviceCategories for deviceManagement operationId: deviceManagement.DeleteDeviceCategories parameters: - 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: deviceCategory-id in: path description: The unique identifier of deviceCategory required: true schema: type: string x-ms-docs-key-type: deviceCategory /deviceManagement/deviceCategories/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceCategory summary: Get the number of the resource operationId: deviceManagement.deviceCategories.GetCount-ed54 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' /deviceManagement/deviceCompliancePolicies: description: Provides operations to manage the deviceCompliancePolicies property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceCompliancePolicies from deviceManagement description: The device compliance policies. operationId: deviceManagement.ListDeviceCompliancePolicies 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.deviceCompliancePolicyCollectionResponse' 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: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to deviceCompliancePolicies for deviceManagement operationId: deviceManagement.CreateDeviceCompliancePolicies requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicy' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}': description: Provides operations to manage the deviceCompliancePolicies property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceCompliancePolicies from deviceManagement description: The device compliance policies. operationId: deviceManagement.GetDeviceCompliancePolicies parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property deviceCompliancePolicies in deviceManagement operationId: deviceManagement.UpdateDeviceCompliancePolicies requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicy' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicy' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property deviceCompliancePolicies for deviceManagement operationId: deviceManagement.DeleteDeviceCompliancePolicies parameters: - 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: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.deviceCompliancePolicy entity. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get assignments from deviceManagement description: The collection of assignments for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies.ListAssignments 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.deviceCompliancePolicyAssignmentCollectionResponse' 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: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to assignments for deviceManagement operationId: deviceManagement.deviceCompliancePolicies.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.deviceCompliancePolicy entity. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get assignments from deviceManagement description: The collection of assignments for this compliance policy. operationId: deviceManagement.deviceCompliancePolicies.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property assignments in deviceManagement operationId: deviceManagement.deviceCompliancePolicies.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property assignments for deviceManagement operationId: deviceManagement.deviceCompliancePolicies.DeleteAssignments parameters: - 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: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy - name: deviceCompliancePolicyAssignment-id in: path description: The unique identifier of deviceCompliancePolicyAssignment required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicyAssignment '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get the number of the resource operationId: deviceManagement.deviceCompliancePolicies.assignments.GetCount-332a 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: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries': description: Provides operations to manage the deviceSettingStateSummaries property of the microsoft.graph.deviceCompliancePolicy entity. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceSettingStateSummaries from deviceManagement description: Compliance Setting State Device Summary operationId: deviceManagement.deviceCompliancePolicies.ListDeviceSettingStateSummaries 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.settingStateDeviceSummaryCollectionResponse' 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: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to deviceSettingStateSummaries for deviceManagement operationId: deviceManagement.deviceCompliancePolicies.CreateDeviceSettingStateSummaries requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.settingStateDeviceSummary' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.settingStateDeviceSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}': description: Provides operations to manage the deviceSettingStateSummaries property of the microsoft.graph.deviceCompliancePolicy entity. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceSettingStateSummaries from deviceManagement description: Compliance Setting State Device Summary operationId: deviceManagement.deviceCompliancePolicies.GetDeviceSettingStateSummaries parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.settingStateDeviceSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property deviceSettingStateSummaries in deviceManagement operationId: deviceManagement.deviceCompliancePolicies.UpdateDeviceSettingStateSummaries requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.settingStateDeviceSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.settingStateDeviceSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property deviceSettingStateSummaries for deviceManagement operationId: deviceManagement.deviceCompliancePolicies.DeleteDeviceSettingStateSummaries parameters: - 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: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy - name: settingStateDeviceSummary-id in: path description: The unique identifier of settingStateDeviceSummary required: true schema: type: string x-ms-docs-key-type: settingStateDeviceSummary '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get the number of the resource operationId: deviceManagement.deviceCompliancePolicies.deviceSettingStateSummaries.GetCount-6b27 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: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses': description: Provides operations to manage the deviceStatuses property of the microsoft.graph.deviceCompliancePolicy entity. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceStatuses from deviceManagement description: List of DeviceComplianceDeviceStatus. operationId: deviceManagement.deviceCompliancePolicies.ListDeviceStatuses 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.deviceComplianceDeviceStatusCollectionResponse' 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: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to deviceStatuses for deviceManagement operationId: deviceManagement.deviceCompliancePolicies.CreateDeviceStatuses requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceDeviceStatus' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceDeviceStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}': description: Provides operations to manage the deviceStatuses property of the microsoft.graph.deviceCompliancePolicy entity. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceStatuses from deviceManagement description: List of DeviceComplianceDeviceStatus. operationId: deviceManagement.deviceCompliancePolicies.GetDeviceStatuses parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceDeviceStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property deviceStatuses in deviceManagement operationId: deviceManagement.deviceCompliancePolicies.UpdateDeviceStatuses requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceDeviceStatus' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceDeviceStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property deviceStatuses for deviceManagement operationId: deviceManagement.deviceCompliancePolicies.DeleteDeviceStatuses parameters: - 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: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy - name: deviceComplianceDeviceStatus-id in: path description: The unique identifier of deviceComplianceDeviceStatus required: true schema: type: string x-ms-docs-key-type: deviceComplianceDeviceStatus '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get the number of the resource operationId: deviceManagement.deviceCompliancePolicies.deviceStatuses.GetCount-f70b 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: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview': description: Provides operations to manage the deviceStatusOverview property of the microsoft.graph.deviceCompliancePolicy entity. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get deviceStatusOverview from deviceManagement description: Device compliance devices status overview operationId: deviceManagement.deviceCompliancePolicies.GetDeviceStatusOverview parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceDeviceOverview' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property deviceStatusOverview in deviceManagement operationId: deviceManagement.deviceCompliancePolicies.UpdateDeviceStatusOverview requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceDeviceOverview' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceDeviceOverview' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property deviceStatusOverview for deviceManagement operationId: deviceManagement.deviceCompliancePolicies.DeleteDeviceStatusOverview parameters: - 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: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assign': description: Provides operations to call the assign method. post: tags: - deviceManagement.deviceCompliancePolicy summary: Invoke action assign operationId: deviceManagement.deviceCompliancePolicies.deviceCompliancePolicy.assign requestBody: description: Action parameters content: application/json: schema: type: object properties: assignments: type: array items: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyAssignment' required: true responses: 2XX: description: Success content: application/json: schema: title: Collection of deviceCompliancePolicyAssignment type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyAssignment' 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: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy x-ms-docs-grouped-path: - '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assign' - '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assign' - '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/assign' - '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assign' - '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/assign' - '/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assign' - '/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assign' - '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assign' - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assign' - '/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assign' - '/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assign' - '/deviceManagement/hardwareConfigurations/{hardwareConfiguration-id}/assign' - '/deviceManagement/intents/{deviceManagementIntent-id}/assign' - '/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assign' - '/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assign' - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/assign' - '/deviceManagement/roleScopeTags/{roleScopeTag-id}/assign' - '/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assign' - '/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assign' - '/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assign' - '/deviceManagement/windowsDriverUpdateProfiles/{windowsDriverUpdateProfile-id}/assign' - '/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assign' - '/deviceManagement/windowsQualityUpdatePolicies/{windowsQualityUpdatePolicy-id}/assign' - '/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assign' '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduleActionsForRules': description: Provides operations to call the scheduleActionsForRules method. post: tags: - deviceManagement.deviceCompliancePolicy summary: Invoke action scheduleActionsForRules operationId: deviceManagement.deviceCompliancePolicies.deviceCompliancePolicy.scheduleActionsForRules requestBody: description: Action parameters content: application/json: schema: type: object properties: deviceComplianceScheduledActionForRules: type: array items: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScheduledActionForRule' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule': description: Provides operations to manage the scheduledActionsForRule property of the microsoft.graph.deviceCompliancePolicy entity. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get scheduledActionsForRule from deviceManagement description: The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. operationId: deviceManagement.deviceCompliancePolicies.ListScheduledActionsForRule 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.deviceComplianceScheduledActionForRuleCollectionResponse' 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: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to scheduledActionsForRule for deviceManagement operationId: deviceManagement.deviceCompliancePolicies.CreateScheduledActionsForRule requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScheduledActionForRule' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScheduledActionForRule' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}': description: Provides operations to manage the scheduledActionsForRule property of the microsoft.graph.deviceCompliancePolicy entity. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get scheduledActionsForRule from deviceManagement description: The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. operationId: deviceManagement.deviceCompliancePolicies.GetScheduledActionsForRule parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScheduledActionForRule' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property scheduledActionsForRule in deviceManagement operationId: deviceManagement.deviceCompliancePolicies.UpdateScheduledActionsForRule requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScheduledActionForRule' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScheduledActionForRule' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property scheduledActionsForRule for deviceManagement operationId: deviceManagement.deviceCompliancePolicies.DeleteScheduledActionsForRule parameters: - 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: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy - name: deviceComplianceScheduledActionForRule-id in: path description: The unique identifier of deviceComplianceScheduledActionForRule required: true schema: type: string x-ms-docs-key-type: deviceComplianceScheduledActionForRule '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations': description: Provides operations to manage the scheduledActionConfigurations property of the microsoft.graph.deviceComplianceScheduledActionForRule entity. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get scheduledActionConfigurations from deviceManagement description: The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsForRule.ListScheduledActionConfigurations 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.deviceComplianceActionItemCollectionResponse' 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: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to scheduledActionConfigurations for deviceManagement operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsForRule.CreateScheduledActionConfigurations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceActionItem' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceActionItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy - name: deviceComplianceScheduledActionForRule-id in: path description: The unique identifier of deviceComplianceScheduledActionForRule required: true schema: type: string x-ms-docs-key-type: deviceComplianceScheduledActionForRule '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}': description: Provides operations to manage the scheduledActionConfigurations property of the microsoft.graph.deviceComplianceScheduledActionForRule entity. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get scheduledActionConfigurations from deviceManagement description: The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsForRule.GetScheduledActionConfigurations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceActionItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property scheduledActionConfigurations in deviceManagement operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsForRule.UpdateScheduledActionConfigurations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceActionItem' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceActionItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property scheduledActionConfigurations for deviceManagement operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsForRule.DeleteScheduledActionConfigurations parameters: - 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: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy - name: deviceComplianceScheduledActionForRule-id in: path description: The unique identifier of deviceComplianceScheduledActionForRule required: true schema: type: string x-ms-docs-key-type: deviceComplianceScheduledActionForRule - name: deviceComplianceActionItem-id in: path description: The unique identifier of deviceComplianceActionItem required: true schema: type: string x-ms-docs-key-type: deviceComplianceActionItem '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get the number of the resource operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsForRule.scheduledActionConfigurations.GetCount-b4b5 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: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy - name: deviceComplianceScheduledActionForRule-id in: path description: The unique identifier of deviceComplianceScheduledActionForRule required: true schema: type: string x-ms-docs-key-type: deviceComplianceScheduledActionForRule '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get the number of the resource operationId: deviceManagement.deviceCompliancePolicies.scheduledActionsForRule.GetCount-afd5 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: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses': description: Provides operations to manage the userStatuses property of the microsoft.graph.deviceCompliancePolicy entity. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get userStatuses from deviceManagement description: List of DeviceComplianceUserStatus. operationId: deviceManagement.deviceCompliancePolicies.ListUserStatuses 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.deviceComplianceUserStatusCollectionResponse' 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: - deviceManagement.deviceCompliancePolicy summary: Create new navigation property to userStatuses for deviceManagement operationId: deviceManagement.deviceCompliancePolicies.CreateUserStatuses requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceUserStatus' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceUserStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}': description: Provides operations to manage the userStatuses property of the microsoft.graph.deviceCompliancePolicy entity. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get userStatuses from deviceManagement description: List of DeviceComplianceUserStatus. operationId: deviceManagement.deviceCompliancePolicies.GetUserStatuses parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceUserStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property userStatuses in deviceManagement operationId: deviceManagement.deviceCompliancePolicies.UpdateUserStatuses requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceUserStatus' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceUserStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property userStatuses for deviceManagement operationId: deviceManagement.deviceCompliancePolicies.DeleteUserStatuses parameters: - 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: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy - name: deviceComplianceUserStatus-id in: path description: The unique identifier of deviceComplianceUserStatus required: true schema: type: string x-ms-docs-key-type: deviceComplianceUserStatus '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get the number of the resource operationId: deviceManagement.deviceCompliancePolicies.userStatuses.GetCount-fa4a 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: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview': description: Provides operations to manage the userStatusOverview property of the microsoft.graph.deviceCompliancePolicy entity. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get userStatusOverview from deviceManagement description: Device compliance users status overview operationId: deviceManagement.deviceCompliancePolicies.GetUserStatusOverview parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceUserOverview' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCompliancePolicy summary: Update the navigation property userStatusOverview in deviceManagement operationId: deviceManagement.deviceCompliancePolicies.UpdateUserStatusOverview requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceUserOverview' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceUserOverview' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCompliancePolicy summary: Delete navigation property userStatusOverview for deviceManagement operationId: deviceManagement.deviceCompliancePolicies.DeleteUserStatusOverview parameters: - 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: deviceCompliancePolicy-id in: path description: The unique identifier of deviceCompliancePolicy required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicy /deviceManagement/deviceCompliancePolicies/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceCompliancePolicy summary: Get the number of the resource operationId: deviceManagement.deviceCompliancePolicies.GetCount-6c5d 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' /deviceManagement/deviceCompliancePolicies/getDevicesScheduledToRetire(): description: Provides operations to call the getDevicesScheduledToRetire method. get: tags: - deviceManagement.deviceCompliancePolicy summary: Invoke function getDevicesScheduledToRetire operationId: deviceManagement.deviceCompliancePolicies.getDevicesScheduledToRetire 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.retireScheduledManagedDevice' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceManagement/deviceCompliancePolicies/getNoncompliantDevicesToRetire: description: Provides operations to call the getNoncompliantDevicesToRetire method. post: tags: - deviceManagement.deviceCompliancePolicy summary: Invoke action getNoncompliantDevicesToRetire operationId: deviceManagement.deviceCompliancePolicies.getNoncompliantDevicesToRetire requestBody: description: Action parameters content: application/json: schema: type: object properties: name: type: string nullable: true select: type: array items: type: string nullable: true search: type: string nullable: true groupBy: type: array items: type: string nullable: true orderBy: type: array items: type: string nullable: true skip: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true top: maximum: 2147483647 minimum: -2147483648 type: number format: int32 nullable: true sessionId: type: string nullable: true filter: type: string nullable: true required: true responses: 2XX: description: Success content: application/octet-stream: schema: type: object properties: value: type: string format: base64url nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /deviceManagement/deviceCompliancePolicies/hasPayloadLinks: description: Provides operations to call the hasPayloadLinks method. post: tags: - deviceManagement.deviceCompliancePolicy summary: Invoke action hasPayloadLinks operationId: deviceManagement.deviceCompliancePolicies.hasPayloadLinks requestBody: description: Action parameters content: application/json: schema: type: object properties: payloadIds: type: array items: type: string 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.hasPayloadLinkResultItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-grouped-path: - /deviceManagement/deviceConfigurations/hasPayloadLinks - /deviceManagement/deviceEnrollmentConfigurations/hasPayloadLinks - /deviceManagement/deviceManagementScripts/hasPayloadLinks - /deviceManagement/windowsAutopilotDeploymentProfiles/hasPayloadLinks /deviceManagement/deviceCompliancePolicies/refreshDeviceComplianceReportSummarization: description: Provides operations to call the refreshDeviceComplianceReportSummarization method. post: tags: - deviceManagement.deviceCompliancePolicy summary: Invoke action refreshDeviceComplianceReportSummarization operationId: deviceManagement.deviceCompliancePolicies.refreshDeviceComplianceReportSummarization responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /deviceManagement/deviceCompliancePolicies/setScheduledRetireState: description: Provides operations to call the setScheduledRetireState method. post: tags: - deviceManagement.deviceCompliancePolicy summary: Invoke action setScheduledRetireState operationId: deviceManagement.deviceCompliancePolicies.setScheduledRetireState requestBody: description: Action parameters content: application/json: schema: type: object properties: scopedToAllDevices: type: boolean default: false nullable: true state: $ref: '#/components/schemas/microsoft.graph.scheduledRetireState' managedDeviceIds: type: array items: 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 /deviceManagement/deviceCompliancePolicies/validateComplianceScript: description: Provides operations to call the validateComplianceScript method. post: tags: - deviceManagement.deviceCompliancePolicy summary: Invoke action validateComplianceScript operationId: deviceManagement.deviceCompliancePolicies.validateComplianceScript requestBody: description: Action parameters content: application/json: schema: type: object properties: deviceCompliancePolicyScript: anyOf: - $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyScript' - type: object nullable: true required: true responses: 2XX: description: Success content: application/json: schema: anyOf: - $ref: '#/components/schemas/microsoft.graph.deviceComplianceScriptValidationResult' - type: object nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action /deviceManagement/deviceCompliancePolicyDeviceStateSummary: description: Provides operations to manage the deviceCompliancePolicyDeviceStateSummary property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceCompliancePolicyDeviceStateSummary summary: Get deviceCompliancePolicyDeviceStateSummary from deviceManagement description: The device compliance state summary for this account. operationId: deviceManagement.GetDeviceCompliancePolicyDeviceStateSummary parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyDeviceStateSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCompliancePolicyDeviceStateSummary summary: Update the navigation property deviceCompliancePolicyDeviceStateSummary in deviceManagement operationId: deviceManagement.UpdateDeviceCompliancePolicyDeviceStateSummary requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyDeviceStateSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicyDeviceStateSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCompliancePolicyDeviceStateSummary summary: Delete navigation property deviceCompliancePolicyDeviceStateSummary for deviceManagement operationId: deviceManagement.DeleteDeviceCompliancePolicyDeviceStateSummary parameters: - 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 /deviceManagement/deviceCompliancePolicySettingStateSummaries: description: Provides operations to manage the deviceCompliancePolicySettingStateSummaries property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Get deviceCompliancePolicySettingStateSummaries from deviceManagement description: The summary states of compliance policy settings for this account. operationId: deviceManagement.ListDeviceCompliancePolicySettingStateSummaries 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.deviceCompliancePolicySettingStateSummaryCollectionResponse' 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: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Create new navigation property to deviceCompliancePolicySettingStateSummaries for deviceManagement operationId: deviceManagement.CreateDeviceCompliancePolicySettingStateSummaries requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicySettingStateSummary' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicySettingStateSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}': description: Provides operations to manage the deviceCompliancePolicySettingStateSummaries property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Get deviceCompliancePolicySettingStateSummaries from deviceManagement description: The summary states of compliance policy settings for this account. operationId: deviceManagement.GetDeviceCompliancePolicySettingStateSummaries parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicySettingStateSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Update the navigation property deviceCompliancePolicySettingStateSummaries in deviceManagement operationId: deviceManagement.UpdateDeviceCompliancePolicySettingStateSummaries requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicySettingStateSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCompliancePolicySettingStateSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Delete navigation property deviceCompliancePolicySettingStateSummaries for deviceManagement operationId: deviceManagement.DeleteDeviceCompliancePolicySettingStateSummaries parameters: - 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: deviceCompliancePolicySettingStateSummary-id in: path description: The unique identifier of deviceCompliancePolicySettingStateSummary required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicySettingStateSummary '/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates': description: Provides operations to manage the deviceComplianceSettingStates property of the microsoft.graph.deviceCompliancePolicySettingStateSummary entity. get: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Get deviceComplianceSettingStates from deviceManagement operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries.ListDeviceComplianceSettingStates 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.deviceComplianceSettingStateCollectionResponse' 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: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Create new navigation property to deviceComplianceSettingStates for deviceManagement operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries.CreateDeviceComplianceSettingStates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceSettingState' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceSettingState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceCompliancePolicySettingStateSummary-id in: path description: The unique identifier of deviceCompliancePolicySettingStateSummary required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicySettingStateSummary '/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}': description: Provides operations to manage the deviceComplianceSettingStates property of the microsoft.graph.deviceCompliancePolicySettingStateSummary entity. get: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Get deviceComplianceSettingStates from deviceManagement operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries.GetDeviceComplianceSettingStates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceSettingState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Update the navigation property deviceComplianceSettingStates in deviceManagement operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries.UpdateDeviceComplianceSettingStates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceSettingState' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceSettingState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Delete navigation property deviceComplianceSettingStates for deviceManagement operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries.DeleteDeviceComplianceSettingStates parameters: - 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: deviceCompliancePolicySettingStateSummary-id in: path description: The unique identifier of deviceCompliancePolicySettingStateSummary required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicySettingStateSummary - name: deviceComplianceSettingState-id in: path description: The unique identifier of deviceComplianceSettingState required: true schema: type: string x-ms-docs-key-type: deviceComplianceSettingState '/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Get the number of the resource operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries.deviceComplianceSettingStates.GetCount-49c2 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: deviceCompliancePolicySettingStateSummary-id in: path description: The unique identifier of deviceCompliancePolicySettingStateSummary required: true schema: type: string x-ms-docs-key-type: deviceCompliancePolicySettingStateSummary /deviceManagement/deviceCompliancePolicySettingStateSummaries/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceCompliancePolicySettingStateSummary summary: Get the number of the resource operationId: deviceManagement.deviceCompliancePolicySettingStateSummaries.GetCount-ca06 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' /deviceManagement/deviceComplianceScripts: description: Provides operations to manage the deviceComplianceScripts property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceComplianceScript summary: Get deviceComplianceScripts from deviceManagement description: The list of device compliance scripts associated with the tenant. operationId: deviceManagement.ListDeviceComplianceScripts 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.deviceComplianceScriptCollectionResponse' 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: - deviceManagement.deviceComplianceScript summary: Create new navigation property to deviceComplianceScripts for deviceManagement operationId: deviceManagement.CreateDeviceComplianceScripts requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScript' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScript' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}': description: Provides operations to manage the deviceComplianceScripts property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceComplianceScript summary: Get deviceComplianceScripts from deviceManagement description: The list of device compliance scripts associated with the tenant. operationId: deviceManagement.GetDeviceComplianceScripts parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScript' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceComplianceScript summary: Update the navigation property deviceComplianceScripts in deviceManagement operationId: deviceManagement.UpdateDeviceComplianceScripts requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScript' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScript' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceComplianceScript summary: Delete navigation property deviceComplianceScripts for deviceManagement operationId: deviceManagement.DeleteDeviceComplianceScripts parameters: - 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: deviceComplianceScript-id in: path description: The unique identifier of deviceComplianceScript required: true schema: type: string x-ms-docs-key-type: deviceComplianceScript '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.deviceComplianceScript entity. get: tags: - deviceManagement.deviceComplianceScript summary: Get assignments from deviceManagement description: The list of group assignments for the device compliance script operationId: deviceManagement.deviceComplianceScripts.ListAssignments 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.deviceHealthScriptAssignmentCollectionResponse' 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: - deviceManagement.deviceComplianceScript summary: Create new navigation property to assignments for deviceManagement operationId: deviceManagement.deviceComplianceScripts.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceHealthScriptAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceHealthScriptAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceComplianceScript-id in: path description: The unique identifier of deviceComplianceScript required: true schema: type: string x-ms-docs-key-type: deviceComplianceScript '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/assignments/{deviceHealthScriptAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.deviceComplianceScript entity. get: tags: - deviceManagement.deviceComplianceScript summary: Get assignments from deviceManagement description: The list of group assignments for the device compliance script operationId: deviceManagement.deviceComplianceScripts.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceHealthScriptAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceComplianceScript summary: Update the navigation property assignments in deviceManagement operationId: deviceManagement.deviceComplianceScripts.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceHealthScriptAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceHealthScriptAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceComplianceScript summary: Delete navigation property assignments for deviceManagement operationId: deviceManagement.deviceComplianceScripts.DeleteAssignments parameters: - 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: deviceComplianceScript-id in: path description: The unique identifier of deviceComplianceScript required: true schema: type: string x-ms-docs-key-type: deviceComplianceScript - name: deviceHealthScriptAssignment-id in: path description: The unique identifier of deviceHealthScriptAssignment required: true schema: type: string x-ms-docs-key-type: deviceHealthScriptAssignment '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceComplianceScript summary: Get the number of the resource operationId: deviceManagement.deviceComplianceScripts.assignments.GetCount-ed97 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: deviceComplianceScript-id in: path description: The unique identifier of deviceComplianceScript required: true schema: type: string x-ms-docs-key-type: deviceComplianceScript '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates': description: Provides operations to manage the deviceRunStates property of the microsoft.graph.deviceComplianceScript entity. get: tags: - deviceManagement.deviceComplianceScript summary: Get deviceRunStates from deviceManagement description: List of run states for the device compliance script across all devices operationId: deviceManagement.deviceComplianceScripts.ListDeviceRunStates 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.deviceComplianceScriptDeviceStateCollectionResponse' 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: - deviceManagement.deviceComplianceScript summary: Create new navigation property to deviceRunStates for deviceManagement operationId: deviceManagement.deviceComplianceScripts.CreateDeviceRunStates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScriptDeviceState' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScriptDeviceState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceComplianceScript-id in: path description: The unique identifier of deviceComplianceScript required: true schema: type: string x-ms-docs-key-type: deviceComplianceScript '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}': description: Provides operations to manage the deviceRunStates property of the microsoft.graph.deviceComplianceScript entity. get: tags: - deviceManagement.deviceComplianceScript summary: Get deviceRunStates from deviceManagement description: List of run states for the device compliance script across all devices operationId: deviceManagement.deviceComplianceScripts.GetDeviceRunStates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScriptDeviceState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceComplianceScript summary: Update the navigation property deviceRunStates in deviceManagement operationId: deviceManagement.deviceComplianceScripts.UpdateDeviceRunStates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScriptDeviceState' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScriptDeviceState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceComplianceScript summary: Delete navigation property deviceRunStates for deviceManagement operationId: deviceManagement.deviceComplianceScripts.DeleteDeviceRunStates parameters: - 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: deviceComplianceScript-id in: path description: The unique identifier of deviceComplianceScript required: true schema: type: string x-ms-docs-key-type: deviceComplianceScript - name: deviceComplianceScriptDeviceState-id in: path description: The unique identifier of deviceComplianceScriptDeviceState required: true schema: type: string x-ms-docs-key-type: deviceComplianceScriptDeviceState '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/{deviceComplianceScriptDeviceState-id}/managedDevice': description: Provides operations to manage the managedDevice property of the microsoft.graph.deviceComplianceScriptDeviceState entity. get: tags: - deviceManagement.deviceComplianceScript summary: Get managedDevice from deviceManagement description: The managed device on which the device compliance script executed operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.GetManagedDevice parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDevice' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceComplianceScript-id in: path description: The unique identifier of deviceComplianceScript required: true schema: type: string x-ms-docs-key-type: deviceComplianceScript - name: deviceComplianceScriptDeviceState-id in: path description: The unique identifier of deviceComplianceScriptDeviceState required: true schema: type: string x-ms-docs-key-type: deviceComplianceScriptDeviceState '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/deviceRunStates/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceComplianceScript summary: Get the number of the resource operationId: deviceManagement.deviceComplianceScripts.deviceRunStates.GetCount-711d 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: deviceComplianceScript-id in: path description: The unique identifier of deviceComplianceScript required: true schema: type: string x-ms-docs-key-type: deviceComplianceScript '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/assign': description: Provides operations to call the assign method. post: tags: - deviceManagement.deviceComplianceScript summary: Invoke action assign operationId: deviceManagement.deviceComplianceScripts.deviceComplianceScript.assign requestBody: description: Action parameters content: application/json: schema: type: object properties: deviceHealthScriptAssignments: type: array items: $ref: '#/components/schemas/microsoft.graph.deviceHealthScriptAssignment' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deviceComplianceScript-id in: path description: The unique identifier of deviceComplianceScript required: true schema: type: string x-ms-docs-key-type: deviceComplianceScript x-ms-docs-grouped-path: - '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assign' - '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assign' - '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assign' - '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assign' - '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/assign' - '/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assign' - '/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assign' - '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assign' - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assign' - '/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assign' - '/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assign' - '/deviceManagement/hardwareConfigurations/{hardwareConfiguration-id}/assign' - '/deviceManagement/intents/{deviceManagementIntent-id}/assign' - '/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assign' - '/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assign' - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/assign' - '/deviceManagement/roleScopeTags/{roleScopeTag-id}/assign' - '/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assign' - '/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assign' - '/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assign' - '/deviceManagement/windowsDriverUpdateProfiles/{windowsDriverUpdateProfile-id}/assign' - '/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assign' - '/deviceManagement/windowsQualityUpdatePolicies/{windowsQualityUpdatePolicy-id}/assign' - '/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assign' '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/runSummary': description: Provides operations to manage the runSummary property of the microsoft.graph.deviceComplianceScript entity. get: tags: - deviceManagement.deviceComplianceScript summary: Get runSummary from deviceManagement description: High level run summary for device compliance script. operationId: deviceManagement.deviceComplianceScripts.GetRunSummary parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScriptRunSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceComplianceScript summary: Update the navigation property runSummary in deviceManagement operationId: deviceManagement.deviceComplianceScripts.UpdateRunSummary requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScriptRunSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceComplianceScriptRunSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceComplianceScript summary: Delete navigation property runSummary for deviceManagement operationId: deviceManagement.deviceComplianceScripts.DeleteRunSummary parameters: - 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: deviceComplianceScript-id in: path description: The unique identifier of deviceComplianceScript required: true schema: type: string x-ms-docs-key-type: deviceComplianceScript /deviceManagement/deviceComplianceScripts/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceComplianceScript summary: Get the number of the resource operationId: deviceManagement.deviceComplianceScripts.GetCount-4062 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' /deviceManagement/deviceConfigurationConflictSummary: description: Provides operations to manage the deviceConfigurationConflictSummary property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceConfigurationConflictSummary summary: Get deviceConfigurationConflictSummary from deviceManagement description: Summary of policies in conflict state for this account. operationId: deviceManagement.ListDeviceConfigurationConflictSummary 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.deviceConfigurationConflictSummaryCollectionResponse' 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: - deviceManagement.deviceConfigurationConflictSummary summary: Create new navigation property to deviceConfigurationConflictSummary for deviceManagement operationId: deviceManagement.CreateDeviceConfigurationConflictSummary requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationConflictSummary' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationConflictSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/deviceConfigurationConflictSummary/{deviceConfigurationConflictSummary-id}': description: Provides operations to manage the deviceConfigurationConflictSummary property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceConfigurationConflictSummary summary: Get deviceConfigurationConflictSummary from deviceManagement description: Summary of policies in conflict state for this account. operationId: deviceManagement.GetDeviceConfigurationConflictSummary parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationConflictSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceConfigurationConflictSummary summary: Update the navigation property deviceConfigurationConflictSummary in deviceManagement operationId: deviceManagement.UpdateDeviceConfigurationConflictSummary requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationConflictSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationConflictSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceConfigurationConflictSummary summary: Delete navigation property deviceConfigurationConflictSummary for deviceManagement operationId: deviceManagement.DeleteDeviceConfigurationConflictSummary parameters: - 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: deviceConfigurationConflictSummary-id in: path description: The unique identifier of deviceConfigurationConflictSummary required: true schema: type: string x-ms-docs-key-type: deviceConfigurationConflictSummary /deviceManagement/deviceConfigurationConflictSummary/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceConfigurationConflictSummary summary: Get the number of the resource operationId: deviceManagement.deviceConfigurationConflictSummary.GetCount-0866 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' /deviceManagement/deviceConfigurationDeviceStateSummaries: description: Provides operations to manage the deviceConfigurationDeviceStateSummaries property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceConfigurationDeviceStateSummary summary: Get deviceConfigurationDeviceStateSummaries from deviceManagement description: The device configuration device state summary for this account. operationId: deviceManagement.GetDeviceConfigurationDeviceStateSummaries parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationDeviceStateSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceConfigurationDeviceStateSummary summary: Update the navigation property deviceConfigurationDeviceStateSummaries in deviceManagement operationId: deviceManagement.UpdateDeviceConfigurationDeviceStateSummaries requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationDeviceStateSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationDeviceStateSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceConfigurationDeviceStateSummary summary: Delete navigation property deviceConfigurationDeviceStateSummaries for deviceManagement operationId: deviceManagement.DeleteDeviceConfigurationDeviceStateSummaries parameters: - 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 /deviceManagement/deviceConfigurationRestrictedAppsViolations: description: Provides operations to manage the deviceConfigurationRestrictedAppsViolations property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.restrictedAppsViolation summary: Get deviceConfigurationRestrictedAppsViolations from deviceManagement description: Restricted apps violations for this account. operationId: deviceManagement.ListDeviceConfigurationRestrictedAppsViolations 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.restrictedAppsViolationCollectionResponse' 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: - deviceManagement.restrictedAppsViolation summary: Create new navigation property to deviceConfigurationRestrictedAppsViolations for deviceManagement operationId: deviceManagement.CreateDeviceConfigurationRestrictedAppsViolations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.restrictedAppsViolation' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.restrictedAppsViolation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/deviceConfigurationRestrictedAppsViolations/{restrictedAppsViolation-id}': description: Provides operations to manage the deviceConfigurationRestrictedAppsViolations property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.restrictedAppsViolation summary: Get deviceConfigurationRestrictedAppsViolations from deviceManagement description: Restricted apps violations for this account. operationId: deviceManagement.GetDeviceConfigurationRestrictedAppsViolations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.restrictedAppsViolation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.restrictedAppsViolation summary: Update the navigation property deviceConfigurationRestrictedAppsViolations in deviceManagement operationId: deviceManagement.UpdateDeviceConfigurationRestrictedAppsViolations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.restrictedAppsViolation' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.restrictedAppsViolation' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.restrictedAppsViolation summary: Delete navigation property deviceConfigurationRestrictedAppsViolations for deviceManagement operationId: deviceManagement.DeleteDeviceConfigurationRestrictedAppsViolations parameters: - 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: restrictedAppsViolation-id in: path description: The unique identifier of restrictedAppsViolation required: true schema: type: string x-ms-docs-key-type: restrictedAppsViolation /deviceManagement/deviceConfigurationRestrictedAppsViolations/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.restrictedAppsViolation summary: Get the number of the resource operationId: deviceManagement.deviceConfigurationRestrictedAppsViolations.GetCount-12ee 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' /deviceManagement/deviceConfigurations: description: Provides operations to manage the deviceConfigurations property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceConfiguration summary: Get deviceConfigurations from deviceManagement description: The device configurations. operationId: deviceManagement.ListDeviceConfigurations 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.deviceConfigurationCollectionResponse' 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: - deviceManagement.deviceConfiguration summary: Create new navigation property to deviceConfigurations for deviceManagement operationId: deviceManagement.CreateDeviceConfigurations requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfiguration' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}': description: Provides operations to manage the deviceConfigurations property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceConfiguration summary: Get deviceConfigurations from deviceManagement description: The device configurations. operationId: deviceManagement.GetDeviceConfigurations parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property deviceConfigurations in deviceManagement operationId: deviceManagement.UpdateDeviceConfigurations requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfiguration' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property deviceConfigurations for deviceManagement operationId: deviceManagement.DeleteDeviceConfigurations parameters: - 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: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.deviceConfiguration entity. get: tags: - deviceManagement.deviceConfiguration summary: Get assignments from deviceManagement description: The list of assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations.ListAssignments 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.deviceConfigurationAssignmentCollectionResponse' 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: - deviceManagement.deviceConfiguration summary: Create new navigation property to assignments for deviceManagement operationId: deviceManagement.deviceConfigurations.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.deviceConfiguration entity. get: tags: - deviceManagement.deviceConfiguration summary: Get assignments from deviceManagement description: The list of assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property assignments in deviceManagement operationId: deviceManagement.deviceConfigurations.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property assignments for deviceManagement operationId: deviceManagement.deviceConfigurations.DeleteAssignments parameters: - 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: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration - name: deviceConfigurationAssignment-id in: path description: The unique identifier of deviceConfigurationAssignment required: true schema: type: string x-ms-docs-key-type: deviceConfigurationAssignment '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceConfiguration summary: Get the number of the resource operationId: deviceManagement.deviceConfigurations.assignments.GetCount-170b 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: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries': description: Provides operations to manage the deviceSettingStateSummaries property of the microsoft.graph.deviceConfiguration entity. get: tags: - deviceManagement.deviceConfiguration summary: Get deviceSettingStateSummaries from deviceManagement description: Device Configuration Setting State Device Summary operationId: deviceManagement.deviceConfigurations.ListDeviceSettingStateSummaries 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.settingStateDeviceSummaryCollectionResponse' 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: - deviceManagement.deviceConfiguration summary: Create new navigation property to deviceSettingStateSummaries for deviceManagement operationId: deviceManagement.deviceConfigurations.CreateDeviceSettingStateSummaries requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.settingStateDeviceSummary' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.settingStateDeviceSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}': description: Provides operations to manage the deviceSettingStateSummaries property of the microsoft.graph.deviceConfiguration entity. get: tags: - deviceManagement.deviceConfiguration summary: Get deviceSettingStateSummaries from deviceManagement description: Device Configuration Setting State Device Summary operationId: deviceManagement.deviceConfigurations.GetDeviceSettingStateSummaries parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.settingStateDeviceSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property deviceSettingStateSummaries in deviceManagement operationId: deviceManagement.deviceConfigurations.UpdateDeviceSettingStateSummaries requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.settingStateDeviceSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.settingStateDeviceSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property deviceSettingStateSummaries for deviceManagement operationId: deviceManagement.deviceConfigurations.DeleteDeviceSettingStateSummaries parameters: - 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: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration - name: settingStateDeviceSummary-id in: path description: The unique identifier of settingStateDeviceSummary required: true schema: type: string x-ms-docs-key-type: settingStateDeviceSummary '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceConfiguration summary: Get the number of the resource operationId: deviceManagement.deviceConfigurations.deviceSettingStateSummaries.GetCount-921c 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: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses': description: Provides operations to manage the deviceStatuses property of the microsoft.graph.deviceConfiguration entity. get: tags: - deviceManagement.deviceConfiguration summary: Get deviceStatuses from deviceManagement description: Device configuration installation status by device. operationId: deviceManagement.deviceConfigurations.ListDeviceStatuses 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.deviceConfigurationDeviceStatusCollectionResponse' 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: - deviceManagement.deviceConfiguration summary: Create new navigation property to deviceStatuses for deviceManagement operationId: deviceManagement.deviceConfigurations.CreateDeviceStatuses requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationDeviceStatus' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationDeviceStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}': description: Provides operations to manage the deviceStatuses property of the microsoft.graph.deviceConfiguration entity. get: tags: - deviceManagement.deviceConfiguration summary: Get deviceStatuses from deviceManagement description: Device configuration installation status by device. operationId: deviceManagement.deviceConfigurations.GetDeviceStatuses parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationDeviceStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property deviceStatuses in deviceManagement operationId: deviceManagement.deviceConfigurations.UpdateDeviceStatuses requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationDeviceStatus' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationDeviceStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property deviceStatuses for deviceManagement operationId: deviceManagement.deviceConfigurations.DeleteDeviceStatuses parameters: - 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: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration - name: deviceConfigurationDeviceStatus-id in: path description: The unique identifier of deviceConfigurationDeviceStatus required: true schema: type: string x-ms-docs-key-type: deviceConfigurationDeviceStatus '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceConfiguration summary: Get the number of the resource operationId: deviceManagement.deviceConfigurations.deviceStatuses.GetCount-ce20 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: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview': description: Provides operations to manage the deviceStatusOverview property of the microsoft.graph.deviceConfiguration entity. get: tags: - deviceManagement.deviceConfiguration summary: Get deviceStatusOverview from deviceManagement description: Device Configuration devices status overview operationId: deviceManagement.deviceConfigurations.GetDeviceStatusOverview parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationDeviceOverview' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property deviceStatusOverview in deviceManagement operationId: deviceManagement.deviceConfigurations.UpdateDeviceStatusOverview requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationDeviceOverview' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationDeviceOverview' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property deviceStatusOverview for deviceManagement operationId: deviceManagement.deviceConfigurations.DeleteDeviceStatusOverview parameters: - 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: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments': description: Provides operations to manage the groupAssignments property of the microsoft.graph.deviceConfiguration entity. get: tags: - deviceManagement.deviceConfiguration summary: Get groupAssignments from deviceManagement description: The list of group assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations.ListGroupAssignments 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.deviceConfigurationGroupAssignmentCollectionResponse' 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: - deviceManagement.deviceConfiguration summary: Create new navigation property to groupAssignments for deviceManagement operationId: deviceManagement.deviceConfigurations.CreateGroupAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationGroupAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationGroupAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}': description: Provides operations to manage the groupAssignments property of the microsoft.graph.deviceConfiguration entity. get: tags: - deviceManagement.deviceConfiguration summary: Get groupAssignments from deviceManagement description: The list of group assignments for the device configuration profile. operationId: deviceManagement.deviceConfigurations.GetGroupAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationGroupAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property groupAssignments in deviceManagement operationId: deviceManagement.deviceConfigurations.UpdateGroupAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationGroupAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationGroupAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property groupAssignments for deviceManagement operationId: deviceManagement.deviceConfigurations.DeleteGroupAssignments parameters: - 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: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration - name: deviceConfigurationGroupAssignment-id in: path description: The unique identifier of deviceConfigurationGroupAssignment required: true schema: type: string x-ms-docs-key-type: deviceConfigurationGroupAssignment '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration': description: Provides operations to manage the deviceConfiguration property of the microsoft.graph.deviceConfigurationGroupAssignment entity. get: tags: - deviceManagement.deviceConfiguration summary: Get deviceConfiguration from deviceManagement description: The navigation link to the Device Configuration being targeted. operationId: deviceManagement.deviceConfigurations.groupAssignments.GetDeviceConfiguration parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfiguration' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration - name: deviceConfigurationGroupAssignment-id in: path description: The unique identifier of deviceConfigurationGroupAssignment required: true schema: type: string x-ms-docs-key-type: deviceConfigurationGroupAssignment '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceConfiguration summary: Get the number of the resource operationId: deviceManagement.deviceConfigurations.groupAssignments.GetCount-3308 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: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assign': description: Provides operations to call the assign method. post: tags: - deviceManagement.deviceConfiguration summary: Invoke action assign operationId: deviceManagement.deviceConfigurations.deviceConfiguration.assign requestBody: description: Action parameters content: application/json: schema: type: object properties: deviceConfigurationGroupAssignments: type: array items: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationGroupAssignment' assignments: type: array items: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationAssignment' required: true responses: 2XX: description: Success content: application/json: schema: title: Collection of deviceConfigurationAssignment type: object allOf: - $ref: '#/components/schemas/BaseCollectionPaginationCountResponse' - type: object properties: value: type: array items: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationAssignment' 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: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration x-ms-docs-grouped-path: - '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assign' - '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assign' - '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assign' - '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/assign' - '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/assign' - '/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assign' - '/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assign' - '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assign' - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assign' - '/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assign' - '/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assign' - '/deviceManagement/hardwareConfigurations/{hardwareConfiguration-id}/assign' - '/deviceManagement/intents/{deviceManagementIntent-id}/assign' - '/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assign' - '/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assign' - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/assign' - '/deviceManagement/roleScopeTags/{roleScopeTag-id}/assign' - '/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assign' - '/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assign' - '/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assign' - '/deviceManagement/windowsDriverUpdateProfiles/{windowsDriverUpdateProfile-id}/assign' - '/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assign' - '/deviceManagement/windowsQualityUpdatePolicies/{windowsQualityUpdatePolicy-id}/assign' - '/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assign' '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignedAccessMultiModeProfiles': description: Provides operations to call the assignedAccessMultiModeProfiles method. post: tags: - deviceManagement.deviceConfiguration summary: Invoke action assignedAccessMultiModeProfiles operationId: deviceManagement.deviceConfigurations.deviceConfiguration.assignedAccessMultiModeProfiles requestBody: description: Action parameters content: application/json: schema: type: object properties: assignedAccessMultiModeProfiles: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsAssignedAccessProfile' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/getOmaSettingPlainTextValue(secretReferenceValueId=''{secretReferenceValueId}'')': description: Provides operations to call the getOmaSettingPlainTextValue method. get: tags: - deviceManagement.deviceConfiguration summary: Invoke function getOmaSettingPlainTextValue operationId: deviceManagement.deviceConfigurations.deviceConfiguration.getOmaSettingPlainTextValue responses: 2XX: description: Success content: application/json: schema: type: object properties: value: type: string nullable: true 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function parameters: - name: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration - name: secretReferenceValueId in: path description: 'Usage: secretReferenceValueId=''{secretReferenceValueId}''' required: true schema: type: string nullable: true '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/windowsPrivacyAccessControls': description: Provides operations to call the windowsPrivacyAccessControls method. post: tags: - deviceManagement.deviceConfiguration summary: Invoke action windowsPrivacyAccessControls operationId: deviceManagement.deviceConfigurations.deviceConfiguration.windowsPrivacyAccessControls requestBody: description: Action parameters content: application/json: schema: type: object properties: windowsPrivacyAccessControls: type: array items: $ref: '#/components/schemas/microsoft.graph.windowsPrivacyDataAccessControlItem' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses': description: Provides operations to manage the userStatuses property of the microsoft.graph.deviceConfiguration entity. get: tags: - deviceManagement.deviceConfiguration summary: Get userStatuses from deviceManagement description: Device configuration installation status by user. operationId: deviceManagement.deviceConfigurations.ListUserStatuses 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.deviceConfigurationUserStatusCollectionResponse' 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: - deviceManagement.deviceConfiguration summary: Create new navigation property to userStatuses for deviceManagement operationId: deviceManagement.deviceConfigurations.CreateUserStatuses requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationUserStatus' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationUserStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}': description: Provides operations to manage the userStatuses property of the microsoft.graph.deviceConfiguration entity. get: tags: - deviceManagement.deviceConfiguration summary: Get userStatuses from deviceManagement description: Device configuration installation status by user. operationId: deviceManagement.deviceConfigurations.GetUserStatuses parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationUserStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property userStatuses in deviceManagement operationId: deviceManagement.deviceConfigurations.UpdateUserStatuses requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationUserStatus' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationUserStatus' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property userStatuses for deviceManagement operationId: deviceManagement.deviceConfigurations.DeleteUserStatuses parameters: - 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: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration - name: deviceConfigurationUserStatus-id in: path description: The unique identifier of deviceConfigurationUserStatus required: true schema: type: string x-ms-docs-key-type: deviceConfigurationUserStatus '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceConfiguration summary: Get the number of the resource operationId: deviceManagement.deviceConfigurations.userStatuses.GetCount-a3f6 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: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview': description: Provides operations to manage the userStatusOverview property of the microsoft.graph.deviceConfiguration entity. get: tags: - deviceManagement.deviceConfiguration summary: Get userStatusOverview from deviceManagement description: Device Configuration users status overview operationId: deviceManagement.deviceConfigurations.GetUserStatusOverview parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationUserOverview' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceConfiguration summary: Update the navigation property userStatusOverview in deviceManagement operationId: deviceManagement.deviceConfigurations.UpdateUserStatusOverview requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationUserOverview' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationUserOverview' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceConfiguration summary: Delete navigation property userStatusOverview for deviceManagement operationId: deviceManagement.deviceConfigurations.DeleteUserStatusOverview parameters: - 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: deviceConfiguration-id in: path description: The unique identifier of deviceConfiguration required: true schema: type: string x-ms-docs-key-type: deviceConfiguration /deviceManagement/deviceConfigurations/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceConfiguration summary: Get the number of the resource operationId: deviceManagement.deviceConfigurations.GetCount-2013 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' /deviceManagement/deviceConfigurations/getIosAvailableUpdateVersions(): description: Provides operations to call the getIosAvailableUpdateVersions method. get: tags: - deviceManagement.deviceConfiguration summary: Invoke function getIosAvailableUpdateVersions operationId: deviceManagement.deviceConfigurations.getIosAvailableUpdateVersions 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.iosAvailableUpdateVersion' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: function x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceManagement/deviceConfigurations/getTargetedUsersAndDevices: description: Provides operations to call the getTargetedUsersAndDevices method. post: tags: - deviceManagement.deviceConfiguration summary: Invoke action getTargetedUsersAndDevices operationId: deviceManagement.deviceConfigurations.getTargetedUsersAndDevices requestBody: description: Action parameters content: application/json: schema: type: object properties: deviceConfigurationIds: type: array items: type: string 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.deviceConfigurationTargetedUserAndDevice' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore /deviceManagement/deviceConfigurations/hasPayloadLinks: description: Provides operations to call the hasPayloadLinks method. post: tags: - deviceManagement.deviceConfiguration summary: Invoke action hasPayloadLinks operationId: deviceManagement.deviceConfigurations.hasPayloadLinks requestBody: description: Action parameters content: application/json: schema: type: object properties: payloadIds: type: array items: type: string 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.hasPayloadLinkResultItem' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action x-ms-pageable: nextLinkName: '@odata.nextLink' operationName: listMore x-ms-docs-grouped-path: - /deviceManagement/deviceCompliancePolicies/hasPayloadLinks - /deviceManagement/deviceEnrollmentConfigurations/hasPayloadLinks - /deviceManagement/deviceManagementScripts/hasPayloadLinks - /deviceManagement/windowsAutopilotDeploymentProfiles/hasPayloadLinks /deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates: description: Provides operations to manage the deviceConfigurationsAllManagedDeviceCertificateStates property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.managedAllDeviceCertificateState summary: Get deviceConfigurationsAllManagedDeviceCertificateStates from deviceManagement description: Summary of all certificates for all devices. operationId: deviceManagement.ListDeviceConfigurationsAllManagedDeviceCertificateStates 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.managedAllDeviceCertificateStateCollectionResponse' 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: - deviceManagement.managedAllDeviceCertificateState summary: Create new navigation property to deviceConfigurationsAllManagedDeviceCertificateStates for deviceManagement operationId: deviceManagement.CreateDeviceConfigurationsAllManagedDeviceCertificateStates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAllDeviceCertificateState' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAllDeviceCertificateState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates/{managedAllDeviceCertificateState-id}': description: Provides operations to manage the deviceConfigurationsAllManagedDeviceCertificateStates property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.managedAllDeviceCertificateState summary: Get deviceConfigurationsAllManagedDeviceCertificateStates from deviceManagement description: Summary of all certificates for all devices. operationId: deviceManagement.GetDeviceConfigurationsAllManagedDeviceCertificateStates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAllDeviceCertificateState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.managedAllDeviceCertificateState summary: Update the navigation property deviceConfigurationsAllManagedDeviceCertificateStates in deviceManagement operationId: deviceManagement.UpdateDeviceConfigurationsAllManagedDeviceCertificateStates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAllDeviceCertificateState' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedAllDeviceCertificateState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.managedAllDeviceCertificateState summary: Delete navigation property deviceConfigurationsAllManagedDeviceCertificateStates for deviceManagement operationId: deviceManagement.DeleteDeviceConfigurationsAllManagedDeviceCertificateStates parameters: - 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: managedAllDeviceCertificateState-id in: path description: The unique identifier of managedAllDeviceCertificateState required: true schema: type: string x-ms-docs-key-type: managedAllDeviceCertificateState /deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.managedAllDeviceCertificateState summary: Get the number of the resource operationId: deviceManagement.deviceConfigurationsAllManagedDeviceCertificateStates.GetCount-b39c 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' /deviceManagement/deviceConfigurationUserStateSummaries: description: Provides operations to manage the deviceConfigurationUserStateSummaries property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceConfigurationUserStateSummary summary: Get deviceConfigurationUserStateSummaries from deviceManagement description: The device configuration user state summary for this account. operationId: deviceManagement.GetDeviceConfigurationUserStateSummaries parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationUserStateSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceConfigurationUserStateSummary summary: Update the navigation property deviceConfigurationUserStateSummaries in deviceManagement operationId: deviceManagement.UpdateDeviceConfigurationUserStateSummaries requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationUserStateSummary' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceConfigurationUserStateSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceConfigurationUserStateSummary summary: Delete navigation property deviceConfigurationUserStateSummaries for deviceManagement operationId: deviceManagement.DeleteDeviceConfigurationUserStateSummaries parameters: - 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 /deviceManagement/deviceCustomAttributeShellScripts: description: Provides operations to manage the deviceCustomAttributeShellScripts property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get deviceCustomAttributeShellScripts from deviceManagement description: The list of device custom attribute shell scripts associated with the tenant. operationId: deviceManagement.ListDeviceCustomAttributeShellScripts 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.deviceCustomAttributeShellScriptCollectionResponse' 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: - deviceManagement.deviceCustomAttributeShellScript summary: Create new navigation property to deviceCustomAttributeShellScripts for deviceManagement operationId: deviceManagement.CreateDeviceCustomAttributeShellScripts requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCustomAttributeShellScript' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCustomAttributeShellScript' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}': description: Provides operations to manage the deviceCustomAttributeShellScripts property of the microsoft.graph.deviceManagement entity. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get deviceCustomAttributeShellScripts from deviceManagement description: The list of device custom attribute shell scripts associated with the tenant. operationId: deviceManagement.GetDeviceCustomAttributeShellScripts parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCustomAttributeShellScript' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Update the navigation property deviceCustomAttributeShellScripts in deviceManagement operationId: deviceManagement.UpdateDeviceCustomAttributeShellScripts requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCustomAttributeShellScript' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceCustomAttributeShellScript' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Delete navigation property deviceCustomAttributeShellScripts for deviceManagement operationId: deviceManagement.DeleteDeviceCustomAttributeShellScripts parameters: - 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: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/assignments': description: Provides operations to manage the assignments property of the microsoft.graph.deviceCustomAttributeShellScript entity. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get assignments from deviceManagement description: The list of group assignments for the device management script. operationId: deviceManagement.deviceCustomAttributeShellScripts.ListAssignments 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.deviceManagementScriptAssignmentCollectionResponse' 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: - deviceManagement.deviceCustomAttributeShellScript summary: Create new navigation property to assignments for deviceManagement operationId: deviceManagement.deviceCustomAttributeShellScripts.CreateAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/assignments/{deviceManagementScriptAssignment-id}': description: Provides operations to manage the assignments property of the microsoft.graph.deviceCustomAttributeShellScript entity. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get assignments from deviceManagement description: The list of group assignments for the device management script. operationId: deviceManagement.deviceCustomAttributeShellScripts.GetAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Update the navigation property assignments in deviceManagement operationId: deviceManagement.deviceCustomAttributeShellScripts.UpdateAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Delete navigation property assignments for deviceManagement operationId: deviceManagement.deviceCustomAttributeShellScripts.DeleteAssignments parameters: - 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: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript - name: deviceManagementScriptAssignment-id in: path description: The unique identifier of deviceManagementScriptAssignment required: true schema: type: string x-ms-docs-key-type: deviceManagementScriptAssignment '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/assignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get the number of the resource operationId: deviceManagement.deviceCustomAttributeShellScripts.assignments.GetCount-12bc 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: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates': description: Provides operations to manage the deviceRunStates property of the microsoft.graph.deviceCustomAttributeShellScript entity. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get deviceRunStates from deviceManagement description: List of run states for this script across all devices. operationId: deviceManagement.deviceCustomAttributeShellScripts.ListDeviceRunStates 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.deviceManagementScriptDeviceStateCollectionResponse' 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: - deviceManagement.deviceCustomAttributeShellScript summary: Create new navigation property to deviceRunStates for deviceManagement operationId: deviceManagement.deviceCustomAttributeShellScripts.CreateDeviceRunStates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptDeviceState' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptDeviceState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}': description: Provides operations to manage the deviceRunStates property of the microsoft.graph.deviceCustomAttributeShellScript entity. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get deviceRunStates from deviceManagement description: List of run states for this script across all devices. operationId: deviceManagement.deviceCustomAttributeShellScripts.GetDeviceRunStates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptDeviceState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Update the navigation property deviceRunStates in deviceManagement operationId: deviceManagement.deviceCustomAttributeShellScripts.UpdateDeviceRunStates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptDeviceState' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptDeviceState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Delete navigation property deviceRunStates for deviceManagement operationId: deviceManagement.deviceCustomAttributeShellScripts.DeleteDeviceRunStates parameters: - 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: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript - name: deviceManagementScriptDeviceState-id in: path description: The unique identifier of deviceManagementScriptDeviceState required: true schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice': description: Provides operations to manage the managedDevice property of the microsoft.graph.deviceManagementScriptDeviceState entity. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get managedDevice from deviceManagement description: The managed devices that executes the device management script. operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.GetManagedDevice parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDevice' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript - name: deviceManagementScriptDeviceState-id in: path description: The unique identifier of deviceManagementScriptDeviceState required: true schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState x-ms-docs-grouped-path: - '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice' - '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice' - '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice' - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice' - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice' '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get the number of the resource operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceRunStates.GetCount-e8a8 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: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/groupAssignments': description: Provides operations to manage the groupAssignments property of the microsoft.graph.deviceCustomAttributeShellScript entity. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get groupAssignments from deviceManagement description: The list of group assignments for the device management script. operationId: deviceManagement.deviceCustomAttributeShellScripts.ListGroupAssignments 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.deviceManagementScriptGroupAssignmentCollectionResponse' 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: - deviceManagement.deviceCustomAttributeShellScript summary: Create new navigation property to groupAssignments for deviceManagement operationId: deviceManagement.deviceCustomAttributeShellScripts.CreateGroupAssignments requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptGroupAssignment' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptGroupAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}': description: Provides operations to manage the groupAssignments property of the microsoft.graph.deviceCustomAttributeShellScript entity. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get groupAssignments from deviceManagement description: The list of group assignments for the device management script. operationId: deviceManagement.deviceCustomAttributeShellScripts.GetGroupAssignments parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptGroupAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Update the navigation property groupAssignments in deviceManagement operationId: deviceManagement.deviceCustomAttributeShellScripts.UpdateGroupAssignments requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptGroupAssignment' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptGroupAssignment' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Delete navigation property groupAssignments for deviceManagement operationId: deviceManagement.deviceCustomAttributeShellScripts.DeleteGroupAssignments parameters: - 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: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript - name: deviceManagementScriptGroupAssignment-id in: path description: The unique identifier of deviceManagementScriptGroupAssignment required: true schema: type: string x-ms-docs-key-type: deviceManagementScriptGroupAssignment '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/groupAssignments/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get the number of the resource operationId: deviceManagement.deviceCustomAttributeShellScripts.groupAssignments.GetCount-cb68 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: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/assign': description: Provides operations to call the assign method. post: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Invoke action assign operationId: deviceManagement.deviceCustomAttributeShellScripts.deviceCustomAttributeShellScript.assign requestBody: description: Action parameters content: application/json: schema: type: object properties: deviceManagementScriptGroupAssignments: type: array items: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptGroupAssignment' deviceManagementScriptAssignments: type: array items: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptAssignment' required: true responses: '204': description: Success 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: action parameters: - name: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript x-ms-docs-grouped-path: - '/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assign' - '/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assign' - '/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assign' - '/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/assign' - '/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assign' - '/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assign' - '/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assign' - '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assign' - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assign' - '/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assign' - '/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assign' - '/deviceManagement/hardwareConfigurations/{hardwareConfiguration-id}/assign' - '/deviceManagement/intents/{deviceManagementIntent-id}/assign' - '/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assign' - '/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assign' - '/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/assign' - '/deviceManagement/roleScopeTags/{roleScopeTag-id}/assign' - '/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assign' - '/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assign' - '/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assign' - '/deviceManagement/windowsDriverUpdateProfiles/{windowsDriverUpdateProfile-id}/assign' - '/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assign' - '/deviceManagement/windowsQualityUpdatePolicies/{windowsQualityUpdatePolicy-id}/assign' - '/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assign' '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/runSummary': description: Provides operations to manage the runSummary property of the microsoft.graph.deviceCustomAttributeShellScript entity. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get runSummary from deviceManagement description: Run summary for device management script. operationId: deviceManagement.deviceCustomAttributeShellScripts.GetRunSummary parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptRunSummary' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates': description: Provides operations to manage the userRunStates property of the microsoft.graph.deviceCustomAttributeShellScript entity. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get userRunStates from deviceManagement description: List of run states for this script across all users. operationId: deviceManagement.deviceCustomAttributeShellScripts.ListUserRunStates 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.deviceManagementScriptUserStateCollectionResponse' 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: - deviceManagement.deviceCustomAttributeShellScript summary: Create new navigation property to userRunStates for deviceManagement operationId: deviceManagement.deviceCustomAttributeShellScripts.CreateUserRunStates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptUserState' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptUserState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}': description: Provides operations to manage the userRunStates property of the microsoft.graph.deviceCustomAttributeShellScript entity. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get userRunStates from deviceManagement description: List of run states for this script across all users. operationId: deviceManagement.deviceCustomAttributeShellScripts.GetUserRunStates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptUserState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Update the navigation property userRunStates in deviceManagement operationId: deviceManagement.deviceCustomAttributeShellScripts.UpdateUserRunStates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptUserState' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptUserState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Delete navigation property userRunStates for deviceManagement operationId: deviceManagement.deviceCustomAttributeShellScripts.DeleteUserRunStates parameters: - 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: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript - name: deviceManagementScriptUserState-id in: path description: The unique identifier of deviceManagementScriptUserState required: true schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates': description: Provides operations to manage the deviceRunStates property of the microsoft.graph.deviceManagementScriptUserState entity. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get deviceRunStates from deviceManagement description: List of run states for this script across all devices of specific user. operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.ListDeviceRunStates 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.deviceManagementScriptDeviceStateCollectionResponse' 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: - deviceManagement.deviceCustomAttributeShellScript summary: Create new navigation property to deviceRunStates for deviceManagement operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.CreateDeviceRunStates requestBody: description: New navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptDeviceState' required: true responses: 2XX: description: Created navigation property. content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptDeviceState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript - name: deviceManagementScriptUserState-id in: path description: The unique identifier of deviceManagementScriptUserState required: true schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState x-ms-docs-grouped-path: - '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates' - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates' '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}': description: Provides operations to manage the deviceRunStates property of the microsoft.graph.deviceManagementScriptUserState entity. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get deviceRunStates from deviceManagement description: List of run states for this script across all devices of specific user. operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.GetDeviceRunStates parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptDeviceState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation patch: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Update the navigation property deviceRunStates in deviceManagement operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.UpdateDeviceRunStates requestBody: description: New navigation property values content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptDeviceState' required: true responses: 2XX: description: Success content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.deviceManagementScriptDeviceState' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation delete: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Delete navigation property deviceRunStates for deviceManagement operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.DeleteDeviceRunStates parameters: - 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: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript - name: deviceManagementScriptUserState-id in: path description: The unique identifier of deviceManagementScriptUserState required: true schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState - name: deviceManagementScriptDeviceState-id in: path description: The unique identifier of deviceManagementScriptDeviceState required: true schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState x-ms-docs-grouped-path: - '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}' - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}' '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice': description: Provides operations to manage the managedDevice property of the microsoft.graph.deviceManagementScriptDeviceState entity. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get managedDevice from deviceManagement description: The managed devices that executes the device management script. operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.GetManagedDevice parameters: - name: $select in: query description: Select properties to be returned style: form explode: false schema: uniqueItems: true type: array items: type: string - name: $expand in: query description: Expand related entities style: form explode: false schema: uniqueItems: true type: array items: type: string responses: 2XX: description: Retrieved navigation property content: application/json: schema: $ref: '#/components/schemas/microsoft.graph.managedDevice' 4XX: $ref: '#/components/responses/error' 5XX: $ref: '#/components/responses/error' x-ms-docs-operation-type: operation parameters: - name: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript - name: deviceManagementScriptUserState-id in: path description: The unique identifier of deviceManagementScriptUserState required: true schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState - name: deviceManagementScriptDeviceState-id in: path description: The unique identifier of deviceManagementScriptDeviceState required: true schema: type: string x-ms-docs-key-type: deviceManagementScriptDeviceState x-ms-docs-grouped-path: - '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice' - '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice' - '/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice' - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice' - '/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice' '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get the number of the resource operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.deviceRunStates.GetCount-65aa 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: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript - name: deviceManagementScriptUserState-id in: path description: The unique identifier of deviceManagementScriptUserState required: true schema: type: string x-ms-docs-key-type: deviceManagementScriptUserState '/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/userRunStates/$count': description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get the number of the resource operationId: deviceManagement.deviceCustomAttributeShellScripts.userRunStates.GetCount-a741 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: deviceCustomAttributeShellScript-id in: path description: The unique identifier of deviceCustomAttributeShellScript required: true schema: type: string x-ms-docs-key-type: deviceCustomAttributeShellScript /deviceManagement/deviceCustomAttributeShellScripts/$count: description: Provides operations to count the resources in the collection. get: tags: - deviceManagement.deviceCustomAttributeShellScript summary: Get the number of the resource operationId: deviceManagement.deviceCustomAttributeShellScripts.GetCount-3c12 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' /deviceManagement/deviceEnrollmentConfigurations: description: Provides operations to manage the deviceEnrollmentConfigurations property of the microsoft.graph.